/* ==========================================================================
   ELOGER GROUP - OFFICIAL DESIGN SYSTEM STYLESHEET
   ========================================================================== */

/* 1. Design Tokens & Core Variables */
:root {
    /* Color Palette */
    --navy: #003871;
    --steel: #455C78;
    --interactive: #034E99;
    --pearl: #E3E3E7;
    --white: #FFFFFF;
    
    /* Utility States */
    --success: #1B5E20;
    --warning: #E65100;
    --error: #B71C1C;
    --info: #0D47A1;

    /* Typography */
    --font-sans: 'Noto Sans JP', sans-serif;
    
    /* Structure & Spacing */
    --max-width: 1200px;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Fluid Vertical Padding */
    --section-padding: 96px;
    --element-gap: 24px;
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 64px;
        --element-gap: 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 48px;
        --element-gap: 16px;
    }
}

/* 2. Standard Resets & Base Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--steel);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Focus Indicator Styles (Accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--interactive) !important;
    outline-offset: 4px !important;
    box-shadow: none !important;
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* 3. Typography Hierarchy Classes */
h1, h2, h3, h4 {
    color: var(--navy);
    font-weight: 900;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

.body-lg {
    font-size: 1.125rem;
    line-height: 1.6;
}

.body-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.caption {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.4;
}

.uppercase-track {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

.section {
    padding: var(--section-padding) 0;
}

/* 5. Sticky Navigation Header */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 120px;
    display: flex;
    align-items: center;
    transition: height var(--transition), background-color var(--transition), border var(--transition);
    background-color: transparent;
}

.header-nav.scrolled {
    height: 90px;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--pearl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: transform var(--transition), height var(--transition);
}

.header-nav.scrolled .logo-img {
    height: 68px;
}

.logo-link:hover .logo-img {
    transform: scale(1.02);
}

/* Logo Swap States */
.header-nav .logo-white { display: block; }
.header-nav .logo-color { display: none; }

.header-nav.scrolled .logo-white { display: none; }
.header-nav.scrolled .logo-color { display: block; }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.937rem;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
    padding: 8px 0;
}

.header-nav.scrolled .nav-link {
    color: var(--steel);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--interactive);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.header-nav.scrolled .nav-link:hover {
    color: var(--interactive);
}

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

.header-nav.scrolled .nav-link.active {
    color: var(--navy);
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--white);
}

.header-nav.scrolled .lang-selector {
    color: var(--steel);
}

.lang-btn {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    opacity: 1;
}

/* Header Button */
.header-cta {
    background-color: var(--white);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color var(--transition), color var(--transition);
}

.header-nav.scrolled .header-cta {
    background-color: var(--navy);
    color: var(--white);
}

.header-cta:hover {
    background-color: var(--interactive);
    color: var(--white);
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.header-nav.scrolled .hamburger-line {
    background-color: var(--navy);
}

/* Responsive Mobile Navigation Overlay */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        gap: 24px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--navy) !important;
        font-size: 1.25rem;
        width: 100%;
    }

    .header-cta {
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }

    /* Transform hamburger to X */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .header-nav.scrolled .mobile-menu-toggle.active .hamburger-line {
        background-color: var(--navy);
    }
    
    /* Force white hamburger active state on dark navbar */
    .mobile-menu-toggle.active .hamburger-line {
        background-color: var(--navy) !important;
    }
}

/* 6. Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.937rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

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

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

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

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

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

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

.btn-ghost-dark {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-ghost-dark:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-ghost-navy {
    background-color: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
}

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

.btn-text {
    background: none;
    border: none;
    color: var(--interactive);
    padding: 8px 0;
    font-weight: 700;
    font-size: 0.937rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color var(--transition);
}

.btn-text:hover {
    color: var(--navy);
}

.btn-text svg {
    transition: transform var(--transition);
}

.btn-text:hover svg {
    transform: translateX(4px);
}

/* 7. Hero Section Style */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--navy);
    /* Image placeholder reference in readme */
    background-image: url('../assets/images/hero-premium.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

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

.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 56, 113, 0.90) 0%, rgba(0, 56, 113, 0.60) 50%, rgba(0, 56, 113, 0.15) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 60%;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-desc {
    color: var(--pearl);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-content {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
}

/* 8. About Section (Problem Cards + Coordinated Solution) */
.about-section {
    background-color: var(--white);
}

/* Problem Cards Dashboard */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 80px;
}

.problem-card {
    background-color: var(--white);
    border: 1px solid var(--pearl);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition);
}

.problem-card:hover {
    border-color: var(--navy);
}

.problem-card-icon {
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.problem-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.problem-card-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--steel);
}

/* Coordinated Solution Grid */
.solution-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.solution-left {
    max-width: 90%;
}

.solution-badge {
    display: inline-block;
    color: var(--interactive);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.solution-legacy-box {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--pearl);
    position: relative;
}

