/* 
    Be Spaces BuildWorks LLP Design System
    Inspired by Premium Construction Aesthetics
*/

:root {
    /* Color Palette - Modern & Premium (Gold & Charcoal) */
    --primary-dark: #111111;
    /* Rich Black */
    --primary-gold: #c5a059;
    /* Sophisticated Gold */
    --secondary-gold: #b38e44;
    --accent-gold: rgba(197, 160, 89, 0.1);
    --white: #ffffff;
    --off-white: #fcfcfc;
    --light-gray: #f4f4f4;
    --medium-gray: #777777;
    --black: #000000;
    --navbar-bg: rgba(255, 255, 255, 0.98);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-bold: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 30px 60px rgba(197, 160, 89, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(197, 160, 89, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.premium-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.premium-badge span {
    color: var(--primary-gold);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}

.premium-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.6rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.info-item-premium:hover .contact-icon-box {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

.premium-input {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 1.4rem;
    border-radius: 12px;
    outline: none;
    width: 100%;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.premium-input:focus {
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.1);
}

.submit-btn-premium {
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.submit-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
    transition: 0.6s;
}

.submit-btn-premium:hover::before {
    left: 100%;
}

.submit-btn-premium:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.premium-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.premium-bg-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.6) 100%);
    z-index: 1;
}

.text-white {
    color: var(--white) !important;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 3;
    pointer-events: none;
}

@keyframes pan {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Button Components */
.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Layout Classes */
.about-flex-container {
    display: flex;
    gap: 6rem;
    align-items: center;
    flex-wrap: wrap;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {

    .about-flex-container,
    .enquiry-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .about-flex-container,
    .enquiry-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-flex-container>div,
    .enquiry-grid>div {
        flex: 1 1 100%;
        min-width: 100% !important;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    /* Set to absolute highest to be above body::after overlay */
    padding: 1.5rem 0;
    /* Slightly more compact for desktop */
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 90px;
    width: 104px;
    object-fit: fill;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.6));
}

.navbar.scrolled .logo {
    color: var(--primary-dark);
}

.navbar.scrolled .logo-img {
    height: 68px;
    width: 78px;
}

.logo:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
    transform: translateY(-1px);
}

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

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--primary-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-gold);
    color: var(--white) !important;
    padding: 0.8rem 2.2rem !important;
    border-radius: 4px;
    /* Square/Sharp premium look */
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
    background: var(--primary-dark);
    color: var(--primary-gold) !important;
}

.nav-cta::after {
    display: none;
}

.mobile-cta-only {
    display: none;
}

.desktop-cta-only {
    display: block;
}

.mobile-menu-header,
.mobile-menu-footer {
    display: none;
}

.menu-btn {
    display: none;
    /* Hidden by default on desktop */
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 100000;
    /* Extremely high to stay above overlay and nav-links */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* Circle for premium look */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.navbar.scrolled .menu-btn {
    background: var(--accent-gold);
    border-color: rgba(197, 160, 89, 0.2);
}

.navbar.scrolled .menu-btn span {
    background: var(--primary-dark);
}

/* Animation to X */
.menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--white);
    /* White X on gold button */
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--white);
    /* White X on gold button */
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('assets/gold_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    /* clip-path removed for better mobile compatibility if requested, but kept for now */
    clip-path: polygon(0 0, 100% 0, 100% 90vh, 0 100%);
}

/* Fix for fixed background on mobile */
@media (max-width: 768px) {

    .hero,
    .brand-showcase,
    [style*="fixed"] {
        background-attachment: scroll !important;
    }
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 2rem;
    line-height: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0.8;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--primary-gold);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-grid-section {
    margin-top: -120px;
    padding-bottom: 140px;
}

.premium-header-section {
    padding: 200px 0 140px;
}

.info-side-wrapper {
    padding-top: 100px;
}

