/* ========================================
   FÈ SA COMPREHENSIVE STYLES
   Complete design system and styles for the FÈ SA application
   ======================================== */

/* ========================================
   CSS VARIABLES & DESIGN TOKENS
   ======================================== */

:root {
  /* === FÈ SA Caribbean Color Palette === */
  --primary: #FF5722;          /* Vibrant Orange - Main brand */
  --primary-light: #FF7043;    /* Light Orange - Hover states */
  --primary-dark: #E64A19;     /* Dark Orange - Active states */
  --primary-50: rgba(255, 87, 34, 0.05);   /* Ultra light orange backgrounds */
  --primary-100: rgba(255, 87, 34, 0.1);   /* Light orange backgrounds */
  --primary-200: rgba(255, 87, 34, 0.2);   /* Selected state backgrounds */
  
  --secondary: #1A237E;        /* Deep Blue - Trust & professionalism */
  --secondary-light: #3949AB;  /* Light Blue - Secondary actions */
  --secondary-dark: #0D47A1;   /* Dark Blue - Active states */
  
  --accent: #FF7043;           /* Light Orange - Accent elements */
  --success: #4CAF50;          /* Green - Success states */
  --success-light: #66BB6A;    /* Light green for hover */
  --warning: #FFC107;          /* Amber - Warnings */
  --danger: #F44336;           /* Red - Errors */
  --info: #2196F3;             /* Blue - Information */
  
  /* === Neutral Grays === */
  --gray-50: #FAFAFA;          /* Ultra light backgrounds */
  --gray-100: #F5F5F5;         /* Light backgrounds */
  --gray-200: #EEEEEE;         /* Subtle borders */
  --gray-300: #E0E0E0;         /* Card borders */
  --gray-400: #BDBDBD;         /* Disabled elements */
  --gray-500: #9E9E9E;         /* Secondary text */
  --gray-600: #757575;         /* Tertiary text */
  --gray-700: #616161;         /* Secondary text */
  --gray-800: #424242;         /* Primary text */
  --gray-900: #212121;         /* Headings */
  
  /* === Background Colors === */
  --bg-primary: #FFFFFF;       /* Pure white */
  --bg-secondary: #FAFAFA;     /* Light gray background */
  --bg-tertiary: #F5F5F5;      /* Subtle gray background */
  --bg-caribbean: #FFF8F5;     /* Soft beige background */
  --bg: #FFF8F5;               /* Caribbean minimalism */
  
  /* === Text Colors === */
  --text-primary: #212121;     /* Dark text */
  --text-secondary: #757575;   /* Secondary text */
  --text-tertiary: #9E9E9E;    /* Tertiary text */
  --text-white: #FFFFFF;       /* White text */
  
  /* === WhatsApp Colors === */
  --whatsapp-green: #25D366;   /* WhatsApp brand green */
  --whatsapp-dark: #128C7E;    /* WhatsApp dark green */
  --whatsapp-light: #DCF8C6;   /* WhatsApp light green */
  
  /* === Spacing System (8px base) === */
  --space-1: 4px;    /* 0.25rem */
  --space-2: 8px;    /* 0.5rem */
  --space-3: 12px;   /* 0.75rem */
  --space-4: 16px;   /* 1rem */
  --space-5: 20px;   /* 1.25rem */
  --space-6: 24px;   /* 1.5rem */
  --space-8: 32px;   /* 2rem */
  --space-10: 40px;  /* 2.5rem */
  --space-12: 48px;  /* 3rem */
  --space-16: 64px;  /* 4rem */
  --space-20: 80px;  /* 5rem */
  
  /* === Border Radius System === */
  --radius-sm: 4px;    /* Small elements */
  --radius-md: 8px;    /* Cards, buttons */
  --radius-lg: 12px;   /* Large cards */
  --radius-xl: 16px;   /* Hero elements */
  --radius-full: 9999px; /* Pills, avatars */
  
  /* === Shadow System === */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 4px 15px rgba(255, 87, 34, 0.3);
  --shadow-primary-lg: 0 8px 25px rgba(255, 87, 34, 0.4);
  
  /* === Typography System === */
  --font-family-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* === Transition System === */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   FÈ SA BRAND LOGO
   ======================================== */

.fesa-logo {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.fesa-logo:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.fesa-logo-circle {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: inline-flex;
    align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
    color: var(--text-primary);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

/* Font size utilities */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }

/* Text color utilities */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-white { color: var(--text-white); }
.text-brand { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }

/* Font weight utilities */
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  margin-bottom: 0.5rem;
  min-height: 48px; /* Apple/Google recommendation for touch targets */
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-sm {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-xs);
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-size-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-lg);
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

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

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

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: var(--success-light);
  transform: translateY(-2px);
}

