:root {
    --bg-color: #ffffff;
    --text-color: #96605a;
    --gold-accent: #96605a;
    --gold-accent-hover: #7a4b46;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header.solid-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 105px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(213, 168, 163, 0.3);
    z-index: 1000;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 50px;
    border-left: 1px solid rgba(213, 168, 163, 0.3);
    border-right: 1px solid rgba(213, 168, 163, 0.3);
}

.logo img {
    height: 75px;
    transition: var(--transition);
}

.logo-text {
    display: none;
}

.nav-left, .nav-right {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-links li {
    display: flex;
}

.nav-links li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-left: 1px solid rgba(213, 168, 163, 0.3);
    position: relative;
    color: var(--text-color);
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-left .nav-links li:first-child a {
    border-left: none;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold-accent);
}

.nav-links li a:hover {
    background-color: #feeeee;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.social-icons {
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 1px solid rgba(213, 168, 163, 0.3);
    padding: 0 30px;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--gold-accent);
    transition: var(--transition);
}

.mobile-overlay {
    display: none;
}

/* Hero Slider */
.hero {
    height: calc(100vh - 105px);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 105px;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -2;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 10s linear;
}

.slide.active .banner-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-quote {
    font-size: 3.5rem;
    max-width: 900px;
    line-height: 1.4;
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 50px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50%;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--gold-accent);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--gold-accent);
}

/* Sections General */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gold-accent);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold-accent);
    margin: 20px auto 0;
}

/* About Us */
.about {
    padding-bottom: 40px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Projects */
.projects {
    padding-top: 40px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.featured-title {
    flex: 1;
}

.featured-title h2 {
    text-align: left;
    margin-bottom: 0;
    font-size: 3rem;
}

.featured-title h2::after {
    display: none;
}

.featured-desc {
    flex: 2;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
}

.featured-desc p {
    margin-bottom: 20px;
}

.featured-desc p:last-child {
    margin-bottom: 0;
}

.featured-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.outline-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: transparent;
    transition: var(--transition);
}

.outline-btn:hover {
    background: var(--gold-accent);
    color: #fff;
}

.project-grid {
    display: flex;
    flex-direction: column;
    gap: 120px; /* Generous spacing between projects */
}

.project-card {
    display: flex;
    align-items: center;
    gap: 80px;
}

.project-card:nth-child(even) {
    flex-direction: row-reverse;
}

.project-image {
    flex: 1;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
    border-left: 3px solid var(--gold-accent);
    border-right: 3px solid var(--gold-accent);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--gold-accent);
    font-family: var(--font-heading);
}

.project-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--gold-accent);
}

.founder-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-details span {
    margin-right: 10px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(213, 168, 163, 0.2);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    border-bottom: 1px solid var(--gold-accent);
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    background: rgba(255,255,255,0.7);
    border-bottom-color: var(--text-color);
}

.submit-btn {
    background-color: var(--gold-accent);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.submit-btn:hover {
    background-color: var(--gold-accent-hover);
}
/* Tagline Section */
.tagline-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--bg-color);
}
.about-hero {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
}
@media (max-width: 768px) {
    .about-hero {
        padding-top: 80px !important;
        padding-bottom: 30px !important;
    }
}
.luxury-tagline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--gold-accent);
    font-weight: 400;
}
.luxury-tagline::after {
    display: none; /* Hide default section h2 line */
}

/* About Section */
.about-section {
    padding-top: 100px;
    background-color: var(--bg-color);
}
.about-section h2 {
    text-align: center;
    margin-bottom: 50px;
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-mission {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 500;
}
.founder-story {
    background-color: #ffffff;
    border: 1px solid rgba(213, 168, 163, 0.2);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.founder-story h3 {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}
.founder-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.founder-story p:last-child {
    margin-bottom: 0;
}

/* Why We're Different */
.features {
    padding-top: 80px;
    background-color: #ffffff; /* Removed slight tint */
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-color);
    border: 1px solid rgba(213, 168, 163, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Our Design Process */
.process {
    padding-top: 100px;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    height: 140px;
    align-items: flex-end;
}
.step-icon img.custom-process-icon {
    max-height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
}
.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.step-divider {
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    margin-bottom: 20px;
}
.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 250px;
}

/* Testimonials Section (Swiper) */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}
.testimonials-slider {
    padding-bottom: 60px;
    position: relative;
}
.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}
.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}
.testimonial-author {
    font-family: var(--font-heading);
    color: var(--gold-accent);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.testimonial-designation {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
}

/* Swiper Navigation Customization */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    color: var(--gold-accent);
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-accent);
    border-radius: 4px;
    background-color: transparent;
    margin-top: -22px;
}
.testimonials-slider .swiper-button-next:after,
.testimonials-slider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Swiper Pagination Customization */
.testimonials-slider .swiper-pagination-bullet {
    background-color: #cccccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
}
.testimonials-slider .swiper-pagination-bullet-active {
    background-color: var(--gold-accent);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid rgba(213, 168, 163, 0.2);
    border-bottom: 1px solid rgba(213, 168, 163, 0.2);
}
.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.cta-content h2::after { display: none; }
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.gold-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold-accent);
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.gold-btn:hover {
    background-color: var(--gold-accent-hover);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 40px;
    border: 1px solid rgba(213, 168, 163, 0.2);
    border-radius: 4px;
}
.luxury-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}
.luxury-form .form-row {
    display: flex;
    gap: 20px;
}
.luxury-form .form-row .form-group {
    flex: 1;
}
.luxury-form label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold-accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.luxury-form label span {
    text-transform: none;
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(45, 45, 45, 0.5);
    letter-spacing: normal;
}
.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(150, 96, 90, 0.5);
    background-color: #f3f3f3;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}
