/* ============================================================
   VIQUA WATER CARE SOLUTIONS — Accessibility & Premium Overrides
   WCAG 2.1 AA Compliant | Loaded after style.css
   ============================================================ */

/* ----------------------------------------------------------
   1. WCAG-COMPLIANT COLOR OVERRIDES
   The Arsha template uses #47b2e4 (contrast 2.6:1 on white)
   which FAILS WCAG AA. All instances are overridden below.
   ---------------------------------------------------------- */
:root {
    --viqua-navy: #1A2853;
    --viqua-navy-hover: #0D1B3A;
    --viqua-blue: #0B6FA4;        /* 5.8:1 on white — passes AA */
    --viqua-text: #111827;         /* 15.4:1 on white — passes AAA */
    --viqua-muted: #4B5563;        /* 7.5:1 on white — passes AAA */
    --viqua-bg-alt: #F3F5FA;
    --viqua-border: rgba(17, 24, 39, 0.12);
    --viqua-success: #065F46;      /* 7.5:1 on white */
    --viqua-error: #991B1B;        /* 7.8:1 on white */
    --viqua-radius: 12px;
    --viqua-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.06);
    --viqua-shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.10);
    --viqua-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    color: var(--viqua-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Replace all #47b2e4 link colors with accessible navy */
a {
    color: var(--viqua-navy);
}
a:hover {
    color: var(--viqua-navy-hover);
    text-decoration: underline;
}

/* ----------------------------------------------------------
   2. SKIP LINK (Accessibility)
   ---------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 99999;
    background: var(--viqua-navy);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: top 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.skip-link:focus {
    top: 0;
    color: #fff;
    outline: 2px solid #fff;
    outline-offset: -2px;
}

/* ----------------------------------------------------------
   3. FOCUS INDICATORS (WCAG 2.1 AA — 2.4.7)
   Visible focus ring on all interactive elements.
   ---------------------------------------------------------- */
*:focus-visible {
    outline: 3px solid var(--viqua-navy);
    outline-offset: 3px;
    border-radius: 2px;
}

/* White focus ring for elements on dark backgrounds */
.cta *:focus-visible,
.hero *:focus-visible,
#hero *:focus-visible,
#footer *:focus-visible {
    outline-color: #FFFFFF;
}

/* Remove browser default outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================================
   4. HEADER / NAVIGATION — Premium Accessible Sticky Header
   Transparent at top → solid white on scroll.
   WCAG 2.1 AA: contrast, focus indicators, keyboard nav.
   ============================================================ */

/* --- 4a. Base Header (Transparent State) ---
   Sits over the dark hero scrim. All text/icons are white.
   ---------------------------------------------------------- */
#header,
#header.viqua-header {
    background: transparent;
    padding: 0;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 997;
    box-shadow: none;
}
#header .container {
    padding-top: 16px;
    padding-bottom: 16px;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 4b. Scrolled Header (Glassmorphism Effect) ---
   Triggered by main.js adding .header-scrolled at scroll > 100px.
   More specific selectors to override base style.css
   ---------------------------------------------------------- */
body #header.viqua-header.header-scrolled,
body #header.header-scrolled,
body #header.viqua-header.header-inner-pages,
body #header.header-inner-pages {
    /* White background with slight opacity */
    background: rgba(255, 255, 255, 0.95) !important;

    /* Backdrop blur for supported browsers */
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;

    /* Subtle shadow for depth */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15),
                0 4px 24px rgba(0, 0, 0, 0.08) !important;

    /* Bottom border for definition */
    border-bottom: 1px solid rgba(26, 40, 83, 0.12) !important;
}

body #header.header-scrolled .container {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* --- 4c. Logo ---
   Natural logo appearance, no filters applied.
   ---------------------------------------------------------- */
.viqua-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}
.viqua-logo:hover {
    text-decoration: none !important;
}
.viqua-logo__img {
    height: 90px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease;
}
#header.header-scrolled .viqua-logo__img {
    height: 42px;
}

/* --- 4d. Desktop Navigation Links ---
   Transparent: white text. Scrolled: dark text.
   Underline indicator for active/hover (animated scaleX).
   ---------------------------------------------------------- */
.navbar {
    padding: 0;
    font-family: 'Jost', system-ui, -apple-system, sans-serif;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
}

/* Link — transparent header state (white text) */
.navbar .nav-link,
.navbar a,
.navbar a:focus {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none !important;
    white-space: nowrap;
    position: relative;
    border-radius: 6px;
    transition: color 0.25s ease, background-color 0.25s ease;
    line-height: 1.4;
}

/* Animated underline indicator */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

/* Hover — transparent header */
.navbar .nav-link:hover,
.navbar li:hover > a {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
}
.navbar .nav-link:hover::after {
    transform: scaleX(1);
}

/* Active — transparent header */
.navbar .nav-link.active,
.navbar .active,
.navbar .active:focus {
    color: #FFFFFF;
}
.navbar .nav-link.active::after,
.navbar .active::after {
    transform: scaleX(1);
}