.btn-error {
  background: var(--danger);
  color: white;
}

.btn-error:hover {
  background: #D32F2F;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--text-primary);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Touch feedback for mobile */
.btn:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  padding: var(--space-6);
  transition: all var(--transition-normal);
    margin-bottom: 1rem;
}

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

.card-compact {
  padding: var(--space-4);
}

.card-spacious {
  padding: var(--space-8);
}

.card-outlined {
  background: transparent;
  border: 2px solid var(--gray-200);
  box-shadow: none;
}

.card-outlined:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.card-elevated {
  box-shadow: var(--shadow-xl);
}

.card-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text-white);
  border: none;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: 1rem;
}

.form-label {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
}

.form-input {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: all var(--transition-normal);
  background: var(--bg-primary);
  min-height: 48px;
  font-size: 16px; /* Prevents iOS zoom */
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-input:disabled {
  background: var(--gray-100);
  color: var(--text-tertiary);
  cursor: not-allowed;
}

.form-input.error {
  border-color: var(--danger);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.form-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.form-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  background: var(--bg-primary);
  color: var(--text-primary);
    padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--gray-200);
}

.nav {
    display: flex;
  justify-content: space-between;
    align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
    text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 0.25rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
  background: rgba(255, 87, 34, 0.1);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Provider Button - Special Styling */
.btn-provider {
    background: linear-gradient(135deg, var(--secondary), #303F9F);
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
}

.btn-provider:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-provider:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
    background: linear-gradient(135deg, #303F9F, var(--secondary)) !important;
    color: white !important;
}

.btn-provider:hover:before {
    left: 100%;
}

.btn-provider:hover:after {
    display: none;
}

/* Active page styling */
.nav-link.active-page {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active-page:after {
    width: 100%;
}

/* Mobile navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 4px;
  z-index: 2001;
  position: relative;
}

.hamburger,
.hamburger:before,
.hamburger:after {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
}

.hamburger:before,
.hamburger:after {
  content: '';
}

.mobile-menu-toggle.active .hamburger {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger:before {
  transform: rotate(90deg) translateX(-7px);
}

.mobile-menu-toggle.active .hamburger:after {
  opacity: 0;
}

/* Mobile Navigation Overlay */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-link:after {
    display: none;
  }
  
  .btn-provider {
    margin: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .fesa-logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.75rem 0;
  }
  
  .fesa-logo {
    font-size: 1.5rem;
  }
  
  .btn-provider {
    font-size: 0.8rem;
    padding: 12px 16px;
  }
}

/* ========================================
   HERO SECTIONS
   ======================================== */

/* Hero Section - Figma Design */
.hero {
    position: relative;
    min-height: 712px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1C2E6F 0%, rgba(217, 217, 217, 0) 100%);
    opacity: 0.9;
}

.hero-content-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    height: 664px;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    width: 564px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-headline {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.hero-headline .highlight {
    color: #F4511E;
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
    margin-bottom: 0px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    width: 513px;
}

.search-form-container {
    position: relative;
}

.hero-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 0 8px 8px;
    gap: 8px;
    width: 100%;
    max-width: 513px;
    height: 44px;
    background-color: #FFFFFF;
    border: 1px solid #7B90B7;
    border-radius: 8px;
}

.hero-input {
    flex: 1;
    padding: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7B90B7;
    border: none;
    background: #FFFFFF;
    border-radius: 4px;
    outline: none;
    height: 44px;
}

.hero-input::placeholder {
    color: #7B90B7;
}

.hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 44px;
    height: 44px;
    background-color: #0F62FE;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: #0052CC;
    transform: translateY(-1px);
}