@media (max-width: 1024px) {
    .contact-grid-section {
        margin-top: 0;
        padding-bottom: 60px;
    }

    .info-side-wrapper {
        padding-top: 0;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay modifiers for stagger effect */
.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.delay-4 {
    transition-delay: 0.4s;
}

.reveal.delay-5 {
    transition-delay: 0.5s;
}


/* Section Titles */
.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    position: relative;
    padding: 4rem 3rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover::after {
    left: 120%;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-bold);
    border-color: transparent;
}

.service-card:hover i,
.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card:hover i {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 15px;
    transition: var(--transition-smooth);
}



.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.service-card p {
    line-height: 1.8;
    color: var(--medium-gray);
}

/* Why Choose Us */
.why-us {
    background: var(--off-white);
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.sub-title {
    color: var(--primary-green);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.feature-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.experience-showcase {
    position: relative;
}

.experience-showcase img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
}

.experience-badge:hover {
    transform: scale(1.05) rotate(-3deg);
    background: var(--primary-gold);
    color: var(--white);
}

.experience-badge h3 {
    color: var(--primary-green);
    font-size: 3.5rem;
    line-height: 1;
}

.experience-badge:hover h3 {
    color: var(--white);
}

.experience-badge p {
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.experience-badge:hover p {
    color: var(--white);
}


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

.stat-item {
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 20px rgba(197, 160, 89, 0.1);
}



.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-gold);
}


.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.project-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.project-overlay p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-smooth) 0.2s;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-overlay h3,
.project-item:hover .project-overlay p {
    transform: translateY(0);
}


/* Enquiry Form */
.contact-section {
    background: var(--off-white);
    color: var(--primary-dark);
}

