:root {
    --primary-blue: #0B1B3D;
    --primary-gold: #D39E2A;
    --gold-hover: #B88923;
    --text-dark: #333333;
    --text-light: #F5F5F5;
    --white: #FFFFFF;
    --font-main: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px; /* Reduced padding slightly to match smaller text */
    border-radius: 6px;
    font-weight: 700; /* Increased weight slightly to keep small text readable */
    font-size: 0.60rem; /* Shrunk for crisper look */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap; /* Prevent button text from ever wrapping */
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-dark {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.btn-dark:hover {
    background-color: #08142a;
    border-color: #08142a;
}

.highlight {
    color: var(--primary-gold);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
}

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

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-gold);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

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

.logo {
    display: block;
    mix-blend-mode: multiply;
}

.logo img {
    height: 55px;
    display: block;
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-blue);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a.active {
    color: var(--primary-gold);
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
}

.nav a:hover {
    color: var(--primary-gold);
}

/* Dropdown Nav */
.nav-dropdown {
    position: relative;
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(6,21,54,0.15);
    border: 1px solid rgba(6,21,54,0.06);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
    flex-direction: column !important;
    gap: 0 !important;
}

/* Arrow pointer on dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(6,21,54,0.06);
    border-top: 1px solid rgba(6,21,54,0.06);
    rotate: 45deg;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #F5F3EE;
    color: var(--primary-gold);
}

.dropdown-menu li a i {
    color: var(--primary-gold);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 20px 0 120px; /* Reduced top padding, 120px bottom for the floating card overlap */
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: right center;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,0) 95%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Make all columns the same height */
    width: 100%;
    height: 100%;
}

.hero-content {
    flex: 1 1 33%;
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to align with bottom baseline */
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 1.6rem; /* Scaled down further for a crisp look */
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.05;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
    padding-right: 10px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    width: max-content; /* Allow buttons to break out of narrow column safely */
    margin-bottom: 0; /* Align perfectly at bottom */
}

.btn-play i {
    margin-left: 8px;
}

.features-bar {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 15px; /* Give them a bit more breathing room now that they don't wrap */
    width: max-content; /* Allow the bar to be wider than the 33% column if necessary */
    margin-top: 0; /* Remove top margin so it aligns flush with bottom */
    margin-bottom: 0;
    position: relative;
    z-index: 4;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-item i {
    font-size: 1rem;
    color: var(--primary-blue);
}

.feature-text {
    font-size: 0.65rem;
    line-height: 1.2;
    color: #555;
}

.feature-text strong {
    color: var(--primary-blue);
    font-size: 0.75rem;
}

/* Center Logo (Now in Flex) */
.hero-center-logo {
    flex: 1 1 33%;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align to bottom */
    position: relative;
    z-index: 3;
    mix-blend-mode: multiply; /* Blend the entire container to bypass stacking context bugs */
}

.hero-center-logo img {
    width: 100%;
    max-width: 400px; /* Scaled down slightly */
    margin-top: auto; /* Pushes image down, pushing features bar to the very floor */
    margin-bottom: 25px; /* Space between logo and features bar */
}

/* Right Column & Quote */
.hero-right-col {
    flex: 1 1 33%;
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.hero-right-quote {
    max-width: 100%;
    margin-top: auto; /* Force to the bottom of the stretched column */
    position: relative;
    align-self: anchor-center;
    
}

.hero-right-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; /* Scaled down further to match crisp typography */
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    text-align: center; /* Ensures wrapped lines are centered */
}

.hero-right-quote i.fa-quote-left {
    font-size: 1rem;
    vertical-align: top;
    margin-right: 5px;
    color: var(--primary-gold);
}

.hero-right-quote i.fa-quote-right {
    font-size: 1rem;
    vertical-align: bottom;
    margin-left: 5px;
    color: var(--primary-gold);
    position: absolute;
    bottom: -20px;
    right: 0;
}

/* --- HERO V2 SPECIFIC STYLES --- */
.hero-v2 .hero-bg {
    background-image: url('../assets/wb.png');
    background-position: right center;
    background-size: cover;
}

.hero-v2 .hero-bg::before {
    background: linear-gradient(to right, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 60%, rgba(255,255,255,0) 80%);
}

.hero-v2 .hero-content {
    flex: 1 1 33.333%;
    width: 33.333%;
}

.hero-v2 .hero-content h1 {
    font-size: 2.2rem; /* Scaled down slightly to fit the equal-width column without bad wrapping */
}

.hero-v2 .hero-subtitle {
    font-size: 1rem;
}

.hero-v2 .hero-center-logo {
    flex: 1 1 33.333%;
    width: 33.333%;
}

.hero-v2 .hero-right-col {
    flex: 1 1 33.333%;
    width: 33.333%;
}

.hero-v2 .hero-right-quote blockquote {
    font-size: 1rem;
    text-align: center;
}

/* Core Services Section */
.core-services-section {
    position: relative;
    margin-top: -100px; /* Pull up to overlap hero */
    z-index: 10;
    padding-bottom: 60px;
}

.core-services-card {
    background-color: #061536; /* Deepest blue to perfectly match image */
    border-radius: 12px;
    padding: 30px 45px;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    align-items: stretch;
    border: 1px solid rgba(255,255,255,0.08); /* Faint highlight edge */
}

.services-title {
    flex: 0 0 160px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255,255,255,28%);
}

