:root {
    /* Black & White Theme */
    --primary: #000000;
    --primary-light: #2d2d2d;
    --accent: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;
    --bg-white: #ffffff;
    --bg-off-white: #f5f5f5;
    --white: #ffffff;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 120px);
    --container-max: 1200px;
}

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

/* Global Reset for Mobile Stability */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Critical for stopping "kayma" */
    width: 100%;
    position: relative;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Header - ALWAYS BLACK CONSTANT */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* Force full width on mobile */
    z-index: 1000;
    padding: 15px 0;
    background: #000000;
    /* Always Black */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: #000000;
    /* Ensure it stays black on scroll */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    /* Always White */
    text-decoration: none;
    transition: color 0.3s ease;
}

header.scrolled .logo {
    color: #ffffff;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    /* Always light text */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

header.scrolled nav a {
    color: rgba(255, 255, 255, 0.8);
}

header.scrolled nav a:hover {
    color: #ffffff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

header.scrolled .menu-toggle span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 24px;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-top: 12px;
}

/* Premium Search Container (White Box) */
.search-container-white {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    max-width: 1000px;
    margin: 30px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
}

.filter-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.filter-select {
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #fff;
    cursor: pointer;
    outline: none;
    min-width: 180px;
    flex: 1;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #000;
}

/* Partners Section - Professional White */
/* Partners Section - Professional White - Static & Tiny */
.partners {
    padding: 40px 0;
    /* Compact padding */
    background: #fff;
    border-bottom: 1px solid #f9f9f9;
    overflow: hidden;
    /* Prevent horizontal scroll "kayma" */
    width: 100%;
}

.partners h2 {
    display: none;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    /* Allow width to accommodate duplicates */
    animation: scroll 40s linear infinite;
    /* Slower, smoother */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.label {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ... existing code ... */

/* Hero H1 */
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 24px;
}

/* ... existing code ... */

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 60px */
}

.section-title h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-top: 12px;
}

/* ... existing code ... */

/* Partners */
.partners-track img {
    height: 13px;
    /* 1/3 Smaller - "1/3 oranda kucuk" */
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: none;
    /* No scale on hover */
}