/* Focus-visible — transparent header (white outline) */
.navbar .nav-link:focus-visible,
.navbar a:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
    border-radius: 6px;
}

/* --- 4e. Desktop Links — Scrolled State (Navy text on white background) --- */
#header.header-scrolled .navbar .nav-link,
#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
    color: rgba(26, 40, 83, 1);
}
#header.header-scrolled .navbar .nav-link:hover,
#header.header-scrolled .navbar li:hover > a {
    color: rgba(26, 40, 83, 1);
    background: rgba(26, 40, 83, 0.08);
}
#header.header-scrolled .navbar .nav-link.active,
#header.header-scrolled .navbar .active,
#header.header-scrolled .navbar .active:focus {
    color: rgba(26, 40, 83, 1);
}
#header.header-scrolled .navbar .nav-link::after {
    background: rgba(26, 40, 83, 1);
}
/* Focus-visible — scrolled header (navy outline on white bg) */
#header.header-scrolled .navbar .nav-link:focus-visible,
#header.header-scrolled .navbar a:focus-visible {
    outline-color: rgba(26, 40, 83, 1);
}

/* --- 4f. Mobile Nav Toggle Button ---
   44×44px minimum touch target (WCAG 2.5.8).
   Uses Bootstrap offcanvas via data-bs attributes.
   ---------------------------------------------------------- */
button.mobile-nav-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
}
button.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}
button.mobile-nav-toggle:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
    border-radius: 8px;
}
#header.header-scrolled button.mobile-nav-toggle {
    color: rgba(26, 40, 83, 1);
}
#header.header-scrolled button.mobile-nav-toggle:hover {
    background: rgba(26, 40, 83, 0.08);
}
@media (max-width: 991px) {
    button.mobile-nav-toggle {
        display: inline-flex;
    }
}

/* --- 4g. Offcanvas Mobile Navigation ---
   Bootstrap 5 offcanvas panel sliding from the right.
   48px min-height links for WCAG 2.5.8 touch targets.
   ---------------------------------------------------------- */
.viqua-offcanvas {
    width: 300px;
    max-width: 85vw;
    border-left: none;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
}
.viqua-offcanvas .offcanvas-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--viqua-border, rgba(0, 0, 0, 0.08));
}
.viqua-offcanvas .offcanvas-header .viqua-logo__img {
    height: 42px;
    width: auto;
}
.viqua-offcanvas .btn-close {
    min-width: 44px;
    min-height: 44px;
    opacity: 0.6;
}
.viqua-offcanvas .btn-close:hover {
    opacity: 1;
}
.viqua-offcanvas .offcanvas-body {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

/* Offcanvas nav links */
.offcanvas-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.offcanvas-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--viqua-text, #333);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    min-height: 48px;
    border-left: 3px solid transparent;
    transition: background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease;
}
.offcanvas-nav-link:hover {
    background: var(--viqua-bg-alt, #f8f9fa);
    color: var(--viqua-navy);
}
.offcanvas-nav-link.active,
.offcanvas-nav-link:focus {
    color: var(--viqua-navy);
    background: rgba(26, 40, 83, 0.05);
    border-left-color: var(--viqua-navy);
}
.offcanvas-nav-link:focus-visible {
    outline: 2px solid var(--viqua-navy);
    outline-offset: -2px;
    border-radius: 4px;
}

/* Offcanvas footer with contact info */
.offcanvas-footer {
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid var(--viqua-border, rgba(0, 0, 0, 0.08));
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.offcanvas-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--viqua-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}
.offcanvas-contact-link:hover {
    color: var(--viqua-blue, #0B6FA4);
}
.offcanvas-contact-link i {
    font-size: 1rem;
    opacity: 0.7;
}

/* ----------------------------------------------------------
   5. HERO SECTION (Premium — Accessible Contrast)
   Full viewport hero with background slideshow.
   ---------------------------------------------------------- */
#hero,
.hero {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    background: var(--viqua-navy);
    position: relative;
}

/* Hero Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Dark scrim overlay ensures text contrast over any image */
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 40, 83, 0.75) 0%,
        rgba(26, 40, 83, 0.55) 40%,
        rgba(26, 40, 83, 0.65) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 120px 0 80px;
    max-width: 800px;
}

#hero h1,
.hero h1 {
    margin: 0 0 16px 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* Hero eyebrow label */
.hero-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    max-width: 620px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    margin-bottom: 0;
}

.hero-actions {
    margin-top: 32px;
}

/* Hero CTA Button — high contrast */
#hero .btn-get-started,
.hero .btn-get-started {
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--viqua-navy);
    background: #FFFFFF;
    text-decoration: none;
    border: 2px solid #FFFFFF;
}
#hero .btn-get-started:hover,
.hero .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: var(--viqua-navy);
    text-decoration: none;
}

/* Hero Watch Video link */
.hero .btn-watch-video,
#hero .btn-watch-video {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero .btn-watch-video:hover,
#hero .btn-watch-video:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
.hero .btn-watch-video i,
#hero .btn-watch-video i {
    font-size: 1.25rem;
    color: #fff;
}

