/* --- CSS VARIABLES --- */
:root {
    /* Colors */
    --primary-green: #103B2A;
    --accent-green: #1B5D43;
    --light-green: #E8F0EC;
    --gold: #D4AF37;
    --gold-light: #F6ECCC;
    --dark: #222222;
    --text: #4A4A4A;
    --light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* offset for sticky navbar */
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: #8e2a8b;
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 3px solid #ff8c00;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin: 0 5px;
}

.top-bar-right a {
    color: var(--white);
    margin-left: 15px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--gold);
}

/* --- HEADER & NAVBAR --- */
.header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.4s ease;
}

.header.scrolled .nav-container {
    height: 70px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: color 0.4s ease;
}

.header.scrolled .logo-text {
    color: #333;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
    letter-spacing: 1px;
}

.header.scrolled .nav-link {
    color: #333;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
    color: #8e2a8b;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link::after {
    background-color: #8e2a8b;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.4s ease;
}

.header.scrolled .mobile-menu-btn {
    color: #333;
}

.mobile-menu-close {
    display: none;
    font-size: 2.2rem;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
}

/* --- RESPONSIVE HEADER --- */
@media (max-width: 991px) {
    .top-bar {
        padding: 8px 0;
        font-size: 0.8rem;
        text-align: center;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
    }
    .top-bar-right {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        transition: right 0.4s ease-in-out;
        z-index: 2000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .mobile-menu-close {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 30px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: #333 !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* --- WHATSAPP STICKY --- */

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        transition: 0.4s ease;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* --- UTILITIES --- */
.section-padding { padding: 50px 0; }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 2rem; }
.rounded-img { border-radius: 20px; object-fit: cover; width: 100%; height: 100%; }
.shadow { box-shadow: var(--shadow); }

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--light-green);
    color: var(--accent-green);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../assets/hero_bg1.jpg') center/cover no-repeat fixed;
    /*background: url('../assets/hero_bg.png') center/cover no-repeat fixed; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 40px; /* Offset for top-bar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 80px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    color: yellow;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.justify-center {
    justify-content: center !important;
}

.btn-reach-us {
    background-color: #8e2a8b;
    color: var(--white);
    border: 2px solid #8e2a8b;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(142, 42, 139, 0.3);
    text-transform: uppercase;
    font-weight: 600;
}

.btn-reach-us:hover {
    background-color: #6d1f6b;
    color: var(--white);
    border-color: #6d1f6b;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(142, 42, 139, 0.4);
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
}

/* --- ABOUT SECTION --- */

.about {
    margin-top: 50px; /* Space for hero highlight overlap */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: var(--transition);
}

.experience-badge:hover {
    transform: translateY(-10px);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-green);
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-highlights { flex-direction: column; gap: 30px; }
    .hero-highlights-wrapper { position: static; margin-top: -50px; padding: 0 20px; }
    .highlight-item:not(:last-child) { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid #eee; padding-bottom: 15px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { height: 400px; margin-bottom: 30px; width: 90%; }
    .experience-badge { bottom: -10px; right: -10px; padding: 20px; }
}

/* --- UTILITY ADDITIONS --- */
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.bg-light { background-color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--text); max-width: 600px; margin: 0 auto; }
.block-btn { display: block; width: 100%; }

/* --- PROJECTS SECTION --- */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-card {
    background: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.status-upcoming {
    background: var(--gold);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.project-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    font-style: italic;
}

.project-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 20px;
}

.highlights-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.project-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.project-highlights li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- AMENITIES SECTION --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.amenity-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    color: var(--gold);
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

@media (max-width: 768px) {
    .projects-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-green);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
    color: var(--gold);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--text);
    font-size: 0.95rem;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(16, 59, 42, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item { height: 250px; }
}

/* --- CONTACT SECTION --- */
.mr-2 { margin-right: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.d-block { display: block; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    background: var(--primary-green);
    color: var(--white);
    padding: 50px;
}

.contact-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-container {
    padding: 50px;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.map-container.mt-5 {
    margin-top: 50px;
}

/* --- FOOTER --- */
.footer {
    background: var(--primary-green);
    color: var(--light);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #c5a030;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badges .badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { padding: 40px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- ANIMATION CLASSES --- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- PROJECT DETAILS --- */
.project-details-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.layout-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.details-highlights .highlights-list {
    list-style: none;
    padding: 0;
}

.details-highlights .highlights-list li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.details-highlights .highlights-list li i {
    color: var(--primary-green);
    margin-top: 3px;
}

.live-pictures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.live-pictures-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.live-pictures-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .project-details-split { grid-template-columns: 1fr; }
    .live-pictures-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .live-pictures-grid { grid-template-columns: 1fr; }
}

/* Centered Header Layout Styles */
.mobile-logo-img {
    max-height: 50px;
    width: auto;
}

@media (min-width: 992px) {
    .centered-header .nav-container {
        justify-content: center;
        position: relative;
    }
    
    .centered-header .nav {
        width: 100%;
        background: transparent;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-inner-split {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }
    
    .left-nav, .right-nav {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
    }
    
    .left-nav { 
        justify-content: flex-end;
        padding-right: 90px; 
    }
    
    .right-nav { 
        justify-content: flex-start;
        padding-left: 90px; 
    }
    
    .desktop-nav-cta { 
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        white-space: nowrap; 
    }

    /* The overlapping logo */
    .overlapping-logo {
        position: absolute;
        left: 50%;
        top: -20px; 
        transform: translateX(-50%);
        z-index: 1001;
        background: var(--white);
        padding: 15px 25px 25px 25px;
        border-radius: 0 0 25px 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .overlapping-logo img {
        height: 140px; 
        width: auto;
        transition: var(--transition);
    }

    /* Adjust scrolled state */
    .header.scrolled {
        padding: 15px 0; 
    }
    .header.scrolled .overlapping-logo {
        top: -15px; 
    }
    .header.scrolled .overlapping-logo img {
        height: 100px; 
    }
}

@media (max-width: 991px) {
    .desktop-only-logo, .overlapping-logo { display: none !important; }
    .mobile-only-logo { display: flex !important; align-items: center; border: none; }
    
    .centered-header .nav.active {
        /* let existing mobile styles show it */
    }
    
    .nav-inner-split {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
        padding: 20px 0;
    }
    
    .left-nav, .right-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
}

/* --- PREMIUM PROJECT PAGE STYLES --- */
.page-header {
    padding-top: 150px;
    padding-bottom: 50px;
    background: linear-gradient(rgba(16, 59, 42, 0.8), rgba(16, 59, 42, 0.6)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=2064&auto=format&fit=crop') center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
    background-attachment: fixed;
}
.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 800;
}
.page-breadcrumb {
    color: var(--gold);
    font-weight: 500;
    font-family: var(--font-body);
}

.project-details-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.layout-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.layout-image:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.layout-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.details-highlights h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}
.highlights-list {
    list-style: none;
    padding: 0;
}
.highlights-list li {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-left: 4px solid var(--gold);
}
.highlights-list li i {
    color: var(--gold);
    font-size: 1.2rem;
}

.live-pictures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.live-pictures-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.live-pictures-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}
@media (max-width: 991px) {
    .project-details-split {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .live-pictures-grid {
        grid-template-columns: 1fr;
    }
}