.services-title h2 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.title-underline {
    width: 35px;
    height: 2px;
    background-color: var(--primary-gold);
    margin-top: 15px;
}

.services-grid {
    flex: 1;
    display: flex;
    justify-content: space-around;
    padding-left: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 25px;
    position: relative;
}

.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255,255,255,28%);
}

.service-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 5px var(--primary-blue); /* Creates the double-ring badge effect */
}

.icon-circle i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.service-content {
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-gold);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
}

.learn-more {
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
    margin-top: auto;
}

.learn-more i {
    margin-left: 5px;
}

.learn-more:hover {
    color: var(--primary-gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-center-logo {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    .hero-content, .hero-v2 .hero-content {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
        text-align: left;
        padding-top: 40px;
    }
    .hero-actions {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .features-bar {
        margin: 0 auto;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        white-space: normal;
    }
    .hero-center-logo, .hero-v2 .hero-center-logo {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 40px auto;
        width: 300px;
        max-width: 100%;
        flex: 1 1 auto;
    }
    .hero-right-col, .hero-v2 .hero-right-col {
        width: 100%;
        flex: 1 1 100%;
        align-items: center;
    }
    .hero-right-quote {
        align-self: center;
        text-align: center;
    }
    .core-services-card {
        flex-direction: column;
        padding: 25px 20px;
    }
    .services-title {
        flex: auto;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
        text-align: center;
        align-items: center;
    }
    .services-title::after {
        display: none;
    }
    .services-grid {
        flex-direction: column;
        gap: 25px;
        padding-left: 0;
    }
    .service-item {
        padding: 0 5px;
    }
    .service-item:not(:last-child)::after {
        display: none;
    }
}

/* --- 6 Pillars Section --- */
.pillars-section {
    background-color: #FDFCF9; /* Very light cream/off-white */
    padding: 0px 0;
    text-align: center;
    padding-bottom: 40px;
}

.pillars-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.pillars-header h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pillars-header .highlight-gold {
    color: var(--primary-gold);
}

.header-line {
    flex: 1;
    max-width: 150px;
    height: 2px;
    background-color: var(--primary-gold);
}

.pillars-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.pillar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

/* Vertical dividers */
.pillar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50px; /* Push down past the icon */
    height: calc(100% - 80px);
    width: 1px;
    background-color: rgb(255 170 0 / 43%); /* Faint gold line */
}

.pillar-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.pillar-item h3 {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.pillar-subtitle {
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.pillar-item p {
    color: #444; /* Dark grey */
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pillar-underline {
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
    margin-top: auto; /* Push to bottom */
}

/* --- Company Section --- */
.company-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.company-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.company-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.company-block h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.company-block .highlight-gold {
    color: var(--primary-gold);
}

.company-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin-bottom: 25px;
}

.company-block p {
    color: #555;
    font-size: 1.0rem;
    line-height: 1.6;
}

.company-block p:not(:last-child) {
    margin-bottom: 15px;
}

.company-right {
    flex: 1;
}

.founder-card {
    background-color: #FDFCF9; /* Match Pillars background */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.founder-photo-placeholder {
    width: 100%;
    height: 350px;
    background-color: #EAEAEA;
    border: 2px dashed #CCC;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.founder-photo-placeholder:hover {
    background-color: #E0E0E0;
    border-color: #AAA;
}

.founder-photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #AAA;
}

.founder-photo-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-details h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.founder-details h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-details p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments for company section */
@media (max-width: 992px) {
    .company-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* --- Services Section --- */
.services-section {
    background: linear-gradient(160deg, #061536 0%, #0a2055 60%, #0d1f4a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,160,80,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 5px;
}

.services-section-header h2 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.services-intro {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 3-column card grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.srv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.srv-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(196,160,80,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.srv-card:hover::before {
    opacity: 1;
}

.srv-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(196,160,80,0.12);
    border: 1px solid rgba(196,160,80,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.srv-card:hover .srv-card-icon {
    background: rgba(196,160,80,0.22);
    border-color: var(--primary-gold);
}

.srv-card-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.srv-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.srv-card > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.srv-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv-list li {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srv-list li i {
    color: var(--primary-gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.srv-learn-more {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
    margin-top: auto;
}

.srv-learn-more:hover {
    gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Why Choose Us / Stats Section --- */
.why-section {
    background: linear-gradient(160deg, #061536 0%, #0d1f4a 100%);
    padding: 80px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,160,80,0.2);
    border-radius: 12px;
    padding: 35px 40px;
    margin-bottom: 70px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-item .stat-prefix,
.stat-item .stat-number,
.stat-item .stat-suffix {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    display: inline;
}

.stat-item .stat-prefix,
.stat-item .stat-suffix { font-size: 2rem; }

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(196,160,80,0.25);
    flex-shrink: 0;
    margin: 0 20px;
}

.why-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid transparent;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-left-color: var(--primary-gold);
    transform: translateX(4px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(196,160,80,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: background 0.3s ease;
}

.why-card:hover .why-icon { background: rgba(196,160,80,0.22); }

.why-card h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* --- How It Works Section --- */
.how-section {
    background: #FDFCF9;
    padding: 90px 0;
}

.how-section .services-section-header h2 { color: var(--primary-blue); }
.how-section .services-intro { color: #555; }

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 60px;
}

.how-step {
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.how-step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(6,21,54,0.07);
    line-height: 1;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.how-step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(6,21,54,0.2);
    position: relative;
    z-index: 1;
}

.how-step h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-step p {
    color: #555;
    font-size: 0.82rem;
    line-height: 1.6;
}

.how-step-connector {
    color: var(--primary-gold);
    font-size: 1.2rem;
    padding: 0 10px;
    margin-top: 28px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--white);
    padding: 90px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

.testi-card {
    background: #FAFAFA;
    border: 1px solid rgba(6,21,54,0.08);
    border-radius: 14px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testi-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--primary-gold);
    opacity: 0.12;
    position: absolute;
    top: 5px;
    left: 18px;
    line-height: 1;
    pointer-events: none;
}

.testi-card--featured {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(6,21,54,0.2);
}

.testi-card--featured::before { opacity: 0.25; }

.testi-card:not(.testi-card--featured):hover {
    box-shadow: 0 10px 30px rgba(6,21,54,0.1);
    transform: translateY(-4px);
}

.testi-stars {
    display: flex;
    gap: 4px;
}

.testi-stars i {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

.testi-quote {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    flex-grow: 1;
}

.testi-card--featured .testi-quote { color: rgba(255,255,255,0.85); }

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    color: var(--primary-blue);
    font-size: 0.88rem;
    font-weight: 700;
}

.testi-card--featured .testi-author strong { color: var(--white); }

.testi-author span {
    color: #888;
    font-size: 0.78rem;
}

.testi-card--featured .testi-author span { color: rgba(255,255,255,0.55); }

/* Responsive */
@media (max-width: 992px) {
    .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-card--featured { transform: none; }
    .how-steps { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .how-step-connector { display: none; }
    .stats-row { flex-wrap: wrap; gap: 30px; }
    .stat-divider { display: none; }
}

@media (max-width: 600px) {
    .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--white); /* Matches the Company/About section */
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,21,54,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Override shared header styles for light background */
.contact-section .services-section-header h2 {
    color: var(--primary-blue);
}

.contact-section .services-intro {
    color: #555;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ---- Left Info ---- */
.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-blue);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.contact-tagline {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(196,160,80,0.12);
    border: 1px solid rgba(196,160,80,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1rem;
}

.detail-label {
    display: block;
    color: var(--primary-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.detail-value {
    display: block;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(6,21,54,0.06);
    border: 1px solid rgba(6,21,54,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ---- Right Form ---- */
.contact-form-wrapper {
    flex: 1.2;
    background: #FAFAFA;
    border: 1px solid rgba(6,21,54,0.08);
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid rgba(6,21,54,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-group select option {
    background: #fff;
    color: #222;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,0,0,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background: #fffdf5;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-gold-submit {
    background: var(--primary-gold);
    color: var(--primary-blue);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.btn-gold-submit:hover {
    background: #e0b84a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196,160,80,0.4);
}

/* ---- Footer ---- */
.site-footer {
    background-color: #061536;
}

/* Footer Top Bar */
.footer-top {
    background-color: #0d1f4a;
    padding: 0;
}

.footer-top-container {
    display: flex;
    align-items: stretch;
}

/* 4 Feature items */
.footer-features {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 22px 0;
    gap: 0;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.footer-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255,255,255,0.1);
}

.footer-feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.footer-feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-feature-text strong {
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-feature-text span {
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    line-height: 1.4;
}

/* Gold CTA Block */
.footer-cta {
    background: linear-gradient(135deg, #c4a050 0%, #e0c870 50%, #c4a050 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 30px;
    min-width: 300px;
    flex-shrink: 0;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-cta-heading {
    color: var(--primary-blue);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.footer-cta-sub {
    color: rgba(6,21,54,0.7);
    font-size: 0.75rem;
}

.footer-cta-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background-color: #0a2055;
    transform: translateY(-2px);
}

.footer-cta-cal {
    font-size: 1.8rem;
    color: var(--primary-blue);
    opacity: 0.7;
    flex-shrink: 0;
}

/* Footer Bottom Contact Strip */
.footer-bottom-bar {
    background-color: #061536;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.footer-contact-item i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    margin-left: auto;
}

/* Responsive Contact + Footer */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top-container {
        flex-direction: column;
    }

    .footer-features {
        flex-wrap: wrap;
        padding: 20px 10px;
    }

    .footer-feature-item {
        flex: 1 1 45%;
        padding: 12px 15px;
    }

    .footer-feature-item:not(:last-child)::after {
        display: none;
    }

    .footer-cta {
        width: 100%;
        min-width: unset;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-copyright {
        margin-left: 0;
    }
}

/* --- Mobile Responsiveness --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 101;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .header .btn-primary {
        display: none; /* Hide 'Book Consultation' in header on small screens to save space */
    }

    .nav {
        display: none;
        width: 100%;
        margin-top: 15px;
        background: var(--white);
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 15px;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 5px 0 5px 20px;
        min-width: 100%;
        display: none; /* Sub-menus hidden by default on mobile */
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .dropdown-menu::before {
        display: none; /* Hide dropdown arrow on mobile */
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-container {
        flex-direction: column;
        text-align: left;
        gap: 8px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .top-bar p {
        white-space: nowrap;
        display: inline-block;
        padding-left: 100%;
        animation: marquee 15s linear infinite;
    }

    @keyframes marquee {
        0% { transform: translate(0, 0); }
        100% { transform: translate(-100%, 0); }
    }

    /* Pillars */
    .pillars-header {
        flex-direction: column;
    }
    .pillars-grid {
        flex-direction: column;
        gap: 40px;
    }
    .pillar-item:not(:last-child)::after {
        display: none; /* Hide vertical lines on mobile */
    }

    /* Why Section Stats */
    .stat-item .stat-prefix, .stat-item .stat-number, .stat-item .stat-suffix {
        font-size: 2.2rem;
    }

    /* Contact Details */
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    /* Founder Card */
    .founder-card {
        padding: 25px;
    }
    .founder-photo-placeholder {
        height: 250px;
        margin-bottom: 20px;
    }
    .founder-details h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero adjustments for very small screens */
    .hero-v2 .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-center-logo img {
        max-width: 200px;
    }
    .services-section-header h2 {
        font-size: 1.8rem;
    }
}