.partner-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Bento Grid */
.bento-section {
    padding: var(--section-padding) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-item {
    background: var(--bg-off-white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats {
    padding: var(--section-padding) 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-off-white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* Global Villa Page Styles */
.villa-content .container {
    max-width: 1100px;
    /* Slightly wider */
}

/* 1. Highlights (Features) List - Boxed Style */
.highlights-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.highlights-list li {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlights-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.highlights-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* 2. Details (Price/Beds) - Boxed Style "3-3" */
.villa-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0;
    background: transparent;
}

.detail-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Left Align Content */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align Left */
    position: relative;
    padding-left: 70px;
    /* Space for icon */
    min-height: 110px;
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-item::before {
    content: "i";
    /* Info Icon Proxy */
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    color: #333;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    /* Serif fonts often used for 'i' looks elegant */
    font-family: serif;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.detail-item strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
}

.detail-item span {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* Responsive Overrides */
@media (max-width: 900px) {

    .highlights-list,
    .villa-details {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {

    .highlights-list,
    .villa-details {
        grid-template-columns: 1fr !important;
    }
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    nav.active {
        right: 0;
    }

    nav a {
        color: var(--white);
        font-size: 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item {
        grid-column: span 1 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Mobile Search Filters - Stack Vertically */
    .search-container-white {
        padding: 16px;
        margin: 20px 16px 0;
        border-radius: 16px;
        background: transparent;
        box-shadow: none;
    }

    .filter-grid {
        flex-direction: column;
        gap: 12px;
    }

    .filter-select {
        width: 100%;
        min-width: unset;
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    /* Hero Mobile Adjustments */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Section Title Mobile */
    .section-title h2 {
        font-size: 24px;
    }

    .label {
        font-size: 10px;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-row {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item-small .num {
        font-size: 42px;
    }

    /* Expertise Mobile */
    .expertise-section {
        padding: 60px 0;
    }

    .expertise-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .office-grid {
        flex-direction: column;
        gap: 40px;
    }

    .office-item h4 {
        font-size: 36px;
    }

    /* Locations Mobile */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto 0;
    }

    .location-item {
        padding: 24px;
    }

    .loc-name {
        font-size: 20px;
    }

    /* Testimonials Mobile */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* Assurance Cards Mobile */
    .assurance-section {
        padding: 60px 0;
    }

    .assurance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .assurance-card {
        padding: 24px;
    }

    /* Partners Mobile */
    .partners {
        padding: 24px 0;
    }

    .partners-track {
        gap: 40px;
    }

    .partners-track img {
        height: 10px;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 0 20px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    /* Clients Say Mobile */
    .clients-say-section {
        padding: 60px 0;
    }

    .clients-title {
        font-size: 20px;
    }

    .client-testimonial p {
        font-size: 16px;
    }
}

/* Clients Say Section */
.clients-say-section {
    padding: 100px 0;
    background: #fff;
    /* Clean white background */
    text-align: left;
    color: #000;
}

.clients-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.client-testimonial {
    margin-bottom: 40px;
}

.client-testimonial p {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.client-testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 16px;
}

.ceo-signature {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ceo-signature strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

/* Assurance / Why Choose Us Section */
.assurance-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.assurance-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.assurance-icon {
    font-size: 32px;
    color: var(--primary);
    /* Gold/Orange */
    margin-bottom: 20px;
    display: inline-block;
}

/* Use SVG icons or FontAwesome if available, otherwise stylistic Unicode or simple styling */
.assurance-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.assurance-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.assurance-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.assurance-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Locations Section (Minimal B&W) */
.locations-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
    align-items: center;
}

.location-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    /* Slightly sharper corners for "cool" look */
    transition: all 0.4s ease;
    cursor: default;
    background: #fff;
}

.location-item:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-5px);
}

.loc-name {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.location-item:hover .loc-name {
    color: #fff;
}

.loc-sub {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.4s ease;
}

.location-item:hover .loc-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* NEW PREMIUM SECTIONS CSS */

/* 1. Global Reach Stats (Black Bg) */
.stats-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
    border-top: 1px solid #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Adjusted ratio */
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    /* Center vertically */
}

/* Removed the "2" stat large column layout */
.stat-large-col {
    display: none;
    /* Hide per user request "remove the 2" */
}

/* New intro text to replace the "2" */
.stat-intro-text h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.stat-intro-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    max-width: 500px;
}

.stat-intro-text {
    /* Styles for the new text replacing the giant "2" */
    text-align: left;
}

.stat-large-col p {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 20px;
    max-width: 400px;
}

.stat-right-col .section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 30px;
    display: block;
}

.stat-right-col h3 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.stat-row {
    display: flex;
    gap: 60px;
}

.stat-item-small .num {
    font-size: 64px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-item-small .desc {
    font-size: 14px;
    color: #888;
}

/* 2. Expertise Section (White/Minimal) */
.expertise-section {
    background: #fff;
    color: #000;
    padding: 120px 0;
    text-align: center;
}

.expertise-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    /* Bolder */
    margin-bottom: 60px;
    letter-spacing: -2px;
    /* Tighter */
    text-transform: uppercase;
    /* More premium */
}

.office-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    /* Wider gap */
    margin-bottom: 100px;
}

.office-item h4 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.office-item p {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Premium Redesign for Quote Section */
.expertise-quote {

    /* Immersive Quote Section */
    .quote-immersive {
        padding: 140px 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Subtle pattern or accent */
    .quote-immersive::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .quote-immersive p {
        font-size: clamp(24px, 4vw, 42px);
        font-family: 'Times New Roman', serif;
        font-style: italic;
        line-height: 1.5;
        color: #fff;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* 3. Clients Say (Clean) */
    .clients-say-section {
        background: #fdfdfd;
        padding: 100px 0;
        text-align: center;
    }

    .clients-title {
        font-size: 42px;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 60px;
    }

    .client-testimonial {
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .client-testimonial p {
        font-size: 20px;
        font-style: italic;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
    }

    .client-testimonial cite {
        font-size: 14px;
        font-weight: 600;
        color: #000;
        font-style: normal;
    }

    .ceo-signature {
        border-top: 1px solid #eee;
        display: inline-block;
        padding-top: 30px;
        margin-top: 20px;
    }

    /* Responsive adjustments for Stats */
    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .stat-large-col h2 {
            font-size: 100px;
        }

        .stat-right-col h3 {
            font-size: 36px;
        }

        .stat-row {
            gap: 30px;
        }
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    color: #0d1b2a;
    border-bottom: 2px solid #50c878;
    /* Green accent */
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0d1b2a;
    /* Dark blue left border */
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}

.faq-question span {
    color: #50c878;
    /* Q: Green */
}

.faq-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    display: flex;
    gap: 8px;
}

.faq-answer span {
    color: #0d1b2a;
    /* A: Dark Blue */
    font-weight: 700;
}
/* Force Black Text Links per User Request */
.cta-btn, .btn-dark {
    color: #000000 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    display: inline-block;
}

.cta-btn:hover, .btn-dark:hover {
    color: #333333 !important;
    background: transparent !important;
    transform: none !important;
}