/* Hero Secondary Button (outline on dark) */
#hero .btn-hero-secondary,
.hero .btn-hero-secondary {
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    color: #FFFFFF;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}
#hero .btn-hero-secondary:hover,
.hero .btn-hero-secondary:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
    color: #FFFFFF;
}

/* Hero Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    font-size: 1.25rem;
    text-decoration: none;
    animation: heroScrollBounce 2s infinite;
    transition: all 0.3s ease;
}
.hero-scroll-indicator:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    text-decoration: none;
}
@keyframes heroScrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(8px); }
    60% { transform: translateX(-50%) translateY(4px); }
}

@media (max-width: 768px) {
    .hero-inner {
        text-align: center;
        padding: 100px 20px 60px;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 16px !important;
        width: 100%;
    }
    .hero-actions a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }
    .hero-actions .btn-get-started,
    .hero-actions .btn-watch-video {
        display: flex;
        width: 100%;
        max-width: 280px;
    }
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-eyebrow {
        font-size: 0.6875rem;
    }
    .hero-scroll-indicator {
        bottom: 20px;
    }
}

/* ----------------------------------------------------------
   6. SECTION TITLES (Premium — WCAG AA contrast)
   ---------------------------------------------------------- */
.viqua-section {
    padding: clamp(3rem, 5vw, 6rem) 0;
    overflow: visible;
}
.viqua-section--alt {
    background-color: var(--viqua-bg-alt);
}

.section-title h2 {
    color: var(--viqua-navy);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}
/* Override Arsha's underline decorations with brand navy */
.section-title h2::after {
    background: var(--viqua-navy);
}

/* ----------------------------------------------------------
   7. ABOUT SECTION
   ---------------------------------------------------------- */
.about .content .btn-learn-more {
    color: var(--viqua-navy);
    border: 2px solid var(--viqua-navy);
    border-radius: 6px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}
.about .content .btn-learn-more:hover {
    background: var(--viqua-navy);
    color: #fff;
    text-decoration: none;
}

/* Accessible check list in About section */
.viqua-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.viqua-check-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    line-height: 1.6;
    font-size: 0.9375rem;
}
.viqua-check-list li i {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.125rem;
    color: var(--viqua-navy);
}
.viqua-check-list li + li {
    margin-top: 4px;
}

/* Enhanced About Section Styles */
.section-subtitle {
    text-align: center;
    color: var(--viqua-muted);
    font-size: 1.125rem;
    margin-top: -12px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-journey-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--viqua-radius);
    padding: 32px;
    box-shadow: var(--viqua-shadow);
    border-left: 4px solid var(--viqua-navy);
}

.journey-year {
    position: relative;
}

.year-badge {
    display: inline-block;
    background: var(--viqua-navy);
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 40, 83, 0.2);
}

.journey-title {
    color: var(--viqua-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.journey-text {
    color: var(--viqua-text);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.about-card {
    background: #fff;
    border-radius: var(--viqua-radius);
    padding: 32px;
    box-shadow: var(--viqua-shadow);
    border: 1px solid var(--viqua-border);
    transition: all 0.3s ease;
}

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

.about-card .card-icon {
    font-size: 2.5rem;
    color: var(--viqua-navy);
    margin-bottom: 16px;
}

.about-card .card-title {
    color: var(--viqua-navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-card .card-text {
    color: var(--viqua-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.card-highlight {
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0D1B3A 100%);
    border: none;
}

.card-highlight .card-icon {
    color: #FFD700;
}

.card-highlight .card-title {
    color: #fff;
}

.card-highlight .card-quote {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    font-size: 1rem;
    font-weight: 500;
}

.card-highlight .card-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 12px;
    margin-bottom: 0;
}

.products-section {
    background: var(--viqua-bg-alt);
    border-radius: var(--viqua-radius);
    padding: 32px;
}

.products-title {
    color: var(--viqua-navy);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.product-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.product-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--viqua-navy);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-content h4 {
    color: var(--viqua-navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-content p {
    color: var(--viqua-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.process-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--viqua-radius);
    padding: 32px;
    box-shadow: var(--viqua-shadow);
    border: 2px solid var(--viqua-navy);
}

.process-header {
    display: flex;
    align-items: center;
    color: var(--viqua-navy);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-header i {
    font-size: 1.5rem;
}

.process-text {
    color: var(--viqua-text);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.btn-learn-more-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--viqua-navy);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 40, 83, 0.2);
}

.btn-learn-more-enhanced:hover {
    background: var(--viqua-navy-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 40, 83, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-learn-more-enhanced i {
    transition: transform 0.3s ease;
}

.btn-learn-more-enhanced:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .about-journey-card {
        padding: 24px;
    }

    .year-badge {
        font-size: 1.5rem;
        padding: 10px 20px;
    }

    .about-card {
        padding: 24px;
        margin-bottom: 16px;
    }

    .products-section {
        padding: 24px;
    }

    .product-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-card {
        padding: 24px;
    }
}

/* ----------------------------------------------------------
   8. VISION & MISSION (Why Us) — Enhanced Modern Design
   Card-based layout with improved visual hierarchy
   ---------------------------------------------------------- */

/* Hero Header Section */
.why-us-enhanced {
    padding: 0 0 clamp(4rem, 6vw, 7rem);
    overflow: visible;
}

.why-us-hero {
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0D1B3A 100%);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.why-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.why-us-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
}

.why-us-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: #fff;
    border-radius: var(--viqua-radius);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--viqua-shadow);
    border: 1px solid var(--viqua-border);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 280px;
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--viqua-shadow-hover);
}

.vision-card {
    border-top: 4px solid #0B6FA4;
}

.mission-card {
    border-top: 4px solid var(--viqua-navy);
}

.card-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0B6FA4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(26, 40, 83, 0.2);
}

.card-badge i {
    font-size: 1.75rem;
    color: #fff;
}

.card-vm-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--viqua-navy);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.card-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0B6FA4 0%, var(--viqua-navy) 100%);
    border-radius: 2px;
    margin-bottom: 24px;
}

