        :root {
            /* Color Tokens from Source */
            --primary: #0040a1;
            --primary-container: #0056d2;
            --on-primary: #ffffff;
            --secondary: #00668a;
            --secondary-container: #3dc2fd;
            --background: #f3faff;
            --on-background: #021f29;
            --surface: #f3faff;
            --on-surface: #021f29;
            --surface-variant: #cbe7f5;
            --on-surface-variant: #424654;
            --surface-container: #d8f2ff;
            --surface-container-low: #e6f6ff;
            --surface-container-lowest: #ffffff;
            --surface-container-high: #d1ecfa;
            --surface-container-highest: #cbe7f5;
            --outline-variant: #c3c6d6;
            
            /* Typography */
            --font-headline: 'Manrope', sans-serif;
            --font-body: 'Inter', sans-serif;

            /* Spacing & Effects */
            --shadow-soft: 0px 20px 40px rgba(2, 31, 41, 0.06);
            --border-radius: 0.25rem;
            --border-radius-lg: 0.5rem;
            --border-radius-xl: 0.75rem;
            --max-width: 1280px;
        }

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

        body {
            background-color: var(--background);
            color: var(--on-background);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        .scroll-smooth {
            scroll-behavior: smooth;
        }

        /* Layout Helpers */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            items-center: center;
            height: 80px;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: #1e3a8a; /* Deep blue equivalent */
            text-decoration: none;
            letter-spacing: -0.05em;
        }

        .nav-links {
            display: none;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
                gap: 2rem;
                align-items: center;
            }
        }

        .nav-link {
            color: #475569;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #1e40af;
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.25rem;
        }

        .btn-quote {
            background: linear-gradient(to right, var(--primary), var(--primary-container));
            color: var(--on-primary);
            padding: 0.625rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            transform: scale(0.95);
        }

        .btn-quote:hover {
            opacity: 0.8;
            transform: scale(1);
        }

        /* Main Content */
       
        .hero-header {
            margin-bottom: 5rem;
        }

        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: var(--surface-container);
            color: var(--secondary);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 9999px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-family: var(--font-headline);
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 800;
            color: var(--on-surface);
            line-height: 1.1;
            max-width: 42rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.05em;
        }

        h1 span {
            color: var(--primary);
            font-style: italic;
        }

        .subtext {
            color: var(--on-surface-variant);
            font-size: 1.125rem;
            max-width: 32rem;
            line-height: 1.6;
        }

        /* Grid System */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: repeat(12, minmax(0, 1fr));
            }
            .info-col { grid-column: span 5; }
            .form-col { grid-column: span 7; }
        }

        /* Contact Cards */
        .info-col {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .card {
            background-color: var(--surface-container-lowest);
            padding: 2rem;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-4px);
        }

        .card-inner {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .icon-box {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background-color: rgba(61, 194, 253, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .card h3 {
            font-family: var(--font-headline);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

        .card p {
            color: var(--on-surface-variant);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .card a {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.125rem;
            text-decoration: none;
        }

        .card a:hover {
            text-decoration: underline;
        }

        /* Map */
        .map-box {
            height: 300px;
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            position: relative;
            background-color: var(--surface-container);
            box-shadow: var(--shadow-soft);
        }

        .map-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(1) brightness(1.1) contrast(0.75);
        }

        .map-label {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--border-radius-lg);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .map-label span:last-child {
            font-weight: 700;
        }

        /* Form */
        .form-col {
            background-color: var(--surface-container-low);
            padding: 3.5rem;
            border-radius: var(--border-radius-xl);
        }

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

        .form-group label {
            display: block;
            font-family: var(--font-headline);
            font-weight: 700;
            color: var(--on-surface);
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            background-color: var(--surface-container-highest);
            border: none;
            border-bottom: 2px solid rgba(195, 198, 214, 0.2);
            padding: 1rem;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .form-control::placeholder {
            color: rgba(66, 70, 84, 0.4);
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(to right, var(--primary), var(--primary-container));
            color: var(--on-primary);
            padding: 1.25rem 2.5rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: all 0.3s;
        }

        @media (min-width: 768px) {
            .btn-submit { width: auto; }
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .btn-submit:active {
            transform: scale(0.95);
        }

        .form-note {
            font-size: 0.75rem;
            color: rgba(66, 70, 84, 0.6);
            margin-top: 1.5rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .form-note { text-align: left; }
        }

        /* Footer */
        footer {
            background-color: #f8fafc;
            border-top: 1px solid rgba(226, 232, 240, 0.2);
            padding-top: 4rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            padding-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .footer-section h4 {
            font-family: var(--font-headline);
            color: #1e3a8a;
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-section p {
            color: #64748b;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: #64748b;
            font-size: 0.875rem;
            text-decoration: underline;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #2563eb;
        }

        .nav-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(226, 232, 240, 0.1);
            padding: 2rem 0;
        }

        .footer-bottom p {
            color: #64748b;
            font-size: 0.875rem;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }



        /* ================= BASE CONTAINER ================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================= NAV RESPONSIVE ================= */
.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}

/* ================= HERO TEXT RESPONSIVE ================= */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

/* ================= GRID RESPONSIVE ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .info-col {
    grid-column: span 5;
  }

  .form-col {
    grid-column: span 7;
  }
}

/* ================= FOOTER RESPONSIVE ================= */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Tablet & up */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= FORM RESPONSIVE ================= */
@media (min-width: 768px) {
  .btn-submit {
    width: auto;
  }
}

/* ================= TEXT ALIGNMENT RESPONSIVE ================= */
@media (min-width: 768px) {
  .form-note {
    text-align: left;
  }
}

/* ================= MOBILE SCROLL SAFETY ================= */
body {
  overflow-x: hidden;
}



        /* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 100;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--on-surface);
}

.mobile-menu.active {
    right: 0;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }
}

/* Show hamburger on mobile */
@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