.hero-button-icon {
    width: 20px;
    height: 20px;
    color: #F8F9FB;
    font-size: 20px;
}

.popular-services {
    display: flex;
    align-items: center;
    gap: 16px;
}

.popular-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
}

.popular-items {
    display: flex;
    gap: 16px;
}

.popular-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-primary-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FF7043;
    border: 1px solid #B05302;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4);
}

.btn-secondary-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1A237E;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: #0D47A1;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-card {
        height: auto;
        min-height: 500px;
    }
    
    .hero-content-wrapper {
        width: 100%;
        gap: 20px;
    }
    
    .hero-headline {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-actions {
        width: 100%;
    }
    
    .hero-form {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        height: auto;
        max-width: 100%;
    }
    
    .hero-input {
        width: 100%;
        height: 44px;
    }
    
    .hero-button {
        width: 100%;
        height: 44px;
    }
    
    .popular-services {
        flex-direction: column;
        gap: 12px;
    }
    
    .popular-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content-card {
        /* Container handles padding */
    }
    
    .hero-headline {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .hero-form {
        padding: 12px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* ========================================
   PROVIDER CARDS
   ======================================== */

.provider-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-300);
  padding: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 1.5rem;
  min-height: 44px;
  transform: translateZ(0);
  will-change: transform;
}

.provider-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.provider-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.provider-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.provider-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
  aspect-ratio: 1/1;
  background: #f3f4f6;
}

.provider-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  loading: lazy;
  decoding: async;
}

.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.provider-info {
  flex: 1;
  min-width: 0;
}

.provider-info h3 {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.2;
  word-wrap: break-word;
}

.provider-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rating-stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-number {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  font-size: 14px;
}

.review-count {
  color: var(--text-secondary);
  font-size: 12px;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 14px;
}

.location-info i {
  color: var(--primary);
  font-size: 12px;
}

.price-info {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  margin-bottom: 16px;
  text-align: right;
  flex-shrink: 0;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-tag {
  background: var(--gray-100);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
  display: inline-block;
  margin: 2px;
}

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

.provider-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  flex-shrink: 0;
}

.provider-actions .btn {
  height: 44px;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
  margin-bottom: 0;
}

.provider-actions .btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.provider-actions .btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.provider-actions .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.provider-actions .btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--primary);
  color: var(--primary);
}

.provider-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  word-wrap: break-word;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  padding: 4px 8px;
  border-radius: 12px;
  background: var(--gray-50);
}

.availability-status.available {
  color: var(--success);
  background: rgba(76, 175, 80, 0.1);
}

.availability-status.unavailable {
  color: var(--danger);
  background: rgba(244, 67, 54, 0.1);
}

.availability-status i {
  font-size: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
} 

/* TaskRabbit-Style Provider Cards */
.providers-grid-single {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.provider-card-taskrabbit {
  display: flex;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  gap: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  min-height: 200px;
}

.provider-card-taskrabbit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.provider-left-section {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.provider-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid #f3f4f6;
  aspect-ratio: 1/1;
  background: #f3f4f6;
}

.provider-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  loading: lazy;
  decoding: async;
}

.verified-badge-large {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid white;
}