.card-vm-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--viqua-text);
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-icon-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 12rem;
    color: var(--viqua-bg-alt);
    opacity: 0.3;
    z-index: 1;
    line-height: 1;
}

/* Goals Section */
.goals-section {
    margin-bottom: 64px;
    padding: 48px 0;
}

.section-header-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.header-icon {
    width: 56px;
    height: 56px;
    background: var(--viqua-navy);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.section-title-inline {
    font-size: 2rem;
    font-weight: 800;
    color: var(--viqua-navy);
    margin: 0;
    letter-spacing: -0.01em;
}

.goal-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--viqua-radius);
    padding: 32px 24px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.goal-card:hover {
    border-color: var(--viqua-navy);
    box-shadow: 0 8px 24px rgba(26, 40, 83, 0.12);
    transform: translateY(-4px);
}

.goal-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26, 40, 83, 0.08);
    line-height: 1;
}

.goal-icon {
    width: 56px;
    height: 56px;
    background: var(--viqua-navy);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.goal-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--viqua-text);
    margin: 0;
}

/* Strategies Section */
.strategies-section {
    background: var(--viqua-bg-alt);
    border-radius: var(--viqua-radius);
    padding: 48px;
    margin-top: 48px;
}

.strategies-header {
    display: flex;
    align-items: start;
    gap: 24px;
    margin-bottom: 40px;
}

.strategies-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0B6FA4 100%);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(26, 40, 83, 0.15);
}

.strategies-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--viqua-navy);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.strategies-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--viqua-muted);
    margin: 0;
    max-width: 700px;
}

.strategy-group {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--viqua-border);
    transition: all 0.3s ease;
}

.strategy-group:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.strategy-group-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.strategy-list li:last-child {
    border-bottom: none;
}

.strategy-list i {
    color: #0B6FA4;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.strategy-list span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--viqua-text);
}

.strategy-highlight {
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0D1B3A 100%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: start;
    gap: 20px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(26, 40, 83, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    color: #FFD700;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-us-hero {
        padding: 3rem 0 2.5rem;
    }

    .vision-mission-card {
        padding: 36px 28px;
        min-height: auto;
        margin-bottom: 24px;
    }

    .goals-section {
        padding: 32px 0;
        margin-bottom: 48px;
    }

    .strategies-section {
        padding: 32px 24px;
    }

    .strategies-header {
        flex-direction: column;
        gap: 16px;
    }

    .strategy-group {
        margin-bottom: 16px;
    }

    .strategy-highlight {
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .card-icon-bg {
        font-size: 8rem;
        right: -10px;
        bottom: -10px;
    }

    .goal-number {
        font-size: 2rem;
    }

    .section-header-inline {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }

    /* Mobile optimization for why-us hero title and typed text */
    .why-us-hero {
        padding: 2.5rem 1rem 2rem;
    }

    .why-us-hero-title {
        font-size: 1.75rem !important;
        line-height: 1.4;
        word-wrap: break-word;
        padding: 0 1rem;
        overflow-wrap: break-word;
    }

    .why-us-hero-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }

    #typed {
        display: inline !important;
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .why-us-hero-title {
        font-size: 1.5rem !important;
        padding: 0 0.5rem;
    }

    .why-us-hero-subtitle {
        font-size: 0.875rem;
    }
}

/* ----------------------------------------------------------
   9. PRODUCTS & SERVICES - Enhanced Design
   Featured card-based layout with modal interactions
   ---------------------------------------------------------- */

/* Main Service Cards */
.services-enhanced {
    background: var(--viqua-bg-alt);
}

.service-card {
    background: #fff;
    border-radius: var(--viqua-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--viqua-shadow);
    border: 1px solid var(--viqua-border);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--viqua-shadow-hover);
    border-color: var(--viqua-navy);
}

.service-card-featured {
    border-top: 4px solid var(--viqua-navy);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0B6FA4 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(26, 40, 83, 0.2);
}

.service-badge i {
    font-size: 0.875rem;
}

