:root {
      --primary-blue: #2563eb;
      --primary-blue-light: #3b82f6;
      --primary-blue-lighter: #dbeafe;
      --accent-teal: #0d9488;
      --accent-teal-light: #14b8a6;
      --success-green: #059669;
      --success-green-light: #10b981;
      --warning-red: #dc2626;
      --warning-red-light: #fef2f2;
      --neutral-50: #fafafa;
      --neutral-100: #f5f5f5;
      --neutral-200: #e5e5e5;
      --neutral-600: #525252;
      --neutral-900: #171717;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
      --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
      --gradient-light: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
      --gradient-success: linear-gradient(135deg, var(--success-green) 0%, #34d399 100%);
      --gradient-contact: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      --glass-bg: rgba(0, 0, 0, 0.6);
      --glass-border: rgba(0, 0, 0, 0.4);
      --backdrop-blur: blur(12px);
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --border-radius-lg: 20px;
      --border-radius-md: 12px;
      --border-radius-sm: 8px;
    }

    /* Base Styles */
    .contact-page {
      background-color: var(--neutral-50);
      font-family: system-ui, -apple-system, sans-serif;
    }

    /* Hero Section - Modern Design */
    .contact-hero {
      background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.7) 0%, rgba(13, 148, 136, 0.7) 100%),
        url('../../assets/images/pages/contact/call-center.webp') center/cover no-repeat;
      color: white;
      padding: 6rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
      opacity: 0.3;
    }

    .contact-hero .container {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .hero-content {
      text-align: center;
      padding: 3rem 2rem;
      background: var(--glass-bg);
      backdrop-filter: var(--backdrop-blur);
      -webkit-backdrop-filter: var(--backdrop-blur);
      border: 1px solid var(--glass-border);
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-xl);
    }

    .contact-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(to right, #ffffff, #d3dce6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-hero p {
      font-size: 1.25rem;
      line-height: 1.6;
      opacity: 0.95;
      margin-bottom: 2rem;
    }

    /* Contact Methods - Vertical Layout */
    .contact-methods-section {
      padding: 6rem 0;
      background: var(--gradient-contact);
    }

    .vertical-contact-methods {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-method-vertical {
      background: white;
      border-radius: var(--border-radius-lg);
      padding: 2.5rem;
      transition: var(--transition-smooth);
      border: 2px solid transparent;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      counter-increment: contact-method;
    }

    .contact-method-vertical::before {
      content: counter(contact-method);
      position: absolute;
      top: 1.5rem;
      left: 1.5rem;
      width: 40px;
      height: 40px;
      background: var(--gradient-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.25rem;
    }

    .contact-method-vertical:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-xl);
      border-color: var(--primary-blue-lighter);
    }

    .method-content {
      padding-left: 3rem;
    }

    .method-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .method-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-blue);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .whatsapp-method .method-icon {
      background: var(--gradient-success);
    }

    .method-header h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--neutral-900);
      margin: 0;
    }

    .method-details {
      margin-bottom: 1.5rem;
    }

    .method-details p {
      color: var(--neutral-600);
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    .method-phone {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-blue);
      margin: 0.5rem 0;
      display: block;
    }

    .whatsapp-method .method-phone {
      color: var(--success-green);
    }

    .method-actions {
      display: flex;
      gap: 1rem;
    }

    .method-btn {
      border-radius: 50px;
      padding: 0.75rem 2rem;
      font-weight: 600;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .method-btn-primary {
      background: var(--gradient-blue);
      color: white;
      border: none;
    }

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

    .whatsapp-method .method-btn-outline {
      color: var(--success-green);
      border-color: var(--success-green);
    }

    .method-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    }

    .whatsapp-method .method-btn-primary {
      background: var(--gradient-success);
    }

    /* Contact Info Sidebar */
    .contact-info-sidebar {
      background: white;
      border-radius: var(--border-radius-lg);
      padding: 3rem;
      box-shadow: var(--shadow-lg);
      height: 100%;
      position: sticky;
      top: 2rem;
    }

    .contact-info-sidebar h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--neutral-900);
      margin-bottom: 2rem;
      text-align: center;
    }

    .sidebar-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--neutral-200);
    }

    .sidebar-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .sidebar-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      background: var(--primary-blue-lighter);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-blue);
    }

    .sidebar-content h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--neutral-900);
      margin-bottom: 0.5rem;
    }

    .sidebar-content p {
      color: var(--neutral-600);
      line-height: 1.6;
      margin: 0;
    }

    .sidebar-phone {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-blue);
      display: block;
      margin: 0.5rem 0;
    }

    /* Form Section - Modern Design */
    .contact-form-section {
      padding: 6rem 0;
      position: relative;
      background: white;
    }

    .form-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      background: white;
      border-radius: var(--border-radius-lg);
      padding: 4rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-200);
      position: relative;
    }

    .form-decoration {
      position: absolute;
      top: -30px;
      left: -30px;
      width: 150px;
      height: 150px;
      background: var(--gradient-blue);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      opacity: 0.1;
      animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(30px, -30px) rotate(120deg); }
      66% { transform: translate(-20px, 20px) rotate(240deg); }
    }

    .form-wrapper h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--neutral-900);
      margin-bottom: 1rem;
      text-align: center;
      background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .form-wrapper p {
      text-align: center;
      color: var(--neutral-600);
      margin-bottom: 3rem;
      font-size: 1.1rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      font-weight: 600;
      color: var(--neutral-900);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .form-control, .form-select, textarea, .custom-dropdown-input {
      border: 2px solid var(--neutral-200);
      border-radius: var(--border-radius-sm);
      padding: 1rem;
      font-size: 1rem;
      transition: var(--transition-smooth);
      background: white;
    }

    .form-control:focus, .form-select:focus, textarea:focus, .custom-dropdown-input:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      outline: none;
    }

    .form-control:hover, .form-select:hover, textarea:hover, .custom-dropdown-input:hover {
      border-color: var(--primary-blue-light);
    }

    .submit-btn {
      background: var(--gradient-blue);
      border: none;
      color: white;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition-smooth);
      width: 100%;
      margin-top: 1rem;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .submit-btn::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.7s ease;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }

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

    /* Map Section - Modern Layout */
    .map-location-section {
      padding: 6rem 0;
      background: linear-gradient(to bottom, var(--neutral-50), white);
    }

    .map-container {
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      height: 500px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-200);
      position: relative;
    }

    .map-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.1), transparent);
      pointer-events: none;
      z-index: 1;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .info-card {
      background: white;
      border-radius: var(--border-radius-md);
      padding: 2rem;
      transition: var(--transition-smooth);
      border: 1px solid var(--neutral-200);
      height: 100%;
      position: relative;
    }

    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-blue-light);
    }

    .info-card-icon {
      width: 60px;
      height: 60px;
      background: var(--primary-blue-lighter);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--primary-blue);
    }

    .info-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--neutral-900);
      margin-bottom: 1rem;
    }

    .info-card p {
      color: var(--neutral-600);
      line-height: 1.6;
      margin-bottom: 0;
    }

    .emergency-card {
      background: linear-gradient(135deg, var(--warning-red-light), white);
      border: 2px solid var(--warning-red);
    }

    .emergency-card .info-card-icon {
      background: var(--warning-red-light);
      color: var(--warning-red);
    }

    .emergency-card h3 {
      color: var(--warning-red);
    }

    .emergency-card .phone-link {
      color: var(--warning-red);
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition-smooth);
    }

    .emergency-card .phone-link:hover {
      transform: translateX(5px);
    }

    /* Success Message */
    .success-message {
      display: none;
      background: linear-gradient(135deg, #d1fae5, #ecfdf5);
      border: 2px solid #10b981;
      border-radius: var(--border-radius-md);
      padding: 2rem;
      text-align: center;
      margin-top: 2rem;
    }

    .success-message .success-icon {
      width: 80px;
      height: 80px;
      background: #10b981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
    }

    .success-message h3 {
      color: #065f46;
      margin-bottom: 1rem;
    }

    .success-message p {
      color: #047857;
    }

    /* Statistics Section */
    .stats-section {
      padding: 5rem 0;
      background: var(--gradient-blue);
      color: white;
    }

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

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      color: var(--primary-blue); /* Changed color for contrast */
    }

    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
      color: var(--neutral-600); /* Ensure readability */
    }
    
    .stats-in-hero-container {
      margin-top: 3rem; /* Add some space from hero-content */
      margin-bottom: -4rem; /* Pull up into the hero section */
      position: relative;
      z-index: 3; /* Bring above hero's pseudo-element */
      max-width: 800px; /* Constrain width for centering */
      margin-left: auto; /* Center the container */
      margin-right: auto; /* Center the container */
      display: flex; /* Make it a flex container */
      justify-content: center; /* Center its content (the row) */
    }

    .stats-in-hero-container .row {
      background: rgba(255, 255, 255, 0.95); /* Light background for the stat boxes row */
      border-top-left-radius: var(--border-radius-lg);
      border-top-right-radius: var(--border-radius-lg);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      box-shadow: var(--shadow-xl);
      padding: 2rem 1rem;
      justify-content: center; /* Center the columns within the row */
    }

    .stat-item {
      text-align: center;
      padding: 0.5rem 0; /* Add some internal padding to each stat item */
    }

    /* Responsive adjustments for stat items */
    @media (max-width: 767px) {
      .stats-in-hero-container {
        margin-bottom: -2rem; /* Adjust margin for smaller screens */
      }
      .stats-in-hero-container .row {
        padding: 1.5rem 0.5rem;
      }
      .stat-item {
        padding: 0.5rem 0.25rem;
      }
      .stat-number {
        font-size: 2.5rem;
      }
    }
    
    /* Statistics Section */
    /* This rule is effectively removed now that the HTML has moved */
      .form-wrapper {
        padding: 3rem;
      }
      .form-wrapper h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 991px) {
      .contact-hero {
        padding: 6rem 0 4rem;
      }
      .contact-hero h1 {
        font-size: 2.5rem;
      }
      .contact-hero p {
        font-size: 1.1rem;
      }
      .contact-methods-section,
      .contact-form-section,
      .map-location-section,
      .stats-section {
        padding: 4rem 0;
      }
      .map-container {
        height: 400px;
      }
      .contact-info-sidebar {
        margin-top: 3rem;
        position: static;
      }
    }

    @media (max-width: 767px) {
      .contact-hero {
        padding: 4rem 0 3rem;
      }
      .hero-content {
        padding: 2rem 1.5rem;
      }
      .contact-hero h1 {
        font-size: 2rem;
      }
      .contact-hero p {
        font-size: 1rem;
      }
      .form-wrapper {
        padding: 2rem;
      }
      .form-wrapper h2 {
        font-size: 1.8rem;
      }
      .form-decoration {
        display: none;
      }
      .contact-method-vertical {
        padding: 2rem;
      }
      .method-header h3 {
        font-size: 1.5rem;
      }
      .method-phone {
        font-size: 1.3rem;
      }
      .map-container {
        height: 300px;
      }
      .stat-number {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 575px) {
      .contact-hero {
        padding: 3rem 0 2rem;
      }
      .contact-hero h1 {
        font-size: 1.8rem;
      }
      .contact-methods-section,
      .contact-form-section,
      .map-location-section,
      .stats-section {
        padding: 3rem 0;
      }
      .form-wrapper {
        padding: 1.5rem;
      }
      .info-card {
        padding: 1.5rem;
      }
      .contact-info-sidebar {
        padding: 2rem;
      }
      .method-actions {
        flex-direction: column;
      }
      .method-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* Animation Classes */
    .fade-in {
      animation: fadeIn 0.8s ease-out forwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Custom Dropdown Styling */
    .custom-dropdown {
      position: relative;
    }

    .custom-dropdown-input {
      cursor: pointer;
      background: white;
    }

    .custom-dropdown-list {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 2px solid var(--neutral-200);
      border-radius: var(--border-radius-sm);
      max-height: 200px;
      overflow-y: auto;
      display: none;
      z-index: 1000;
      box-shadow: var(--shadow-lg);
    }

    .custom-dropdown-list.show {
      display: block;
    }

    .custom-dropdown-list div {
      padding: 0.75rem 1rem;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .custom-dropdown-list div:hover {
      background: var(--primary-blue-lighter);
    }
  