:root {
    /* Premium Palette */
    --primary-color: #0f172a;
    /* Deep Navy (slate-900 like) */
    --primary-light: #1e293b;
    /* Lighter Navy for cards/hovers */
    --accent-color: #f97316;
    /* Vibrant Orange */
    --accent-hover: #ea580c;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-body: #f8fafc;
    /* Very light slate gray */
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Radius */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: var(--bg-body);
    /* Avoid white bars */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

/* COMPENSATION DU MENU DROIT POUR LE CENTRAGE */
/* CENTRAGE STANDARD (SANS DÉCALAGE MENU) */

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Modern underline for H2 */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 2rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta {
    background: var(--accent-color);
    /* Vibrant Gradient could be nice, but solid is cleaner */
    color: var(--white);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* HERO SECTION (Premium Split) */
.hero {
    position: relative;
    color: var(--white);
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight-location {
    color: var(--accent-color);
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7em;
    /* Slightly smaller for the subtitle part of H1 */
}

/* Hero Actions (Buttons) */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Agent Profile */
.agent-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-avatar {
    width: auto;
    height: 160px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    object-fit: contain;
    background: white;
    padding: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.agent-info {
    display: flex;
    flex-direction: column;
}

.agent-info strong {
    font-size: 1.1rem;
    color: var(--white);
}

.agent-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    /* Responsive and safe */
    line-height: 1.3;
    /* Ensure ascenders/descenders are not clipped */
    letter-spacing: -0.01em;
    padding-bottom: 0.2rem;
    /* Extra safety for descenders */
}

.highlight-location {
    color: var(--accent-color);
    display: inline-block;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #cbd5e1;
    /* Light slate */
    max-width: 90%;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    /* Pill shape */
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* HERO FORM (Glass/Floating) */
.hero-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    /* Big shadow lift */
    color: var(--text-main);
    position: relative;
    z-index: 10;
}

.hero-form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.75rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: #f1f5f9;
    /* Slate 100 */
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.form-group input:focus {
    background: var(--white);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}

.form-notice {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* SECTIONS COMMON */
section {
    padding: 8rem 0;
}

/* PREMIUM SLIDER SECTION */
.features {
    background-color: var(--white);
    padding: 6rem 0;
    /* Reduced top padding as it follows massive hero */
}

.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 1rem;
    /* Space for shadows */
}

/* Slide Left: Image */
.slide-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 450px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.03);
}

/* Slide Right: Content */
.slide-content {
    text-align: left;
}

.slide-tag {
    display: inline-block;
    background: #e0f2fe;
    /* Light blue */
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.slide-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align right */
    gap: 1rem;
    margin-top: 2rem;
    padding-right: 1rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--bg-body);
    background: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 900px) {
    .slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .slide-image {
        height: 300px;
    }

    .slide-content {
        text-align: center;
    }

    .slide-features li {
        justify-content: center;
        text-align: left;
    }

    .slider-controls {
        justify-content: center;
    }
}

/* TARGET AUDIENCE SECTION */
.target-audience {
    background-color: var(--bg-body);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: left;
}

.target-col h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* LOCATION SECTION */
.location {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('Photos/facades4.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    background-attachment: fixed;
    padding: 6rem 0;
}

.location h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.location .lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.8;
}

.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.location-info {
    text-align: center;
}