.service-badge-alt {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--viqua-navy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0B6FA4 100%);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(26, 40, 83, 0.15);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--viqua-navy);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-subtitle {
    display: inline-block;
    background: var(--viqua-bg-alt);
    color: var(--viqua-navy);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-description {
    color: var(--viqua-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--viqua-text);
    font-size: 0.9375rem;
}

.service-features i {
    color: #0B6FA4;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.btn-service-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--viqua-navy);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.btn-service-learn:hover {
    background: var(--viqua-navy-hover);
    transform: translateX(4px);
    color: #fff;
}

.btn-service-learn i {
    transition: transform 0.3s ease;
    font-size: 1.125rem;
}

.btn-service-learn:hover i {
    transform: translateX(4px);
}

/* Compact Service Cards */
.service-card-compact {
    background: #fff;
    border-radius: var(--viqua-radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--viqua-border);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-compact:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.compact-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--viqua-navy);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.compact-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 12px;
}

.compact-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--viqua-muted);
    margin: 0;
}

/* Services CTA Banner */
.services-cta-banner {
    background: linear-gradient(135deg, var(--viqua-blue) 0%, var(--viqua-navy) 100%);
    border-radius: var(--viqua-radius);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 32px rgba(11, 111, 164, 0.2);
}

.services-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.services-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

.services-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-services-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--viqua-navy);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.btn-services-cta:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: var(--viqua-navy);
    text-decoration: none !important;
}

.btn-services-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    background: transparent;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-services-cta-secondary:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: #FFFFFF !important;
    text-decoration: none !important;
}

@media (max-width: 991px) {
    .services-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .services-cta-content p {
        max-width: none;
    }

    .services-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-services-cta,
    .btn-services-cta-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* Video Showcase */
.video-showcase {
    background: #fff;
    border-radius: var(--viqua-radius);
    padding: 32px;
    box-shadow: var(--viqua-shadow);
    border: 1px solid var(--viqua-border);
}

.video-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.video-header i {
    font-size: 2rem;
    color: var(--viqua-navy);
}

.video-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin: 0;
}

.video-container {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    border-radius: 8px;
    max-height: 600px;
    object-fit: contain;
}

.video-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.video-play-btn:hover {
    opacity: 0.85;
}

.video-play-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.video-play-overlay i {
    font-size: 4rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.video-play-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-card {
        padding: 32px 24px;
        margin-bottom: 24px;
    }

    .service-card-compact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .service-badge {
        position: static;
        margin-bottom: 16px;
        align-self: flex-start;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .video-showcase {
        padding: 24px;
    }

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

/* ----------------------------------------------------------
   10. PARTNERS
   ---------------------------------------------------------- */
.partner-logo {
    transition: all 0.4s ease-in-out;
    filter: grayscale(30%);
    opacity: 0.85;
    padding: 12px;
}
.partner-logo:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* ----------------------------------------------------------
   11. TEAM & MENTORS (Premium Cards)
   ---------------------------------------------------------- */
.team .member {
    background: #fff;
    border-radius: var(--viqua-radius);
    box-shadow: var(--viqua-shadow);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--viqua-border);
}
.team .member:hover {
    transform: translateY(-4px);
    box-shadow: var(--viqua-shadow-hover);
}
.team .member h3 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.125rem;
    color: var(--viqua-navy);
}
.team .member h4 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.125rem;
    color: var(--viqua-navy);
}
.team .member span {
    display: block;
    font-size: 0.875rem;
    padding-bottom: 8px;
    font-weight: 500;
    color: var(--viqua-muted);
    position: relative;
}
.team .member span::after {
    background: var(--viqua-navy);
    opacity: 0.3;
}
.team .member p {
    font-size: 0.875rem;
    color: var(--viqua-muted);
    line-height: 1.6;
}
.team .member .pic {
    width: 140px;
    min-width: 140px;
    border-radius: 50%;
    overflow: hidden;
}

/* ----------------------------------------------------------
   12. GALLERY (Premium Tiles)
   ---------------------------------------------------------- */
.portfolio .portfolio-img {
    overflow: hidden;
    border-radius: var(--viqua-radius);
    border: 1px solid var(--viqua-border);
}
.portfolio .portfolio-img img {
    transition: transform 0.4s ease;
    border-radius: var(--viqua-radius);
}
.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}

/* ----------------------------------------------------------
   13. CONTACT SECTION
   ---------------------------------------------------------- */
.contact .info {
    border-top: 3px solid var(--viqua-navy);
    border-bottom: 3px solid var(--viqua-navy);
    border-radius: var(--viqua-radius);
    background: #fff;
    padding: 28px;
    box-shadow: var(--viqua-shadow);
}
.contact .info i {
    color: var(--viqua-navy);
    background: rgba(26, 40, 83, 0.08);
}
.contact .info h3 {
    padding: 0 0 0 60px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--viqua-navy);
}
.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--viqua-navy);
}
.contact .info p {
    padding: 0 0 10px 60px;
    color: var(--viqua-muted);
    font-size: 0.9375rem;
}
.contact .info address {
    padding: 0 0 10px 60px;
    color: var(--viqua-muted);
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.7;
}
.contact .info a {
    color: var(--viqua-navy);
    font-weight: 500;
}
.contact .info a:hover {
    color: var(--viqua-blue);
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--viqua-navy);
    color: #fff;
}

