/* ==========================================================================
   Laminar Flow Ventures Limited - Master Design System & Stylesheet
   Theme: Full Android Mobile Scaling, Responsive Tab Auto-Fitting & Seamless Blending
   ========================================================================== */

:root {
    /* Base Light Canvas Background System */
    --bg-main: #FFFFFF;
    --bg-surface: #F8FAFC;
    --bg-surface-elevated: #F1F5F9;
    --bg-hydro-ice: #F0F7FF;

    /* Authentic Laminar Flow Logo Colors */
    --lfv-hydro-blue: #0052CC;        /* Water Primary from Logo */
    --lfv-ocean-cyan: #0077FF;        /* Water Secondary from Logo */
    --lfv-eco-green: #00A551;         /* Irrigation Leaf Green from Logo */
    --lfv-solar-amber: #F6A235;       /* Solar Warm Gold from Logo */
    --lfv-solar-gold: #D97706;        /* Solar Primary from Logo */
    --lfv-navy-dark: #0F172A;         /* Heavy Engineering Charcoal Navy */

    --primary-cyan: var(--lfv-ocean-cyan);
    --primary-sapphire: var(--lfv-hydro-blue);
    --accent-teal: #00B8D9;
    --accent-amber: var(--lfv-solar-amber);
    --accent-emerald: var(--lfv-eco-green);
    --accent-rose: #DB2777;
    
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-dim: #94A3B8;
    
    --border-subtle: #E2E8F0;
    --border-glass: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(0, 119, 255, 0.3);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Variables */
    --container-max: 1240px;
    --nav-height: 96px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 119, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 40%, rgba(0, 165, 81, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 85%, rgba(246, 162, 53, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

/* Multi-Tone Brand Gradient Text from Logo */
.gradient-text {
    background: linear-gradient(135deg, var(--lfv-ocean-cyan) 0%, var(--lfv-eco-green) 50%, var(--lfv-solar-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FLOATING WHATSAPP ACTION BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
    z-index: 1500;
    transition: all var(--transition-smooth);
    touch-action: manipulation;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
    color: #FFFFFF;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #0F172A;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* TOP UTILITY ANNOUNCEMENT BAR */
.top-bar {
    background: var(--lfv-navy-dark);
    color: #F8FAFC;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    color: #94A3B8;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--lfv-ocean-cyan);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social-link {
    color: #94A3B8;
    font-size: 1.05rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.top-social-link:hover {
    color: #FFFFFF;
    background: var(--lfv-ocean-cyan);
    transform: scale(1.1);
}

/* LOGO IMAGE & BRAND STYLES */
.brand-logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-img {
    height: 72px;
    max-height: 76px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 3px 6px;
    box-shadow: 0 3px 12px rgba(0, 82, 204, 0.15);
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-logo-img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.25);
}

.brand-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-title-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.brand-title-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--lfv-ocean-cyan);
    text-transform: uppercase;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

/* FOOTER SOCIAL ROW & BUTTONS */
.footer-social-row {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-smooth);
    touch-action: manipulation;
}

.social-icon-btn.whatsapp:hover { background: #25D366; color: #FFFFFF; border-color: #25D366; transform: translateY(-3px); }
.social-icon-btn.tiktok:hover { background: #000000; color: #FFFFFF; border-color: #333333; transform: translateY(-3px); }
.social-icon-btn.github:hover { background: #333333; color: #FFFFFF; border-color: #666666; transform: translateY(-3px); }

/* REAL PROJECT IMAGE & SLIDESHOW CAROUSEL STYLES */
.slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 380px;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slideshow-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
    touch-action: manipulation;
}

.slideshow-arrow:hover {
    background: var(--lfv-ocean-cyan);
    color: #FFFFFF;
    border-color: var(--lfv-ocean-cyan);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-arrow.prev { left: 14px; }
.slideshow-arrow.next { right: 14px; }

.about-real-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.about-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
    color: #F8FAFC;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 28px 18px 14px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    display: block;
    text-align: left;
    letter-spacing: 0.01em;
    line-height: 1.45;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.about-img-caption span {
    color: #F8FAFC;
    font-weight: 500;
}

.portfolio-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.portfolio-card:hover .portfolio-real-img {
    transform: scale(1.06);
}

.equipment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    gap: 12px;
}

.equipment-row strong {
    display: block;
    font-size: 0.88rem;
}

.equipment-row span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* UI Cards & Panels */
.glass-card, .glass-panel {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all var(--transition-smooth);
    max-width: 100%;
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 119, 255, 0.12);
    transform: translateY(-4px);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

.section {
    padding: 70px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--lfv-ocean-cyan);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.3rem);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto;
}

/* EXECUTIVE & PROFESSIONAL BUTTON DESIGN SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.015em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    touch-action: manipulation;
    min-height: 44px;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--lfv-ocean-cyan) 0%, var(--lfv-hydro-blue) 100%);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 14px rgba(0, 119, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 255, 0.4);
    background: linear-gradient(135deg, #1A88FF 0%, #0044B3 100%);
    color: #FFFFFF;
}

.btn-glass {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-glass:hover {
    background: #F8FAFC;
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn-outline {
    background: #FFFFFF;
    border: 1.5px solid var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 2px 8px rgba(0, 119, 255, 0.08);
}

.btn-outline:hover {
    background: #E0F2FE;
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 119, 255, 0.2);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 0.98rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.84rem;
    border-radius: 8px;
    min-height: 38px;
}

.btn-block {
    width: 100%;
}

.btn-text {
    background: transparent;
    color: var(--primary-cyan);
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.btn-text:hover {
    background: #E0F2FE;
    color: var(--primary-sapphire);
    transform: translateX(3px);
}

/* COMPACT PROVEN RECORDS BANNER */
.records-banner-section {
    padding: 50px 0;
    background: #F8FAFC;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.records-banner-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    flex-wrap: wrap;
}

.records-banner-content {
    text-align: left;
    max-width: 650px;
}

.records-banner-content h3 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-top: 4px;
}

/* Header & Navbar */
.main-header, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.main-header.scrolled, .navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    height: 82px;
}

.main-header.nav-hidden, .navbar.nav-hidden {
    transform: translateY(-110%) !important;
}

.mobile-toggle {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.toggle-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.8) !important;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    margin-left: auto;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--lfv-ocean-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lfv-ocean-cyan), var(--lfv-eco-green));
    transition: width var(--transition-fast);
    border-radius: 2px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
    touch-action: manipulation;
}