.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background-color: #ffffff;
}
.luxury-form textarea {
    resize: vertical;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}


/* Case Study Pages */
.case-study-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 105px; /* Offset for header */
}
.case-study-title {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}
.case-study-title h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.case-study-title p {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.client-story {
    padding: 100px 0;
    background-color: var(--bg-color);
}
.story-content {
    max-width: 800px;
    margin: 0 auto;
}
.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}
.story-content h2::after {
    margin-left: 0;
}
.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.before-after {
    padding: 100px 0;
    background-color: #ffffff;
}
.before-after h2 {
    text-align: center;
    margin-bottom: 50px;
}
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.ba-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}
.ba-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 20px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.project-gallery {
    padding: 100px 0;
}
.project-gallery h2 {
    text-align: center;
    margin-bottom: 50px;
}
.collage-grid {
    column-count: 3;
    column-gap: 20px;
}
.collage-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.collage-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.collage-item:hover img {
    transform: scale(1.03);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(213, 168, 163, 0.3);
    font-size: 0.9rem;
}

/* Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .featured-header {
        flex-direction: column;
        gap: 20px;
    }
    .featured-title h2 {
        text-align: center;
        font-size: 2.5rem;
    }
    .featured-desc {
        text-align: center;
    }
    .featured-action {
        justify-content: center;
        width: 100%;
    }
    .hero-quote {
        font-size: 2.2rem;
    }
    .luxury-tagline {
        font-size: 2.5rem;
    }
    .project-card, .project-card:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    .project-grid {
        gap: 80px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .collage-grid {
        column-count: 1;
    }
    .case-study-title h1 {
        font-size: 3rem;
    }
    .luxury-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    header.solid-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        position: relative;
    }
    .nav-left { display: none; }
    .nav-right .nav-links { display: none; }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        border: none;
        padding: 0;
        margin: 0;
        order: unset;
    }
    .logo a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }
    .logo img {
        height: 40px;
    }
    .logo-text {
        display: inline-block;
        font-family: var(--font-heading);
        color: #b89645;
        font-size: 1.2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .nav-right {
        order: 1;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .social-icons {
        border-left: none;
        padding: 0 15px;
        gap: 12px;
    }
    .hamburger {
        display: block;
        order: 3;
        z-index: 2000;
        margin-right: 20px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .mobile-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 1500;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-links {
        list-style: none;
        text-align: center;
        padding: 0;
    }
    
    .mobile-nav-links li {
        margin: 25px 0;
    }
    
    .mobile-nav-links a {
        font-size: 2rem;
        color: var(--text-color);
        text-decoration: none;
        font-family: var(--font-heading);
    }
    
    .mobile-nav-links a:hover {
        color: var(--gold-accent);
    }
    .hero-quote {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
}
/* Project Header Details Layout */
.project-header {
    background: #ffffff;
    padding-top: 110px;
    padding-bottom: 50px;
}
@media (max-width: 768px) {
    .project-header {
        padding-top: 80px;
        padding-bottom: 30px;
    }
}
.project-grid-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "bread bread"
        "title details"
        "image image";
    column-gap: 50px;
    row-gap: 30px;
}
.breadcrumbs {
    grid-area: bread;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}
.breadcrumbs a {
    color: #666;
    text-decoration: none;
}
.breadcrumbs .current {
    color: var(--gold-accent);
    font-weight: 500;
}
.project-title-area {
    grid-area: title;
}
.project-title-area h1 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}
.title-underline {
    border: none;
    height: 1px;
    background-color: var(--text-color);
    width: 100%;
    max-width: 150px;
    margin-bottom: 15px;
    margin-left: 0;
}
.project-title-area p {
    font-size: 1.1rem;
    color: #333333;
}
.project-details-area {
    grid-area: details;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--text-color);
    padding-left: 30px;
    gap: 20px;
}
.detail-item {
    display: flex;
    flex-direction: column;
}
.detail-label {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.detail-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}
.project-hero-image {
    grid-area: image;
    margin-top: 20px;
}
.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 992px) {
    .project-grid-layout {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "bread"
            "title"
            "image"
            "details";
        row-gap: 20px;
    }
    .project-title-area h1 {
        font-size: 2.5rem;
    }
    .project-details-area {
        border-left: none;
        border-bottom: 3px solid var(--text-color);
        padding-left: 0;
        padding-bottom: 20px;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 20px;
    }
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold-accent);
    text-decoration: none;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 10000;
}
.lightbox-prev {
    left: 20px;
    border-radius: 3px 0 0 3px;
}
.lightbox-next {
    right: 20px;
    border-radius: 0 3px 3px 0;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0,0,0,0.8);
    color: var(--gold-accent);
}
.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.project-thumbnails img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-thumbnails img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


    .slider-button { width: 30px; height: 30px; }
    .slider-button svg { width: 12px; height: 12px; }
}