/* Contact form — with visible labels */
.contact .php-email-form {
    border-top: 3px solid var(--viqua-navy);
    border-bottom: 3px solid var(--viqua-navy);
    border-radius: var(--viqua-radius);
    background: #fff;
    padding: 28px;
    box-shadow: var(--viqua-shadow);
}
.contact .php-email-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--viqua-navy);
}
.contact .php-email-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--viqua-text);
    margin-bottom: 4px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 6px;
    border: 1px solid var(--viqua-border);
    font-size: 0.9375rem;
    padding: 10px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--viqua-navy);
    box-shadow: 0 0 0 3px rgba(26, 40, 83, 0.15);
    outline: none;
}
.contact .php-email-form input {
    height: 46px;
}

/* Submit button — WCAG AA contrast */
.viqua-btn-submit,
.contact .php-email-form button[type=submit] {
    background: var(--viqua-navy);
    border: 2px solid var(--viqua-navy);
    padding: 12px 36px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.viqua-btn-submit:hover,
.contact .php-email-form button[type=submit]:hover {
    background: var(--viqua-navy-hover);
    border-color: var(--viqua-navy-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 40, 83, 0.25);
}
.viqua-btn-submit:disabled,
.contact .php-email-form button[type=submit]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form status messages */
.contact .php-email-form .sent-message {
    background: var(--viqua-success);
    color: #fff;
    padding: 16px;
    border-radius: 6px;
    font-weight: 600;
}
.contact .php-email-form .error-message {
    background: var(--viqua-error);
    color: #fff;
    padding: 16px;
    border-radius: 6px;
    font-weight: 600;
}

/* ----------------------------------------------------------
   14. FOOTER (Premium — Corporate)
   ---------------------------------------------------------- */
#footer {
    background: var(--viqua-navy);
    font-size: 0.875rem;
}
#footer .footer-top {
    padding: 48px 0 24px;
    background: #fff;
    border-top: 1px solid var(--viqua-border);
}
#footer .footer-top h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 16px;
}
#footer .footer-top h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 16px;
}
#footer .footer-top p {
    color: var(--viqua-muted);
    line-height: 1.7;
}
#footer .footer-top address {
    color: var(--viqua-muted);
    font-style: normal;
    line-height: 1.8;
}
#footer .footer-top a {
    color: var(--viqua-navy);
}
#footer .footer-top a:hover {
    color: var(--viqua-blue);
}
#footer .footer-top .social-links a {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--viqua-navy);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
#footer .footer-top .social-links a:hover {
    background: var(--viqua-blue);
    transform: translateY(-2px);
}
#footer .footer-bottom {
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#footer .copyright {
    text-align: center;
    float: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.6;
}

#footer .copyright i {
    font-size: 0.875rem;
    opacity: 0.8;
}

#footer .copyright strong {
    color: #fff;
    font-weight: 600;
}

.footer-divider {
    opacity: 0.4;
    font-weight: 300;
}

.footer-rights {
    opacity: 0.8;
}