.location-desc {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.location-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.location .badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location .badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

/* FINANCIALS (Clean Table) */
.financials {
    background: var(--bg-body);
}

.table-responsive {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
    /* Spacing between rows */
}

td {
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
}

tr {
    background: #f8fafc;
    transition: transform 0.2s;
}

tr td:first-child {
    border-radius: 10px 0 0 10px;
    color: var(--text-muted);
    font-weight: 500;
}

tr td:last-child {
    border-radius: 0 10px 10px 0;
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
}

tr.highlight-row {
    background: linear-gradient(to right, #fff7ed, #ffedd5);
}

tr.highlight-row td {
    color: #c2410c;
    /* Dark Orange */
}

/* FOOTER */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.legal {
    opacity: 0.6;
    font-size: 0.9rem;
}

.legal a {
    color: var(--white);
    text-decoration: underline;
}

/* PLANS SECTION */
.plans {
    background-color: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--bg-body);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.plan-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.plan-placeholder {
    width: 100%;
    height: 250px;
    background: #f1f5f9;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    border: 2px dashed #cbd5e1;
}

.plan-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.plan-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.plan-card p {
    color: var(--text-muted);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* VIRTUAL TOUR */
.virtual-tour {
    background-color: var(--bg-body);
}

.virtual-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column */
    max-width: 900px;
    /* Limit width */
    margin: 2rem auto 0;
    /* Center grid */
    gap: 3rem;
}

.virtual-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.virtual-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.virtual-item h3 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: #f1f5f9;
    /* Placeholder bg while loading */
}

.iframe-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 70px;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 10;
    border-radius: 0 0 var(--radius-lg) 0;
}

.iframe-container::after {
    content: 'Visite Virtuelle 360°';
    position: absolute;
    top: 12px;
    left: 16px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: 11;
}

.virtual-desc {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 0;
    }
}

/* FLOATING MENU */
.floating-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0.5rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-item {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.menu-item:hover,
.menu-item.active {
    background: var(--accent-color);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.menu-icon {
    font-size: 1.2rem;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s;
}

.menu-item:hover .menu-icon,
.menu-item.active .menu-icon {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.3);
}

.menu-item.active {
    background: var(--accent-color);
    box-shadow: 0 0 12px 3px rgba(249, 115, 22, 0.5);
}

/* Tooltip on hover */
.menu-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 50px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.menu-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Hide on mobile to save space */
@media (max-width: 768px) {
    .floating-menu {
        display: none;
    }
}

/* SEO & USP SECTIONS */
.seo-intro {
    background: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.seo-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.usp-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usp-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.usp-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.usp-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* FAQ SECTION */
.faq-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.faq-question {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    display: block;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
}

/* MARKET CONTEXT */
.market-context {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* PLANS IMAGES */
.plan-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: #f1f5f9;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.plan-img:hover {
    transform: scale(1.02);
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden on desktop */
    padding: 10px;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    .sticky-btn {
        flex: 1;
        padding: 12px;
        text-align: center;
        border-radius: var(--radius-md);
        font-weight: 700;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 1rem;
        transition: transform 0.2s;
    }

    .sticky-btn:active {
        transform: scale(0.98);
    }

    .btn-call {
        background: var(--primary-color);
        /* Navy for call */
        color: white;
    }

    .btn-email {
        background: var(--accent-color);
        /* Orange for action */
        color: white;
    }

    /* Push footer up slightly so content isn't hidden behind bar */
    footer {
        padding-bottom: 80px;
    }
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    animation: zoom 0.3s;
    box-shadow: var(--shadow-xl);
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}

/* Add zoom cursor to slide images */
.slide img {
    cursor: zoom-in;
}

/* GALLERY SECTION */
.gallery {
    padding: 5rem 0;
    background: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    background: white;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: zoom-in;
    display: block;
}

.gallery-img:hover {
    transform: scale(1.08);
}

/* GLOBAL OVERFLOW FIX */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

/* GLOBAL USP FIX */
.usp-section h2 {
    color: var(--white) !important;
}

/* HYBRID GALLERY STYLES */
/* Desktop: Show Grid, Hide Swiper */
.desktop-only {
    display: grid !important;
}

.mobile-only {
    display: none !important;
}

/* Mobile: Show Swiper, Hide Grid */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* MOBILE GRID: 2 Columns -> Small Images */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
    }

    /* Rest of the mobile overrides */
    /* Gallery Carousel */
    /* ... (Old manual carousel code removed) ... */

    /* Subtitle Single Line Fix */
    .subtitle {
        white-space: nowrap;
        font-size: 0.85rem !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Slider Features Alignment Fix */
    .slide-content {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .slide-features {
        text-align: left;
        padding-left: 0;
    }

    .slide-features li {
        justify-content: flex-start;
    }
}

/* SWIPER CUSTOMIZATION (Mobile Only) */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    font-weight: bold;
}