.provider-actions-taskrabbit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.btn-select-continue {
  background: #4CAF50;
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-select-continue:hover {
  background: #45a049;
  transform: translateY(-1px);
}

.view-profile-link {
  color: #4CAF50;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem;
  text-align: center;
}

.view-profile-link:hover {
  text-decoration: underline;
}

.provider-right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.provider-header-taskrabbit {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.provider-info-taskrabbit h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.provider-price-large {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.provider-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.rating-taskrabbit {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-star {
  color: #fbbf24;
}

.rating-score {
  font-weight: 600;
  margin-left: 0.25rem;
}

.task-count {
  color: #6b7280;
  font-size: 0.9rem;
}

.provider-location-taskrabbit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.how-i-help-section {
  margin-top: 1rem;
}

.how-i-help-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.how-i-help-text {
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.recent-review {
  background: #f9fafb;
  border-left: 3px solid #4CAF50;
  padding: 0.75rem;
  border-radius: 0 6px 6px 0;
  margin-top: 1rem;
}

.review-author {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.review-text {
  color: #4b5563;
  font-size: 0.9rem;
  font-style: italic;
}

.services-tags-taskrabbit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-tag-taskrabbit {
  background: #e5e7eb;
  color: #4b5563;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.availability-status-taskrabbit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-available {
  background: #10b981;
}

.status-busy {
  background: #f59e0b;
}

/* ========================================
   PROVIDER DIRECTORY & FILTERS
   ======================================== */

.providers-section {
  padding: 2rem 0 4rem;
  background: var(--bg-secondary, #FAFAFA);
}

.providers-section .container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.providers-section .filter-sidebar {
  flex-shrink: 0;
  width: 280px;
}

.providers-section .providers-content {
  flex: 1;
  min-width: 0;
}

.providers-header {
  margin-bottom: 2rem;
}

.search-section {
  margin-bottom: 1.5rem;
}

.search-bar {
  position: relative;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 12px 45px 12px 45px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
  min-height: 48px;
}

.search-input:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9E9E9E;
}

.search-clear {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9E9E9E;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.search-clear.visible {
  opacity: 1;
}

.search-clear:hover {
  color: #F97316;
}

.providers-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.provider-count {
  color: #757575;
  font-size: 0.9rem;
}

.filter-sidebar {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: fit-content;
  max-width: 300px;
  width: 100%;
}

.filter-section {
  margin-bottom: var(--space-6);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.filter-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 0;
  cursor: pointer;
  transition: all var(--transition-normal);
  border-radius: 8px;
  margin: 2px 0;
  min-height: 44px;
}

.filter-option:hover {
  color: var(--primary);
  background-color: var(--gray-50);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  background: var(--bg-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  flex-shrink: 0;
}

.filter-checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.filter-checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Mobile filter implementation */
.mobile-filter-toggle {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
}

@media (max-width: 1023px) {
  .providers-section .container {
    display: block;
  }
  
  .mobile-filter-toggle {
    display: flex;
  }
  
  .filter-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 24px;
    overflow-y: auto;
    border-radius: 0;
  }
  
  .filter-sidebar.mobile-active {
    display: block;
  }
  
  .mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
  }
  
  .mobile-filter-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
  }
  
  .providers-content {
    max-width: 100% !important;
    margin: 0 !important;
  }
}

@media (min-width: 1024px) {
  .mobile-filter-toggle {
    display: none;
  }
  
  .filter-sidebar {
    display: block !important;
    position: static;
    width: 300px;
    height: auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    z-index: auto;
  }
}

/* ========================================
   SERVICE CATEGORY CARDS
   ======================================== */

.service-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  margin-bottom: 1rem;
  min-height: 44px;
  cursor: pointer;
}

.service-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  text-decoration: none;
  color: var(--text-primary);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: var(--space-4);
}

.service-category-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

.service-description {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--warning);
  color: var(--warning);
}

.alert-error {
  background: rgba(244, 67, 54, 0.1);
  border-color: var(--danger);
  color: var(--danger);
}

.alert-info {
  background: rgba(33, 150, 243, 0.1);
  border-color: var(--info);
  color: var(--info);
}

/* ========================================
   PROGRESS INDICATORS
   ======================================== */

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 16px;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.progress-step-circle {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.progress-step.active .progress-step-circle {
  background: var(--primary);
  color: white;
}

.progress-step.completed .progress-step-circle {
  background: var(--success);
  color: white;
}

.progress-step-label {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-align: center;
  transition: color var(--transition-normal);
}

.progress-step.active .progress-step-label {
  color: var(--primary);
  font-weight: var(--font-weight-semibold);
}

/* ========================================
   MODALS & OVERLAYS
   ======================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;

}

.modal {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: var(--space-6);
}

.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  min-height: 44px;
  min-width: 44px;
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--text-primary);
}

/* WhatsApp Modal */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.whatsapp-modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 10% auto;
  border-radius: 12px;
  padding: 24px 20px;
}

/* ========================================
   DROPDOWNS
   ======================================== */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  margin-top: 0.5rem;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color var(--transition-normal);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--gray-100);
  text-decoration: none;
  color: var(--text-primary);
}

