/* 
 * Standard Valuers International (K) Limited - Official Brand Colors
 * Professional property valuation website
 * Built with Bootstrap 5
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== CSS VARIABLES - BRAND COLORS ===== */
:root {
  /* Brand Colors from Logo */
  --brand-blue: #1e40af;
  --brand-blue-light: #3b82f6;
  --brand-blue-dark: #1e3a8a;
  --brand-green: #16a34a;
  --brand-green-light: #22c55e;
  --brand-green-dark: #15803d;
  --brand-red: #dc2626;
  --brand-red-light: #ef4444;
  --brand-red-dark: #b91c1c;

  /* Primary Colors - Using Brand Blue */
  --primary-color: var(--brand-blue);
  --primary-light: var(--brand-blue-light);
  --primary-dark: var(--brand-blue-dark);
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-500: var(--brand-blue);
  --primary-600: var(--brand-blue-dark);
  --primary-700: #1e3a8a;

  /* Secondary Colors - Using Brand Green */
  --secondary-color: var(--brand-green);
  --secondary-light: var(--brand-green-light);
  --secondary-dark: var(--brand-green-dark);

  /* Accent Color - Using Brand Red */
  --accent-color: var(--brand-red);
  --accent-light: var(--brand-red-light);
  --accent-dark: var(--brand-red-dark);

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Status Colors */
  --success-color: var(--brand-green);
  --warning-color: #f59e0b;
  --danger-color: var(--brand-red);
  --info-color: var(--brand-blue);

  /* Typography */
  --font-family-primary: "Merriweather", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-secondary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-secondary);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  font-weight: var(--font-weight-normal);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--gray-900);
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-extrabold);
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  font-weight: var(--font-weight-normal);
  color: var(--gray-600);
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.btn {
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease-in-out;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #80ad48;
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  transform: translateY(-1px);
}

.btn-light {
  background-color: white;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-light:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-300);
  color: var(--gray-800);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Text Colors */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.text-muted {
  color: var(--gray-500) !important;
}

/* Background Colors */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--gray-50) !important;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

/* ===== NAVIGATION ===== *//* Enhanced Navbar Styles */
:root {
  --nav-height: 70px;
  --nav-bg: var(--nav-bg)
}

.navbar {
  height: var(--nav-height);
  padding: 0;
  background-color: var(--nav-bg) !important;
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, height 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-family-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color) !important;
  letter-spacing: 1px;
}

.navbar-logo {
  height: 45px;
  margin-right: 0.5rem;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(50%);
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-item {
  margin: 0 0.25rem;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.75rem 1rem !important;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white) !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 1px;
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Replace default Bootstrap caret with custom arrows */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  content: "\25BC"; /* ▼ */
  font-size: 0.6em;
  transition: transform 0.3s ease;
  background-image: none !important;
}

/* Rotate arrow (or switch to ▲) when dropdown is open */
.nav-item.dropdown.show .dropdown-toggle::after {
  content: "\25B2"; /* ▲ */
}


.dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  transition: opacity 0.3s ease;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--gray-600);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--primary-50);
  color: var(--primary-color);
}

.btn-primary {
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .navbar {
    height: auto;
    padding: 0.5rem 0;
  }
  .navbar-nav .nav-link {
    text-transform: none;
    letter-spacing: normal;
  }
  .btn-primary {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}


/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 90vh;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  color: #fff;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-extrabold);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content .btn-primary {
  background-color: #ed2329;
  border: none;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

.hero-arrow-left {
  left: 1rem;
}

.hero-arrow-right {
  right: 1rem;
}


/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: white;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-img-top {
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SERVICE CARDS ===== */
.services-section {
  background: #1e40af;
}
.section-header h2 {
  position: relative;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  text-shadow: 0 0 #fff;
}
.section-header h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--gray-100);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-200);
}
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-50);
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon {
  background: #ed2329;
  transform: scale(1.1);
}
.service-icon i {
  font-size: 2rem;
  color: #ed2329;
  transition: color 0.3s;
}
.service-card:hover .service-icon i {
  color: #fff;
}
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.service-link:hover {
  border-color: var(--primary-color);
}

/* ===== PROPERTY CARDS ===== */.property-section .section-header .subtitle {
  font-size: 1rem;
  opacity: 0.75;
}

.nav-pills .nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: background 0.3s;
}

.nav-pills .nav-link.active {
  background: #ed2329;
  color: #fff;
}

.property-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.property-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.property-card:hover .property-image {
  transform: scale(1.1);
}

.property-badges .badge {
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.property-content {
  padding: 1.25rem;
}

.property-price {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.property-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.property-location {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.property-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-item {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.property-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.property-card:hover .property-actions {
  opacity: 1;
}

.agent-info img {
  object-fit: cover;
}

.tab-pane.fade .property-card {
  opacity: 0;
  transform: translateY(20px);
}

.tab-pane.show .property-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s, transform 0.6s;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1rem;
  font-weight: var(--font-weight-medium);
  transition: all 0.2s ease;
  font-family: var(--font-family-secondary);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
  outline: none;
}

.form-label {
  font-weight: var(--font-weight-semibold);
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-family: var(--font-family-secondary);
}

/* ===== SEARCH FILTERS ===== */
.search-filters {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 2rem;
}

/* ===== STATISTICS ===== */
.choose-us-section {
  background: #f8f9fa;
}

.choose-us-section .section-title {
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
}

.choose-us-section .section-lead {
  color: var(--gray-600);
}

.stat-card {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.stat-icon {
  font-size: 2rem;
  color: #ed2329;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ===== TEAM MEMBERS ===== */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  border: 4px solid var(--gray-100);
}

.team-member:hover img {
  transform: scale(1.05);
  border-color: var(--primary-200);
}

.team-member h5 {
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.team-member .text-primary {
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #f8f9fa;
}
.testimonials-section .section-header h2 {
  position: relative;
  color: var(--primary-color);
  font-weight: var(--font-weight-extrabold);
}
.testimonials-section .section-header h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-radius: 2px;
}
.testimonials-section .subtitle {
  font-size: 1rem;
  opacity: 0.75;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}
.testimonial-info h6 {
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
}
.testimonial-info small {
  color: var(--gray-500);
  font-size: 0.875rem;
}


/* ===== FOOTER ===== */
/* Footer Improvements */
.footer-section {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #ccc;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

.footer-logo {
  height: 50px;
}

.footer-top h5 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-about p {
  line-height: 1.6;
  color: #aaa;
}

.social-icons a {
  color: #ccc;
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: var(--primary-color);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.75rem;
}
.footer-links a,
.footer-services a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-services a:hover {
  color: var(--primary-color);
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #aaa;
}
.footer-contact ul li i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}
.footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.footer-bottom {
  font-size: 0.9rem;
}
.footer-policies a {
  color: #aaa;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policies a:hover {
  color: var(--primary-color);
}

@media (max-width: 576px) {
  .footer-bottom {
    text-align: center;
  }
  .footer-policies {
    margin-top: 1rem;
  }
  .footer-policies a {
    display: inline-block;
    margin: 0 0.75rem;
  }
}


/* ===== UTILITIES ===== */
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
  box-shadow: var(--shadow-xl) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section {
    padding: 4rem 0 3rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .property-content {
    padding: 1rem;
  }

  .search-filters {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .search-filters {
    padding: 1rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