/* Hero Section with Dynamic Background Slideshow */
.hero {
    position: relative;
    min-height: 85vh;
    margin-top: var(--nav-height);
    padding-top: 40px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #0B132B;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 7s ease-out, visibility 1.4s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Multi-layer Dark Contrast & Aesthetic Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.82) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(10, 30, 60, 0.86) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero .badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: clamp(4px, 1.8vw, 16px);
    padding: clamp(4px, 1.2vw, 8px) clamp(8px, 2.5vw, 24px);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    font-size: clamp(0.55rem, 2.1vw, 0.82rem);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: clamp(0.01em, 0.1vw, 0.04em);
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: clamp(2px, 0.8vw, 6px);
    white-space: nowrap !important;
    flex-shrink: 0;
}

.badge-dot {
    width: clamp(4px, 1vw, 8px);
    height: clamp(4px, 1vw, 8px);
    background-color: var(--lfv-ocean-cyan);
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-icon {
    font-size: clamp(0.56rem, 2vw, 0.88rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon.leaf-icon {
    color: #22C55E;
}

.badge-icon.sun-icon {
    color: #F59E0B;
}

.badge-icon.wrench-icon {
    color: #CBD5E1;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    line-height: 1.18;
}

.hero-subtitle {
    font-size: clamp(0.92rem, 2.4vw, 1.18rem);
    color: #E2E8F0;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Slideshow Indicators (Hidden per design request) */
.hero-slide-dots,
.slideshow-dots,
.product-slideshow-dots {
    display: none !important;
}

/* TRUST BAR SECTION */
.trust-bar-section {
    position: relative;
    z-index: 20;
    margin-top: -24px;
    margin-bottom: 24px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-icon.cyan { background: #E0F2FE; color: var(--lfv-ocean-cyan); }
.trust-icon.emerald { background: #DCFCE7; color: var(--lfv-eco-green); }
.trust-icon.amber { background: #FEF3C7; color: var(--lfv-solar-amber); }
.trust-icon.rose { background: #FCE7F3; color: var(--accent-rose); }

.trust-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.trust-item p {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* Feature Icon Color Variants matching logo pillars */
.feature-icon.cyan { background: #E0F2FE; color: var(--lfv-ocean-cyan); }
.feature-icon.amber { background: #FEF3C7; color: var(--lfv-solar-amber); }
.feature-icon.emerald { background: #DCFCE7; color: var(--lfv-eco-green); }

/* Service Icon Color Variants */
.service-icon-wrapper.amber { background: #FEF3C7; color: var(--lfv-solar-amber); }
.service-icon-wrapper.cyan { background: #E0F2FE; color: var(--lfv-ocean-cyan); }
.service-icon-wrapper.emerald { background: #DCFCE7; color: var(--lfv-eco-green); }

/* Service Pillar Custom Card Borders */
.service-card.pillar-works { border-top: 4px solid var(--lfv-eco-green); }
.service-card.pillar-designs { border-top: 4px solid var(--lfv-ocean-cyan); }
.service-card.pillar-sales { border-top: 4px solid var(--lfv-solar-amber); }

/* About Section */
.about-image-wrapper {
    position: relative;
}

.feature-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* TURNKEY PROJECT STORYLINE STYLES */
.project-story-section {
    background: #F8FAFC;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 70px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.story-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
}

.story-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0B132B;
}

.story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.story-card:hover .story-img-wrapper img {
    transform: scale(1.06);
}

.story-step-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 19, 43, 0.85);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

.story-content {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-content h3 {
    font-size: 1.02rem;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.35;
    font-weight: 700;
}

.story-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Services Cards */
.service-card {
    padding: 28px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.service-card.highlighted {
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 35px rgba(0, 119, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(90deg, var(--lfv-ocean-cyan), var(--lfv-eco-green));
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.service-bullets {
    list-style: none;
    margin-bottom: 20px;
    margin-top: auto;
}

.service-bullets li {
    font-size: 0.83rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets i {
    color: var(--primary-cyan);
    font-size: 0.75rem;
}

/* PRODUCTS / EQUIPMENT SALES SHOWCASE */
.product-card {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #E0F2FE;
    color: var(--lfv-ocean-cyan);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
}

.product-badge.emerald { background: #DCFCE7; color: var(--lfv-eco-green); }
.product-badge.amber { background: #FEF3C7; color: var(--lfv-solar-amber); }
.product-badge.rose { background: #FCE7F3; color: var(--accent-rose); }

.product-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.product-icon.cyan { background: #E0F2FE; color: var(--lfv-ocean-cyan); }
.product-icon.emerald { background: #DCFCE7; color: var(--lfv-eco-green); }
/* PRODUCT REAL IMAGE & CARD SLIDESHOW STYLES */
.product-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    background: #F8FAFC;
    border: 1px solid var(--border-subtle);
}

.product-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

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

.product-slideshow-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.product-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
    color: #F8FAFC;
    font-size: 0.76rem;
    font-weight: 500;
    padding: 16px 10px 8px;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.product-slideshow-dots {
    position: absolute;
    bottom: 34px;
    right: 10px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.product-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-dot.active {
    background: var(--lfv-solar-amber);
    width: 18px;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.product-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex: 1;
}

.product-specs {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--lfv-ocean-cyan);
    background: #F8FAFC;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    border: 1px solid var(--border-subtle);
}

/* Responsive Portfolio Filters Grid */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    width: 100%;
}

.filter-btn {
    background: #F1F5F9;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    touch-action: manipulation;
    min-height: 42px;
}

.filter-btn:hover, .filter-btn.active {
    background: #E0F2FE;
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.portfolio-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.portfolio-thumb {
    height: 170px;
    position: relative;
    overflow: hidden;
    background: #09131F;
}

.thumb-graphic {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-smooth);
}

.portfolio-card:hover .thumb-graphic {
    transform: scale(1.08);
}

.category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFFFFF;
    color: var(--primary-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.portfolio-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-body h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.portfolio-body p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.portfolio-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--primary-cyan);
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;
}

/* Contact Section */
.contact {
    background: #F8FAFC;
}

.contact-info {
    padding-right: 10px;
}

.contact-methods {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.method-icon.cyan { background: #E0F2FE; color: var(--lfv-ocean-cyan); }
.method-icon.emerald { background: #DCFCE7; color: var(--lfv-eco-green); }
.method-icon.amber { background: #FEF3C7; color: var(--lfv-solar-amber); }

.method-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
}

.method-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.link-glow {
    color: var(--primary-cyan);
    word-break: break-all;
    font-weight: 600;
}

.link-glow:hover {
    text-decoration: underline;
}

.contact-form-card {
    padding: 28px 22px;
    background: #FFFFFF;
}

.contact-form-card h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-main);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 119, 255, 0.15);
    background: #FFFFFF;
}

/* Footer */
.footer {
    background: var(--lfv-navy-dark);
    color: #F8FAFC;
    padding: 48px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-top: 12px;
    max-width: 260px;
}

.footer-brand .brand-name {
    color: #FFFFFF;
}

.footer-links h4 {
    font-size: 0.92rem;
    margin-bottom: 14px;
    color: #FFFFFF;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--lfv-ocean-cyan);
}

.footer-links p {
    font-size: 0.83rem;
    color: #94A3B8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748B;
}

/* Modals & Toasts */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 92%;
    max-width: 580px;
    padding: 28px 22px;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    background: #FFFFFF;
    border-radius: var(--radius-md);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all var(--transition-fast);
    touch-action: manipulation;
}

.modal-close:hover {
    background: #E0F2FE;
    color: var(--lfv-ocean-cyan);
    border-color: var(--lfv-ocean-cyan);
    transform: scale(1.1);
}

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0F172A;
    border: 1px solid var(--primary-cyan);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 119, 255, 0.3);
    z-index: 3000;
    opacity: 0;
    transition: all var(--transition-smooth);
    font-size: 0.88rem;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
}

/* ==========================================================================
   ANDROID & MOBILE RESPONSIVE BREAKPOINTS (PERFECT SCALING ON ALL SCREENS)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .top-bar-right { display: flex; gap: 8px; }
}

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-header, .navbar {
        top: 0 !important;
        height: 72px !important;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    }
    .top-bar { display: none !important; }

    .nav-container {
        padding: 0 16px;
    }

    .hero {
        min-height: 90vh !important;
        min-height: 90svh !important;
        min-height: 90dvh !important;
        margin-top: 72px !important;
        padding-top: 26px !important; /* ~1 inch below header bar having the logo */
        padding-bottom: 40px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(11, 19, 43, 0.78) 0%, rgba(15, 23, 42, 0.50) 45%, rgba(10, 25, 50, 0.78) 100%) !important;
    }

    .hero-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Responsive Mobile Tab Container Auto-Fitting */
    .portfolio-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        width: 100%;
        margin-bottom: 20px;
    }

    .filter-btn {
        flex: 1 1 auto;
        padding: 8px 14px;
        font-size: 0.8rem;
        text-align: center;
        min-height: 40px;
        max-width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 62px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 20px 24px;
        gap: 6px;
        transform: translateY(-150%);
        transition: transform var(--transition-smooth);
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        z-index: 999;
    }
    
    .nav-menu.active { 
        transform: translateY(0); 
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 0.98rem;
        border-radius: var(--radius-sm);
        display: block;
        width: 100%;
    }

    .nav-link:hover, .nav-link.active {
        background: #F1F5F9;
        color: var(--lfv-ocean-cyan);
    }

    .nav-link::after {
        display: none;
    }

    .mobile-toggle { 
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: var(--radius-sm);
        background: #F1F5F9;
    }

    .nav-actions .btn { display: none; }
    .trust-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .whatsapp-float { 
        bottom: calc(16px + env(safe-area-inset-bottom, 0px)); 
        right: calc(16px + env(safe-area-inset-right, 0px)); 
        width: 52px; 
        height: 52px; 
        font-size: 1.65rem; 
    }
    
    .hero .badge-pill, .badge-pill { 
        font-size: clamp(0.52rem, 2.1vw, 0.74rem) !important; 
        padding: 4px clamp(8px, 2vw, 16px) !important;
        gap: clamp(4px, 1.4vw, 10px) !important;
        margin-top: 0 !important;
        margin-bottom: 14px !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        width: max-content !important;
    }

    .hero-title {
        margin-bottom: 12px !important;
    }

    .hero-subtitle {
        margin-bottom: 18px !important;
    }
}

@media (max-width: 992px) {
    .story-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .story-grid { grid-template-columns: 1fr; }
    .story-img-wrapper { height: 190px; }
    .header-logo-img { height: 52px; max-height: 56px; padding: 2px 4px; }
    .brand-title-main { font-size: 1.1rem; }
    .brand-title-sub { font-size: 0.7rem; }
    .brand-logo-wrapper { gap: 8px; }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .section { padding: 44px 0; }
    
    .hero {
        min-height: 92vh !important;
        min-height: 92svh !important;
        min-height: 92dvh !important;
        margin-top: 72px !important;
        padding-top: 24px !important; /* exactly ~1 inch below the header logo bar */
        padding-bottom: 36px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .hero-content {
        padding: 0 6px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .hero .badge-pill, .badge-pill { 
        font-size: clamp(0.48rem, 2.15vw, 0.66rem) !important; 
        letter-spacing: 0 !important; 
        padding: 4px clamp(6px, 1.8vw, 12px) !important;
        gap: clamp(3px, 1.3vw, 7px) !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        width: max-content !important;
        max-width: 100% !important;
        border-radius: 30px !important;
    }

    .badge-item {
        gap: 3px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .badge-dot {
        width: 5px !important;
        height: 5px !important;
    }

    .badge-icon {
        font-size: clamp(0.50rem, 2vw, 0.70rem) !important;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7.5vw, 2.35rem) !important;
        margin-bottom: 12px !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
        padding: 0 4px !important;
    }

    .portfolio-filters { flex-direction: column; align-items: stretch; }
    .filter-btn { width: 100%; }
    .equipment-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .contact-form-card { padding: 20px 14px; }
}

@media (max-width: 360px) {
    .container { padding: 0 10px; }
    .hero .badge-pill, .badge-pill {
        gap: 2.5px !important;
        padding: 3px 5px !important;
        font-size: 0.44rem !important;
    }
    .badge-item {
        gap: 2px !important;
    }
    .badge-dot {
        width: 4px !important;
        height: 4px !important;
    }
    .badge-icon {
        font-size: 0.46rem !important;
    }
    .hero-title {
        font-size: 1.6rem !important;
    }
}

/* SUBPAGE HERO BANNER & BREADCRUMB STYLES */
.page-banner {
    padding-top: calc(var(--nav-height) + 50px);
    padding-bottom: 50px;
    background: linear-gradient(135deg, #0B132B 0%, #1E293B 100%);
    color: #FFFFFF;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.page-banner .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #67E8F9;
    border-color: rgba(255, 255, 255, 0.2);
}

.page-banner .section-title {
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 14px;
}

.page-banner .section-subtitle {
    color: #CBD5E1;
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.breadcrumb-nav {
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #94A3B8;
}

.breadcrumb-nav a {
    color: #67E8F9;
    transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: #FFFFFF;
}

.breadcrumb-nav span.separator {
    color: #64748B;
}

.subpage-section {
    padding: 70px 0;
}

.content-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.section-cta-strip {
    background: #0B132B;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.section-cta-strip h2 {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.section-cta-strip p {
    color: #94A3B8;
    max-width: 650px;
    margin: 0 auto 24px;
    font-size: 1rem;
}