.solution-legacy-stars {
    color: var(--navy);
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.solution-legacy-box p {
    font-style: italic;
    font-size: 0.937rem;
}

/* 8.5. About Intro Block */
.about-intro-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 24px;
}

.about-intro-text {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-text .eyebrow {
    color: var(--interactive);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.about-intro-text h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-intro-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--steel);
    margin-bottom: 16px;
}

.about-intro-image {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    margin-top: 106px;
}

.about-intro-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* About Section Values Row */
.about-values-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
    border-bottom: 1px solid var(--pearl);
    padding-bottom: 48px;
    margin-bottom: 80px;
}

.about-value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.about-value-item i {
    width: 16px;
    height: 16px;
    color: var(--interactive);
    flex-shrink: 0;
}

.about-value-item span {
    font-size: 0.812rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.about-value-separator {
    width: 1px;
    height: 20px;
    background-color: var(--pearl);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .about-intro-block {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        margin-bottom: 32px;
    }
    .about-intro-image {
        margin-top: 0;
        flex: 1;
        max-width: 100%;
    }
    .about-intro-image img {
        height: auto;
        max-height: 420px;
    }
    .about-values-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 24px;
        margin-bottom: 48px;
        padding-bottom: 32px;
    }
    .about-value-separator {
        display: none;
    }
    .about-value-item {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .about-intro-block {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 24px;
    }
    
    .about-intro-text {
        flex: 1;
        max-width: 100%;
    }
    
    .about-intro-image {
        flex: 1;
        max-width: 100%;
        margin-top: 0;
    }
    
    .about-intro-image img {
        height: auto;
        max-height: 380px;
        margin-bottom: 0;
    }
    .about-values-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 48px;
        padding-bottom: 32px;
    }
    .about-value-item {
        justify-content: flex-start;
    }
}

/* Authority Metrics (Right Side) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric-card {
    background-color: var(--pearl);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 12px;
}

.metric-card-label {
    font-size: 0.937rem;
    font-weight: 700;
    color: var(--steel);
}

@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .solution-left {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* 9. Services Section (Cards) */
.services-section {
    background-color: #F4F6F9; /* Lightened, cleaner, and brighter premium background */
}

.section-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.section-header-center h2 {
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px; /* Increased vertical spacing between rows by 14px */
    column-gap: 24px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.06); /* Premium softer border contrast */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Stretch all cards to equal height in their row */
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 56, 113, 0.08); /* More refined shadow */
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px; /* Subtly increased height for visual importance */
    overflow: hidden;
}

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

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

.service-card-body {
    padding: 36px 36px 40px 36px; /* Increased visual breathing space and padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.service-card-icon {
    position: absolute;
    top: -25px;
    right: 32px;
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.service-card-desc {
    font-size: 0.937rem;
    line-height: 1.5;
    color: var(--steel);
    margin-bottom: 20px;
}

/* Service Card Benefits List */
.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0; /* Breathing gap before bottom CTA */
    display: flex;
    flex-direction: column;
    gap: 12px; /* Increased vertical spacing between bullet items */
}

.service-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Improved alignment space */
    font-size: 0.875rem;
    color: var(--steel);
}

.service-benefit-item svg {
    width: 16px; /* Subtly enlarged check icons */
    height: 16px;
    stroke-width: 3px;
    color: var(--interactive);
    flex-shrink: 0;
}

.service-card-body .btn-text {
    margin-top: auto; /* Push CTA to card bottom for perfect alignment */
    align-self: flex-start;
    position: relative;
    transition: color var(--transition);
}

.service-card-body .btn-text i {
    transition: transform var(--transition);
}

.service-card-body .btn-text:hover {
    color: var(--navy);
}

.service-card-body .btn-text:hover i {
    transform: translateX(4px); /* Premium micro-interaction */
}


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

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card-body {
        padding: 24px;
    }
}

/* 10. Why Choose Us (Dark Navy Dashboard) */
.why-section {
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-split {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    align-items: flex-start;
}

.why-split-left {
    flex: 0 0 38%;
    max-width: 38%;
    position: sticky;
    top: 150px;
}

.why-split-left .eyebrow {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: block;
}

.why-split-left h2 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.why-split-left p {
    color: var(--pearl);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.90;
}

.why-split-right {
    flex: 0 0 58%;
    max-width: 58%;
}

.why-split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 40px 36px;
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
    background-color: rgba(255, 255, 255, 0.02);
}