.footer-developed-by {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-developed-by i.bi-code-slash {
    font-size: 1rem;
    opacity: 0.7;
}

.developed-label {
    opacity: 0.9;
}

.cortek-link {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.cortek-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.cortek-link i {
    font-size: 0.75rem;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.cortek-link:hover i {
    transform: translateX(2px) translateY(-2px);
}

/* ----------------------------------------------------------
   15. MODALS (Premium — Accessible)
   ---------------------------------------------------------- */
.modal-content {
    border-radius: var(--viqua-radius);
    border: none;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.modal-header {
    border-bottom: 1px solid var(--viqua-border);
    padding: 20px 24px;
}
.modal-title {
    font-weight: 700;
    color: var(--viqua-navy);
}
.modal-body {
    color: var(--viqua-text);
    line-height: 1.7;
}
.modal-body p {
    max-width: none;
    font-size: 0.9375rem;
    color: var(--viqua-muted);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   16. TYPOGRAPHY REFINEMENTS
   ---------------------------------------------------------- */
p {
    max-width: 72ch;
    line-height: 1.7;
}

/* Ensure section body text contrast */
.about p,
.services p,
.team p,
.contact p,
section p {
    color: var(--viqua-muted);
}

/* ----------------------------------------------------------
   17. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 991px) {
    .why-us .content {
        padding: 40px 20px 0;
    }
    .why-us .img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .team .member {
        padding: 20px;
    }
    .team .member .pic {
        width: 100px;
        min-width: 100px;
    }
    .team .member .member-info {
        padding-left: 16px;
    }
    .contact .info,
    .contact .php-email-form {
        padding: 20px;
    }
    #footer .footer-bottom {
        padding: 20px 16px;
    }

    .footer-credits-wrapper {
        gap: 10px;
    }

    #footer .copyright {
        float: none;
        text-align: center;
        font-size: 0.8125rem;
        gap: 6px;
    }

    .footer-developed-by {
        font-size: 0.75rem;
        gap: 4px;
    }

    .cortek-link {
        padding: 2px 6px;
    }
}

/* ----------------------------------------------------------
   18. REDUCED MOTION (Accessibility — WCAG 2.3.3)
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .services .icon-box:hover,
    .team .member:hover,
    .partner-logo:hover,
    .portfolio .portfolio-item:hover .portfolio-img img {
        transform: none;
    }
}

/* ----------------------------------------------------------
   19. TYPED.JS CURSOR (retained from original)
   ---------------------------------------------------------- */
.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* ----------------------------------------------------------
   20. BACK TO TOP (Accessible)
   ---------------------------------------------------------- */
.back-to-top {
    background: var(--viqua-navy);
    border-radius: 8px;
    width: 44px;
    height: 44px;
}
.back-to-top:hover {
    background: var(--viqua-blue);
}
.back-to-top i {
    color: #fff;
}

/* ----------------------------------------------------------
   21. MISCELLANEOUS FIXES
   ---------------------------------------------------------- */
/* Ensure video modal fills viewport properly */
#promoVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: black;
}
@media (max-width: 768px) {
    #promoVideo {
        width: auto;
        height: 100vh;
    }
}

/* GLightbox video fill */
.glightbox-container .gslide-video video {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
    background: black;
}

/* Dynamic copyright year */
#copyrightYear {
    /* Updated via JS to current year */
}

/* ============================================================
   22. TEAM SECTION - Enhanced Card Layout
   ============================================================ */
.team-enhanced {
    padding: 80px 0;
}

.team-card {
    background: #fff;
    border-radius: var(--viqua-radius);
    box-shadow: var(--viqua-shadow);
    overflow: hidden;
    transition: all var(--viqua-transition);
    height: 100%;
    position: relative;
}

.team-card-featured {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border: 2px solid var(--viqua-navy);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--viqua-shadow-hover);
}

.team-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1A2853;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.team-badge i {
    font-size: 0.875rem;
}

.team-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--viqua-transition);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(26, 40, 83, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--viqua-transition);
}

.team-card:hover .team-image-overlay {
    opacity: 1;
    transform: scale(1);
}

.team-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--viqua-blue);
    margin-bottom: 16px;
    display: block;
}

.team-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--viqua-navy) 0%, var(--viqua-blue) 100%);
    border-radius: 2px;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--viqua-text);
    flex: 1;
}

.team-icon-bg {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 4rem;
    color: rgba(26, 40, 83, 0.04);
    pointer-events: none;
}

/* ============================================================
   23. MENTORS SECTION - Enhanced Card Layout
   ============================================================ */
.mentors-enhanced {
    padding: 80px 0;
}

.mentor-card {
    background: #fff;
    border-radius: var(--viqua-radius);
    box-shadow: var(--viqua-shadow);
    overflow: hidden;
    transition: all var(--viqua-transition);
    height: 100%;
    border: 1px solid rgba(26, 40, 83, 0.08);
}

.mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--viqua-shadow-hover);
    border-color: var(--viqua-blue);
}

.mentor-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
}

.mentor-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--viqua-transition);
}

.mentor-card:hover .mentor-image {
    transform: scale(1.08);
}

.mentor-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 40, 83, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mentor-flag i {
    font-size: 0.875rem;
}

.mentor-content {
    padding: 24px;
}

.mentor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mentor-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--viqua-blue);
    margin-bottom: 16px;
    display: block;
    line-height: 1.4;
}

.mentor-divider {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--viqua-navy) 0%, var(--viqua-blue) 100%);
    border-radius: 2px;
    margin-bottom: 14px;
}