/* ========================================
   BADGES & INDICATORS
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--primary-100);
  color: var(--primary);
}

.badge-success {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
}

.badge-warning {
  background: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.badge-danger {
  background: rgba(244, 67, 54, 0.1);
  color: var(--danger);
}

.badge-secondary {
  background: var(--gray-100);
  color: var(--text-secondary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1rem;
  text-align: center;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem 0;
}

.auth-container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
  color: var(--text-secondary);
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-300);
}

.auth-divider span {
  background: white;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.auth-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.dashboard-section {
  padding: 2rem 0;
  background: var(--bg-secondary);
  min-height: calc(100vh - 80px);
}

.welcome-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.breadcrumb-section {
  background: var(--bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb-link {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

.breadcrumb-item {
  margin-right: 0.5rem;
}

.services-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.benefits-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
}

.providers-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Margin utilities */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.ml-1 { margin-left: var(--space-1); }
.ml-2 { margin-left: var(--space-2); }
.ml-3 { margin-left: var(--space-3); }
.ml-4 { margin-left: var(--space-4); }

.mr-1 { margin-right: var(--space-1); }
.mr-2 { margin-right: var(--space-2); }
.mr-3 { margin-right: var(--space-3); }
.mr-4 { margin-right: var(--space-4); }

/* Padding utilities */
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* Flexbox utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1; }
.flex-auto { flex: auto; }
.flex-none { flex: none; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-around { justify-content: space-around; }

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Border radius utilities */
.rounded { border-radius: var(--radius-md); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-primary { box-shadow: var(--shadow-primary); }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }

/* Height utilities */
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-fit { height: fit-content; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Opacity utilities */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Background color utilities */
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-success { background-color: var(--success); }
.bg-warning { background-color: var(--warning); }
.bg-danger { background-color: var(--danger); }
.bg-white { background-color: var(--bg-primary); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-brand { background-color: var(--primary); }
.bg-info { background-color: var(--info); }

/* Border utilities */
.border { border: 1px solid var(--gray-300); }
.border-0 { border: none; }
.border-t { border-top: 1px solid var(--gray-300); }
.border-b { border-bottom: 1px solid var(--gray-300); }
.border-l { border-left: 1px solid var(--gray-300); }
.border-r { border-right: 1px solid var(--gray-300); }

.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--secondary); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-brand { border-color: var(--primary); }
.border-success { border-color: var(--success); }
.border-warning { border-color: var(--warning); }
.border-danger { border-color: var(--danger); }
.border-info { border-color: var(--info); }

/* Spacing utilities */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Loading states */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========================================
   WHATSAPP INTEGRATION
   ======================================== */

.sticky-whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.sticky-whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.sticky-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sticky-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid rgba(0, 0, 0, 0.8);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.sticky-whatsapp-button:hover .sticky-tooltip {
  opacity: 1;
}

.pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #FF5722;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.btn-whatsapp-hero {
  position: relative;
  background: #25D366;
  border: none;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.btn-whatsapp-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  background: #128C7E;
}

.btn-whatsapp-cta {
  background: #25D366;
  border: none;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  background: #128C7E;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .provider-card {
    padding: 20px;
  }
  
  .provider-header {
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .provider-avatar {
    width: 56px;
    height: 56px;
  }
  
  .provider-info h3 {
    font-size: 16px;
  }
  
  .price-info {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .services-tags {
    margin-bottom: 16px;
  }
  
  .provider-actions .btn {
    height: 48px;
    font-size: 15px;
  }
  
  .provider-card-taskrabbit {
    flex-direction: column;
    text-align: center;
  }
  
  .provider-left-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .provider-actions-taskrabbit {
    flex-direction: row;
    max-width: 300px;
  }
  
  .providers-grid-single {
    max-width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .provider-actions {
    flex-direction: column;
  }
  
  .hidden-mobile {
    display: none !important;
  }
  
  .modal {
    width: 95%;
    margin: var(--space-4);
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .auth-container {
    margin: 1rem;
    padding: 2rem;
  }
  
  .provider-card {
    padding: 16px;
  }
  
  .provider-actions {
    gap: 8px;
  }
  
  .provider-actions .btn {
    height: 44px;
    font-size: 14px;
  }
  
  .provider-info h3 {
    font-size: 15px;
  }
  
  .price-info {
    font-size: 15px;
  }
  
  .sticky-whatsapp-button {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
  
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.btn:focus,
.form-input:focus,
.provider-card:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.provider-card:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-100);
}

/* Remove tap highlight on iOS */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Better touch scrolling */
.location-menu,
.filter-sidebar,
.nav-links {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Touch feedback */
.btn, .card, .provider-card {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Touch-friendly interactions */
.nav-item, .filter-option {
  padding: 12px 16px;
  margin: 4px 0;
}

/* Prevent iOS text size adjustment */
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Touch feedback for buttons */
.btn:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .btn,
  .dropdown,
  .modal-backdrop {
    display: none !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid var(--gray-300) !important;
  }
  
  .provider-card {
    break-inside: avoid;
  }
}

/* ========================================
   BOOKING & COMPONENT SPECIFIC STYLES
   ======================================== */

.booking-card {
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  transition: all var(--transition-normal);
  margin-bottom: 1rem;
}

.booking-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.booking-card:last-child {
  margin-bottom: 0;
}

.location-stats-number {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.location-stats-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  margin-top: 0.25rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce motion for better performance */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hardware acceleration for smooth scrolling */
.provider-card, .btn {
  transform: translateZ(0);
  will-change: transform;
}

/* Lazy loading optimization */
img {
  loading: lazy;
  decoding: async;
}

/* Mobile-specific viewport height fix for iOS */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* Fix for Android Chrome address bar */
@media screen and (max-height: 600px) {
  .hero {
    min-height: 100vh;
  }
}

/* Ensure proper spacing on very small screens */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }
  
  .provider-card-taskrabbit {
    padding: 12px;
  }
  
  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* Mobile-first typography fixes */
html {
  font-size: 16px; /* Base size - prevents iOS zoom */
}

.hero-title {
  font-size: 1.75rem; /* 28px on mobile */
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem; /* 16px on mobile */
  line-height: 1.4;
}

/* Mobile viewport height fix */
.hero-modern {
  min-height: calc(var(--vh, 1vh) * 60);
}

@media (min-width: 768px) {
  .hero-modern {
    min-height: calc(var(--vh, 1vh) * 70);
  }
  
  .container {
    padding: 0 24px;
  }
  
  .hero-title {
    font-size: 2.25rem; /* 36px */
  }
  
  .hero-subtitle {
    font-size: 1.125rem; /* 18px */
  }
}

@media (min-width: 1024px) {
  .hero-modern {
    min-height: calc(var(--vh, 1vh) * 80);
  }
  
  .container {
    padding: 0 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3rem; /* 48px */
  }
  
  .hero-subtitle {
    font-size: 1.25rem; /* 20px */
  }
  
  .desktop-only {
    display: block !important;
  }
}

/* Body states for mobile navigation */
body.nav-open,
body.filter-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ========================================
   COMPONENT FIXES
   ======================================== */

/* Grid spacing fixes */
.grid {
  gap: 1.5rem;
}

/* Filter section spacing */
.filter-section {
  margin-bottom: 1.5rem;
}

.filter-option {
  margin-bottom: 0.5rem;
}

/* Service category card spacing */
.service-category-card {
  margin-bottom: 1rem;
}

/* Filter improvements for touch */
.filter-option {
  padding: 16px 12px;
  margin: 4px 0;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-option:hover,
.filter-option:active {
  background: #f9fafb;
  border-color: #e5e7eb;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -4px;
  margin-right: -4px;
}

.filter-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  background: white;
  flex-shrink: 0;
}

.filter-checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Enhanced filter status display */
.filter-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 0;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.filter-tag .remove {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.filter-tag .remove:hover {
  background: rgba(255, 255, 255, 0.3);
}

.reset-filters {
  background: var(--gray-100);
  color: var(--text-secondary);
  border: none;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-filters:hover {
  background: var(--gray-200);
  color: var(--text-primary);
} 

/* ========================================
   MOBILE TOUCH FEEDBACK
   ======================================== */

.touch-active {
  transform: scale(0.98) !important;
  opacity: 0.8 !important;
  transition: all 0.1s ease !important;
}

.input-focused {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px var(--primary-100) !important;
}

/* ========================================
   MOBILE ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Prevent iOS text size adjustment */
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove tap highlight */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Allow text selection for content */
p, span, div, h1, h2, h3, h4, h5, h6, .provider-card p, .card p {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Touch-friendly interactions */
.btn, .card, .provider-card, .nav-item, .filter-option {
  -webkit-tap-highlight-color: rgba(255, 87, 34, 0.1);
  cursor: pointer;
}

/* Form elements should allow interaction */
input, textarea, select, button {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Button states for authentication */
.btn-error {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-error:hover {
    background: #c82333 !important;
    border-color: #bd2130 !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #1e7e34 !important;
}

/* ========================================
   PROVIDER HERO SECTION STYLES
   ======================================== */

.hero-header {
  position: relative;
  min-height: 492px;
  background: var(--bg);
  color: white;
  overflow: hidden;
  padding: 0;
}

.hero-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 492px;
  position: relative;
  z-index: 3;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, rgba(28, 46, 111, 0.9) 0%, rgba(217, 217, 217, 0) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  max-width: 645px;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #FEF0C7;
  margin: 0;
  text-align: left;
}

.hero-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: white;
  margin: 0;
  text-align: left;
}

.hero-image {
  position: relative;
  z-index: 3;
  flex: 1;
  text-align: right;
  padding: 24px;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-header .container {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .hero-headline {
    font-size: 42px;
    text-align: center;
  }
  
  .hero-description {
    font-size: 18px;
    text-align: center;
  }
  
  .hero-image {
    padding: 0;
  }
  
  .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-header .container {
    min-height: 400px;
    padding: 32px 0;
  }
  
  .hero-content {
    margin-bottom: 32px;
  }
  
  .hero-headline {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-image {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-header .container {
    min-height: 350px;
    padding: 24px 0;
  }
  
  .hero-content {
    margin-bottom: 24px;
  }
  
  .hero-headline {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-image {
    padding: 0;
  }
}

/* Animation for hero content */
.hero-text-content {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