.contact-section .section-title h2 {
    color: var(--primary-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-dark);
    border-radius: 4px;
    outline: none;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}


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

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    z-index: 200000;
    /* Absolute highest priority */
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 1000px;
    display: flex;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
    animation: modalEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-left {
    flex: 1;
    background: linear-gradient(135deg, var(--black), #1a1a1a);
    padding: 4rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-right {
    flex: 1.2;
    padding: 4rem;
    background: var(--white);
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 900px) {
    .modal-content {
        flex-direction: column;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-left {
        padding: 3rem 2rem;
    }

    .modal-right {
        padding: 2rem;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium-gray);
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--primary-gold);
}

footer a {
    color: var(--white);
    transition: var(--transition-fast);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

footer .logo:hover {
    padding-left: 0;
}

footer .logo-img {
    height: 100px;
    width: 115px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .about-content,
    .enquiry-grid {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .about-image-wrapper {
        min-width: 100% !important;
    }

    .navbar {
        padding: 1.5rem 0;
    }

    .navbar.scrolled {
        padding: 0.8rem 0;
    }

    .menu-btn {
        display: flex !important;
        margin-left: auto;
    }

    .navbar.scrolled .menu-btn {
        background: var(--primary-gold);
        /* solid color for better visibility */
        border-color: var(--primary-gold);
    }

    .navbar.scrolled .menu-btn span {
        background: var(--white) !important;
        /* white icon on gold button */
    }

    /* Mobile Typography */
    h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem) !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
        clip-path: none;
        /* Remove clip-path on mobile for better visibility */
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        /* Fallback */
        height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 2rem;
        /* Reduced from 8rem/10rem for better visibility */
        gap: 0.4rem;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links li {
        flex-shrink: 0;
        /* Prevent items from shrinking */
    }

    /* Hide background logo when menu is open to avoid "double logo" look */
    body.menu-open .navbar>.container>.nav-content>.logo {
        opacity: 0;
        visibility: hidden;
    }

    .mobile-cta-only {
        display: block !important;
        margin-bottom: 1rem !important;
        /* Reduced from 2rem */
    }

    .desktop-cta-only {
        display: none !important;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-header {
        display: block;
        margin-bottom: 1rem;
        /* Reduced from 3rem */
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.5s ease 0.2s;
    }

    .nav-links.active .mobile-menu-header {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: calc(0.1s * var(--i));
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.7rem;
        color: var(--white) !important;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        position: relative;
    }

    .nav-links .mobile-menu-header .logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        font-size: 1.8rem;
        color: var(--white) !important;
    }

    .nav-links .mobile-menu-header .logo-img {
        height: 48px;
        width: 55px;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-gold);
        transition: var(--transition-smooth);
    }

    .nav-links a:hover::before {
        width: 50px;
    }

    .nav-links .nav-cta {
        margin-top: 0.5rem;
        padding: 0.6rem 1.8rem !important;
        background: var(--primary-gold);
        color: var(--white) !important;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .mobile-menu-footer {
        display: block;
        margin-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease 0.8s;
    }

    .nav-links.active .mobile-menu-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-footer p {
        color: var(--medium-gray);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 1rem;
    }

    .mobile-socials {
        display: flex;
        gap: 2rem;
        justify-content: center;
    }

    .mobile-socials a {
        font-size: 1.5rem !important;
        padding: 0 !important;
        color: var(--primary-gold) !important;
    }

    /* Spectacular Mobile Experience Refinements */
    .section-padding {
        padding: 60px 0;
    }

    .premium-header-section {
        padding: 140px 0 80px !important;
    }

    .glass-card {
        padding: 2.5rem 1.5rem !important;
        margin-top: -50px !important;
        border-radius: 20px !important;
    }

    .premium-badge {
        font-size: 0.7rem !important;
        padding: 0.6rem 1.2rem !important;
    }

    .enquiry-grid {
        gap: 4rem !important;
    }

    .info-item-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem !important;
    }

    .contact-icon-box {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem !important;
    }

    .submit-btn-premium {
        padding: 1.2rem !important;
        font-size: 1rem !important;
    }
}

/* Brand Identity Showcase */
.brand-showcase {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('assets/gold_hero.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    animation: fadeIn 2s ease;
}

.estd-text {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 12px;
    text-transform: uppercase;
    opacity: 0.9;
}

.brand-main-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(4rem, 15vw, 12rem);
    color: var(--white);
    line-height: 0.8;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    padding: 0 20px;
}

.brand-main-title::before,
.brand-main-title::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    background: var(--primary-gold);
    top: 50%;
    transform: translateY(-50%);
}

.brand-main-title::before {
    left: -80px;
}

.brand-main-title::after {
    right: -80px;
}

.llp-text {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 20px;
    text-transform: uppercase;
    margin-top: 1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding-top: 1.5rem;
}

/* Make it responsive */
@media (max-width: 1024px) {

    .brand-main-title::before,
    .brand-main-title::after {
        display: none;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: scale(0.9) translateY(2px);
    transition: all 0.1s ease;
}

.back-to-top i {
    transition: transform 0.3s ease;
}

/* Contact Icon Box Active State */
.contact-icon-box:active {
    transform: scale(0.85);
    background: var(--primary-dark);
    color: var(--white);
    transition: all 0.1s ease;
}

/* Premium Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 10;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .brand-showcase {
        height: 60vh;
    }

    .brand-main-title {
        font-size: 5rem;
        letter-spacing: 0;
    }

    .estd-text {
        font-size: 0.8rem;
        letter-spacing: 6px;
    }

    .llp-text {
        font-size: 0.9rem;
        letter-spacing: 8px;
        padding-top: 1rem;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
    background: #25D366;
    animation-delay: 0.2s;
}

.call-btn {
    background: var(--primary-gold);
    animation-delay: 0.4s;
}

.floating-btn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.call-btn:hover {
    background: var(--primary-dark);
}

.floating-btn i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Pulsing effect for WhatsApp */
.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 30px;
        left: 20px;
        gap: 1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .back-to-top {
        bottom: 30px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Welcome Modal Specific Styles - Perfected & Centered */
.welcome-modal-content {
    max-width: 650px !important;
    width: 95% !important;
    /* Ensures it doesn't break on mid-size screens */
    background: #ffffff !important;
    border-radius: 30px !important;
    border: 1px solid rgba(197, 160, 89, 0.1) !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2) !important;
    overflow: hidden !important;
    /* Keep everything inside rounded corners */
    text-align: center;
    padding: 0 !important;
    /* Reset inherited padding from .modal-content */
    margin: 0 auto !important;
}

.welcome-modal-inner {
    padding: 2.2rem 3rem !important;
    /* Balanced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    box-sizing: border-box !important;
}

.welcome-modal-inner .premium-badge {
    padding: 0.5rem 1.5rem;
    margin: 0 auto 1.2rem;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.1);
    display: inline-flex;
}

.welcome-modal-inner h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.welcome-modal-inner p {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.welcome-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    width: 100%;
    margin: 0 auto;
    /* Ensure grid itself is centered */
    box-sizing: border-box;
}

.welcome-contact-card {
    background: #fdfdfd;
    padding: 1.5rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.welcome-contact-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-gold);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    color: var(--primary-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

/* WhatsApp Green Theme - More Vivid */
.whatsapp-card .contact-card-icon {
    background: rgba(37, 211, 102, 0.08);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-card:hover .contact-card-icon {
    background: #25D366 !important;
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Call Gold Theme */
.call-card .contact-card-icon {
    background: rgba(197, 160, 89, 0.08);
    color: var(--primary-gold);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.call-card:hover .contact-card-icon {
    background: var(--primary-gold) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Mail Dark Theme */
.mail-card .contact-card-icon {
    background: rgba(17, 17, 17, 0.05);
    color: var(--primary-dark);
}

.mail-card:hover .contact-card-icon {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.welcome-contact-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.welcome-contact-card p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.4;
    opacity: 0.8;
}

.close-modal#closeWelcomeModal {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.close-modal#closeWelcomeModal:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .welcome-modal-content {
        width: 90% !important;
        max-width: 450px !important;
        margin: 0 auto;
        max-height: 85vh;
        /* Prevents it from being too long */
        overflow-y: auto;
    }

    .welcome-modal-inner {
        padding: 2rem 1.2rem !important;
        /* Reduced padding for compactness */
    }

    .welcome-modal-inner h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .welcome-modal-inner p {
        font-size: 0.85rem !important;
        margin-bottom: 1.2rem !important;
    }

    .welcome-contact-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .welcome-contact-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.8rem 1.2rem;
        gap: 1.2rem;
        border-radius: 18px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0;
        font-size: 1.1rem;
    }

    .welcome-contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .welcome-contact-card p {
        display: none;
    }

    .close-modal#closeWelcomeModal {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Warehouses Gallery Modal Styles */
.project-item.clickable {
    cursor: pointer;
}

.gallery-modal-content {
    background: #111111;
    width: 95%;
    max-width: 1200px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    position: relative;
    padding: 3rem;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.2);
    animation: modalEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 1.5rem;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gallery-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    overflow-y: auto;
    padding-right: 10px;
    flex-grow: 1;
}

/* Custom Scrollbar for gallery-grid */
.gallery-grid::-webkit-scrollbar {
    width: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 2rem 1.5rem;
        height: 90vh;
    }

    .gallery-header {
        padding-right: 3rem;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item {
        height: 160px;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 300000;
    /* Above all other elements */
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 300010;
}

.close-lightbox:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: modalEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--white);
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 300010;
}

.lightbox-nav:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Make Lightbox responsive on small screens */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .close-lightbox {
        top: 20px;
        right: 25px;
        font-size: 2.2rem;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}

/* Pricing Section Styles */
.pricing-subtitle {
    color: var(--primary-gold);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.pricing-package-card {
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 24px;
    padding: 4rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.pricing-package-card:hover {
    box-shadow: var(--shadow-bold);
    border-color: rgba(197, 160, 89, 0.3);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(197, 160, 89, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.package-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-badge {
    align-self: flex-start;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.25);
}

.package-name {
    font-size: 2.8rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.package-price-wrap {
    text-align: right;
}

.price-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    font-family: var(--font-body);
}

.price-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.2rem;
    font-weight: 600;
}

.package-intro-text {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 3rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: #fbfbfb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.pricing-card:hover {
    background: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.08);
    transform: translateY(-3px);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.card-title-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.pricing-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.pricing-card:hover .pricing-card-icon {
    background: var(--primary-gold);
    color: var(--white);
}

.pricing-card-header h4 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-card-arrow {
    color: var(--medium-gray);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Accordion Logic */
.pricing-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease, border-top 0.4s ease, padding-top 0.4s ease;
    margin-top: 0;
}

.pricing-card.active {
    background: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.1);
}

.pricing-card.active .pricing-card-body {
    max-height: 500px; /* arbitrary height to fit contents */
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.pricing-card.active .pricing-card-arrow {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-list li {
    font-size: 0.95rem;
    color: var(--medium-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.pricing-list li i {
    color: var(--primary-gold);
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Responsive Styles for Pricing Section */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-package-card {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .package-price-wrap {
        text-align: left;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-package-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .package-name {
        font-size: 2.2rem;
    }
    
    .price-val {
        font-size: 2.8rem;
    }
}