.mentor-org {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--viqua-text);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.mentor-org i {
    color: var(--viqua-navy);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.mentor-location {
    font-size: 0.8125rem;
    color: var(--viqua-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.mentor-location i {
    color: var(--viqua-blue);
    font-size: 0.875rem;
}

/* ============================================================
   24. RESPONSIVE ADJUSTMENTS - Team & Mentors
   ============================================================ */
@media (max-width: 991px) {
    .team-enhanced,
    .mentors-enhanced {
        padding: 60px 0;
    }

    .team-name,
    .mentor-name {
        font-size: 1.125rem;
    }

    .team-role,
    .mentor-role {
        font-size: 0.8125rem;
    }

    .team-bio {
        font-size: 0.875rem;
    }

    .team-icon-bg {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .team-card,
    .mentor-card {
        margin-bottom: 20px;
    }

    .team-content,
    .mentor-content {
        padding: 20px;
    }

    .team-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.6875rem;
    }

    .mentor-flag {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
    }
}

/* ============================================================
   25. GALLERY SECTION - Enhanced UX/UI with Lightbox Slideshow
   ============================================================ */
/* Gallery enhanced layout */
.gallery-enhanced {
    padding: 80px 0;
}

.gallery-item {
    height: 100%;
    transition: transform var(--viqua-transition);
}

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

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    border-radius: var(--viqua-radius);
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
    box-shadow: var(--viqua-shadow);
    transition: all var(--viqua-transition);
}

.gallery-item:hover .gallery-img-wrapper {
    box-shadow: var(--viqua-shadow-hover);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(11, 111, 164, 0) 0%,
        rgba(11, 111, 164, 0.3) 50%,
        rgba(11, 111, 164, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--viqua-transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery lightbox button (round icon in overlay) */
.gallery-overlay .gallery-lightbox {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--viqua-navy);
    font-size: 1.75rem;
    text-decoration: none;
    transform: scale(0.8);
    transition: all var(--viqua-transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-lightbox {
    transform: scale(1);
    background: #fff;
}

.gallery-overlay .gallery-lightbox:hover {
    background: var(--viqua-blue);
    color: #fff;
    transform: scale(1.1);
}

.gallery-overlay .gallery-lightbox i {
    transition: transform var(--viqua-transition);
}

.gallery-overlay .gallery-lightbox:hover i {
    transform: rotate(15deg);
}

/* Gallery responsive */
@media (max-width: 991px) {
    .gallery-enhanced {
        padding: 60px 0;
    }

    .gallery-img-wrapper {
        padding-top: 70%;
    }

    .gallery-overlay .gallery-lightbox {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .gallery-enhanced {
        padding: 50px 0;
    }

    .gallery-img-wrapper {
        padding-top: 85%;
    }

    .gallery-overlay .gallery-lightbox {
        width: 50px;
        height: 50px;
        font-size: 1.375rem;
    }

    /* Show overlay by default on mobile for better accessibility */
    .gallery-overlay {
        opacity: 0.7;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
}

/* ============================================================
   27. TEAM SECTION - Single Row Layout Adjustments
   ============================================================ */
/* Optimize team cards for single-row display on large screens */
@media (min-width: 992px) {
    .team-enhanced .row {
        max-width: 100%;
    }

    .team-card {
        min-width: 0; /* Prevent card from growing too large */
    }

    /* Adjust image aspect ratio for narrower cards */
    .team-image-wrapper {
        padding-top: 100%; /* Keep square ratio */
    }

    /* Reduce font sizes slightly for better fit */
    .team-name {
        font-size: 1.125rem;
    }

    .team-role {
        font-size: 0.8125rem;
        line-height: 1.3;
    }

    .team-bio {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* Adjust content padding for narrower cards */
    .team-content {
        padding: 20px 16px;
    }

    /* Make icon backgrounds smaller */
    .team-icon-bg {
        font-size: 3rem;
        bottom: 12px;
        right: 12px;
    }
}

/* Larger screens - give more breathing room */
@media (min-width: 1400px) {
    .team-name {
        font-size: 1.25rem;
    }

    .team-role {
        font-size: 0.875rem;
    }

    .team-bio {
        font-size: 0.9375rem;
    }

    .team-content {
        padding: 24px 20px;
    }

    .team-icon-bg {
        font-size: 3.5rem;
    }
}

/* ============================================================
   28. CONTACT SECTION — Refactored Card Layout
   (Styles here because Blazor scoped CSS is not bundled)
   ============================================================ */

/* --- Contact Detail Cards Row --- */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 16px;
}

.contact-detail-card {
    background: #FFFFFF;
    border: 1px solid var(--viqua-border);
    border-radius: var(--viqua-radius);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--viqua-shadow);
}

.contact-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--viqua-shadow-hover);
    border-color: var(--viqua-blue);
    text-decoration: none !important;
    color: inherit;
}

a.contact-detail-card:hover {
    text-decoration: none !important;
}

.contact-detail-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--viqua-blue), var(--viqua-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(11, 111, 164, 0.2);
}

.contact-detail-icon i {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.contact-detail-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--viqua-navy);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.contact-detail-card span {
    font-size: 0.875rem;
    color: var(--viqua-muted);
    line-height: 1.5;
    display: block;
}

/* --- Connect Card --- */
.contact-connect-card {
    background: linear-gradient(135deg, var(--viqua-navy) 0%, #0D1B3A 100%);
    border-radius: var(--viqua-radius);
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(26, 40, 83, 0.2);
}

.contact-connect-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-connect-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: none;
}

.contact-social-row {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.contact-social-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.contact-social-btn i {
    font-size: 1.125rem;
}

/* --- Map Card --- */
.contact-map-card {
    border-radius: var(--viqua-radius);
    overflow: hidden;
    box-shadow: var(--viqua-shadow);
    border: 1px solid var(--viqua-border);
    height: 100%;
    min-height: 300px;
    background: #FFFFFF;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}

.contact-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    height: 100%;
    color: var(--viqua-muted);
    border: 2px dashed var(--viqua-border);
    border-radius: var(--viqua-radius);
    margin: 16px;
}

.contact-map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--viqua-blue);
    opacity: 0.5;
}

.contact-map-placeholder p {
    margin: 0;
    color: var(--viqua-muted);
    font-size: 0.875rem;
}

/* --- Contact Responsive --- */
@media (max-width: 991px) {
    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-connect-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .contact-detail-card {
        padding: 24px 20px;
    }

    .contact-social-row {
        flex-direction: column;
    }

    .contact-social-btn {
        justify-content: center;
    }
}