.why-card:hover {
    border-color: rgba(255, 255, 255, 0.40);
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.why-card-icon {
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.why-card-icon i {
    width: 28px;
    height: 28px;
}

.why-card-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card-desc {
    color: var(--pearl);
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.90;
}

@media (max-width: 1024px) {
    .why-split {
        gap: 40px;
    }
    .why-split-left {
        flex: 0 0 40%;
        max-width: 40%;
    }
    .why-split-right {
        flex: 0 0 55%;
        max-width: 55%;
    }
}

@media (max-width: 767px) {
    .why-split {
        flex-direction: column;
        gap: 48px;
    }
    .why-split-left {
        flex: 1;
        max-width: 100%;
        position: static;
    }
    .why-split-right {
        flex: 1;
        max-width: 100%;
    }
    .why-split-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 11. Pre-Contact CTA Band */
.cta-band {
    background-color: var(--steel);
    color: var(--white);
    padding: 80px 0;
}

.cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.cta-split-left {
    flex: 0 0 60%;
    max-width: 60%;
}

.cta-split-left .eyebrow {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: block;
}

.cta-split-left h2 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-split-left p {
    color: var(--pearl);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-trust-points {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.937rem;
    color: var(--white);
    font-weight: 600;
}

.cta-trust-point i {
    width: 18px;
    height: 18px;
    color: var(--white);
    stroke-width: 3px;
}

.cta-split-right {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-split-right .btn {
    text-transform: uppercase;
    font-weight: 700;
    padding: 18px 36px;
    letter-spacing: 0.05em;
    font-size: 1rem;
    width: auto;
    text-align: center;
}

.cta-response-time {
    color: var(--pearl);
    font-size: 0.812rem;
    margin-top: 12px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .cta-split {
        gap: 40px;
    }
    .cta-split-left {
        flex: 0 0 65%;
        max-width: 65%;
    }
    .cta-split-right {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

@media (max-width: 767px) {
    .cta-band {
        padding: 64px 0;
    }
    .cta-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .cta-split-left {
        flex: 1;
        max-width: 100%;
    }
    .cta-split-right {
        flex: 1;
        max-width: 100%;
        align-items: flex-start;
    }
    .cta-split-right .btn {
        width: 100%;
    }
    .cta-trust-points {
        gap: 16px;
        flex-direction: column;
    }
}

/* 12. Contact Section (Form, Map, Information) */
.contact-section {
    background-color: var(--white);
}

.contact-split {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 48px;
    align-items: start;
}

/* Left side details */
.contact-info-col {
    padding-right: 24px;
}

.contact-details {
    margin-top: 32px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    color: var(--interactive);
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.contact-detail-text h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-detail-text p {
    margin-bottom: 0;
    font-size: 0.937rem;
}

.contact-quick-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

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

.btn-phone:hover {
    background-color: var(--interactive);
    transform: translateY(-2px);
}

/* Full-Width Google Map */
.contact-map-section {
    width: 100%;
    height: 400px;
    border-top: 1px solid var(--pearl);
    border-bottom: 1px solid var(--pearl);
    overflow: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(8%) contrast(95%);
}

/* Right side form */
.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--pearl);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 56, 113, 0.03);
}

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

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    height: 54px;
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--pearl);
    font-family: var(--font-sans);
    font-size: 0.937rem;
    color: var(--steel);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

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

textarea.form-control {
    height: 140px;
    resize: none;
}

/* Checkbox alignment */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-control {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--navy);
}

.checkbox-label {
    font-size: 0.875rem;
    line-height: 1.4;
    user-select: none;
    cursor: pointer;
}

.form-error-msg {
    display: none;
    color: var(--error);
    font-size: 0.812rem;
    margin-top: 6px;
    font-weight: 700;
}

.form-control.has-error {
    border-color: var(--error) !important;
}

.form-success-box {
    display: none;
    background-color: rgba(27, 94, 32, 0.05);
    border: 1px solid var(--success);
    color: var(--success);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.937rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-submit-btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info-col {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 24px;
    }
    .contact-quick-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .contact-quick-buttons .btn {
        width: 100%;
    }
}

/* 13. Footer Section */
.footer-section {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--pearl);
    font-size: 0.937rem;
    line-height: 1.6;
    max-width: 320px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    color: var(--white);
    opacity: 0.7;
    transition: opacity var(--transition), transform var(--transition);
}

.footer-social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social-link i {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.937rem;
    transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.937rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.footer-contact-info p i {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--white);
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition);
}

.footer-contact-info a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--pearl);
    opacity: 0.8;
}

.footer-legal-links {
    display: flex;
    gap: 32px;
}

.footer-legal-links a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity var(--transition);
}

.footer-legal-links a:hover {
    opacity: 1;
}

.footer-back-to-top {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    transition: opacity var(--transition), transform var(--transition);
}

.footer-back-to-top:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-back-to-top i {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 64px 0 32px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer-back-to-top {
        justify-content: center;
        width: 100%;
    }
}

/* 14. Floating WhatsApp Action Button */
.whatsapp-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    text-decoration: none;
    transition: transform var(--transition), background-color var(--transition);
}

.whatsapp-fab:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* 15. Back-to-Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 32px;
    right: 104px;
    width: 56px;
    height: 56px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    text-decoration: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background-color var(--transition);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: var(--interactive);
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top-btn {
        bottom: 16px;
        right: 80px;
        width: 48px;
        height: 48px;
    }
}
