/* Premium Services Section Enhancements */
.services-premium-bg {
    position: relative;
    background: linear-gradient(120deg, rgba(212,175,55,0.07) 0%, rgba(26,26,26,0.97) 100%);
    overflow: hidden;
}
.services-premium-bg::before {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.13) 0%, transparent 70%);
    z-index: 0;
}
.services-premium-bg::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
    z-index: 0;
}
.services-premium-bg .container {
    position: relative;
    z-index: 1;
}
.gold-divider {
    width: 90px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 24px auto 24px auto;
    box-shadow: 0 2px 12px 0 rgba(212,175,55,0.18);
}
.service-card.premium-animate {
    border: 2.5px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.12), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    position: relative;
    z-index: 1;
    animation: fadeUpCard 1.2s cubic-bezier(0.4,0,0.2,1) both;
}
.service-card.premium-animate::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: var(--gold-gradient);
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.3s;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}
.service-card.premium-animate:hover::after {
    opacity: 1;
    filter: blur(1.5px);
}
.service-card.premium-animate:hover {
    transform: translateY(-18px) scale(1.04) rotateX(6deg) rotateZ(-1deg);
    box-shadow: 0 24px 60px 0 rgba(212,175,55,0.22), 0 1.5px 8px 0 rgba(0,0,0,0.10);
}
@keyframes fadeUpCard {
    0% { opacity: 0; transform: translateY(60px) scale(0.98); }
    100% { opacity: 1; transform: none; }
}
.service-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 38px;
    background: var(--gold-gradient);
    color: var(--charcoal);
    font-family: var(--font-subheading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    border: none;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 rgba(212,175,55,0.13);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    z-index: 1;
}
.service-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--white);
    opacity: 0.18;
    transition: left 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
}
.service-btn:hover::before {
    left: 0;
}
.service-btn:hover {
    color: var(--gold);
    background: var(--charcoal);
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.22);
}
/* Floating WhatsApp Button */
/* Premium Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    background: rgba(26, 26, 26, 0.95);
    color: var(--gold);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 15px rgba(212, 175, 55, 0.1);
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--gold);
    animation: pulseGold 2s infinite;
}
@keyframes pulseGold {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}
body.no-scroll {
    overflow: hidden;
}

:root {

    /* Primary Colors */
    --charcoal: #1A1A1A;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-rgb: 212, 175, 55;
    --gold-light: #C9A961;
    
    /* Romantic & Cultural Undertones */
    --blush: #F5E6E0;
    --burgundy: #4A1A1A;
    --sage: #8B9D7D;
    --gray-light: #D3D3D3;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-padding: 100px 5%;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255,255,255,0.08);
    --glass-blur: blur(12px);
    --gold-gradient: linear-gradient(120deg, #D4AF37 0%, #fffbe6 50%, #C9A961 100%);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
    --glow-gold: 0 0 24px 4px rgba(212,175,55,0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

body {
    background-color: var(--charcoal);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

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

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

ul {
    list-style: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(15, 15, 15, 0.98);
    padding: 12px 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: var(--transition);
}


.logo img:hover {
    transform: scale(1.05);
}

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

nav ul li a {
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--gold);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none !important;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition);
}


@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block !important;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-nav-toggle.active {
        color: var(--gold);
        transform: rotate(90deg) translateY(0);
        position: fixed;
        right: 5%;
        top: 25px;
        transform-origin: center;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        backdrop-filter: blur(30px);
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
        visibility: hidden;
    }
    
    nav.active {
        right: 0;
        visibility: visible;
    }
    
    nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s 0.3s;
    }

    nav.active ul {
        opacity: 1;
        transform: translateY(0);
    }
    
    nav ul li a {
        font-size: 32px !important;
        letter-spacing: 5px !important;
        color: var(--white) !important;
        display: block !important;
    }
    
    .mobile-nav-toggle.active {
        color: var(--gold);
        transform: rotate(90deg);
        position: fixed;
        right: 5%;
        top: 25px;
    }
    
    .logo img {
        height: 60px;
    }
}




/* Hero Section */
.grid-item {
    position: relative;
    overflow: hidden;
    background: #1a1a1a; /* Placeholder color */
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center 20%;
    opacity: 0;
    animation: crossfade 24s infinite;
}
.bg-slide:nth-child(1) { animation-delay: 0s; }
.bg-slide:nth-child(2) { animation-delay: 6s; }
.bg-slide:nth-child(3) { animation-delay: 12s; }
.bg-slide:nth-child(4) { animation-delay: 18s; }

@keyframes crossfade {
    0% { opacity: 0; transform: scale(1.05) translateX(0); }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; transform: scale(1.1) translateX(-20px); }
    100% { opacity: 0; }
}
.hero-background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(26,26,26,0.9) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.5s;
    padding: 20px;
    z-index: 10;
    position: relative;
    /* Removed glass box styling for a cleaner premium look */
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 92px);
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 14px;
    font-family: var(--font-subheading);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}
.hero-content p::before, .hero-content p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
    transform: translateY(-50%);
}
.hero-content p::before { left: -50px; }
.hero-content p::after { right: -50px; }


.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-subheading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.12), 0 1.5px 8px 0 rgba(0,0,0,0.10);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.7;
    transition: var(--transition);
    z-index: -1;
    filter: blur(1.5px);
    animation: shine 2.5s linear infinite;
}
@keyframes shine {
    0% { left: -100%; }
    60% { left: 100%; }
    100% { left: 100%; }
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--charcoal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Common Section Styles */
section {
    padding: var(--section-padding);
    opacity: 0;
    transform: translateY(40px);
    animation: sectionFadeIn 1.2s forwards;
}
@keyframes sectionFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    color: var(--gold-light);
    font-family: var(--font-script);
    font-size: 28px;
    margin-top: 10px;
}

/* Portfolio Horizontal Scroll */
.portfolio-container {
    padding: 0;
    overflow: hidden;
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 60px 0;
}

.gallery-track {
    display: inline-flex;
    gap: 30px;
    animation: scrollGallery 40s linear infinite;
    padding-left: 30px;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.portfolio-item {
    min-width: 400px;
    height: 550px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 4px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--gold);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

/* Premium Services Section */
.premium-services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.premium-service-row {
    display: flex;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s forwards;
}

.premium-service-row:nth-child(2) {
    animation-delay: 0.2s;
}

.premium-service-row:nth-child(3) {
    animation-delay: 0.4s;
}

.premium-service-row.reverse {
    flex-direction: row-reverse;
}

.sr-image {
    flex: 1.3;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sr-image::before {
    content: '';
    display: block;
    padding-top: 70%; /* 10:7 aspect ratio */
}

.sr-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-service-row:hover .sr-image img {
    transform: scale(1.05);
}

.sr-content {
    flex: 0.7;
    padding: 0 60px;
    position: relative;
}

.sr-number {
    position: absolute;
    top: -60px;
    left: 20px;
    font-size: 180px;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.05);
    line-height: 1;
    z-index: 0;
    user-select: none;
    font-weight: 700;
}

.premium-service-row.reverse .sr-number {
    left: auto;
    right: 20px;
}

.sr-content h3 {
    font-size: 42px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    color: var(--white);
    letter-spacing: 1px;
}

.sr-content p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.sr-content ul {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.sr-content ul li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--gold-light);
    font-family: var(--font-subheading);
    letter-spacing: 1px;
}

.sr-content ul li::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--gold);
    margin-right: 15px;
}

.discover-link {
    display: inline-block;
    font-family: var(--font-subheading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    position: relative;
    padding-bottom: 6px;
    z-index: 1;
    font-weight: 600;
}

.discover-link::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.discover-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-link:hover {
    color: var(--white);
}

.discover-link:hover::after {
    width: 100%;
    background: var(--white);
}

/* Responsive adjustments for new layout */
@media (max-width: 992px) {
    .premium-service-row, .premium-service-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .sr-content {
        padding: 0 20px;
        text-align: center;
    }
    .sr-number {
        left: 50%;
        transform: translateX(-50%);
    }
    .premium-service-row.reverse .sr-number {
        right: auto;
        left: 50%;
    }
    .sr-content ul li {
        justify-content: center;
    }
    .sr-content ul li::before {
        display: none;
    }
}

/* Premium Pricing Section */
.packages {
    background: var(--charcoal);
    color: var(--white);
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.packages .section-header h2 {
    color: var(--white);
}

.premium-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.premium-pricing-card {
    position: relative;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 4px;
    padding: 1.5px; /* Border thickness */
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-pricing-card:hover {
    transform: translateY(-10px);
}

/* Unique Glow Animation */
.glow-border {
    position: absolute;
    top: 50%; left: 50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 70%, var(--gold) 100%);
    transform: translate(-50%, -50%);
    animation: rotateGlow 5s linear infinite;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.premium-pricing-card:hover .glow-border {
    opacity: 1;
    animation: rotateGlow 2s linear infinite;
}

@keyframes rotateGlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.card-content {
    background: #151515;
    padding: 50px 40px;
    border-radius: 3px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.badge {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 4px 12px;
    font-size: 11px;
    font-family: var(--font-subheading);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-content h3 {
    font-size: 16px;
    color: var(--gold-light);
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    font-family: var(--font-heading);
}

.price span {
    font-size: 24px;
    color: var(--gold);
}

.editorial-content {
    flex: 0 0 50%;
    margin-left: -10%;
    background: #141414;
    padding: 100px 80px;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.features li {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    display: flex;
    align-items: center;
}

.features li::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 15px;
    opacity: 0.5;
}

.premium-pricing-card.popular .card-content {
    background: linear-gradient(to bottom, #1a1a1a, #111);
}

.premium-pricing-card.popular .features li::before {
    opacity: 1;
    box-shadow: 0 0 8px var(--gold);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-item i {
    color: var(--gold);
    font-size: 24px;
}

.contact-item div h4 {
    font-family: var(--font-subheading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
}

input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Footer */
/* Premium Editorial Footer */
footer {
    padding: 120px 5% 60px;
    background: #111;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    color: var(--white);
    text-align: left;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}
.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.footer-brand p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 14px;
    max-width: 300px;
}
.footer-col h4 {
    font-family: var(--font-subheading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 15px;
}
.footer-col ul li a {
    color: var(--gray-light);
    font-size: 14px;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-contact p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 15px;
}
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px);
}
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}
}

.copyright {
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Portfolio Grid Page */
.portfolio-header {
    padding: 150px 5% 50px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
}

.portfolio-header h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 25px;
    font-family: var(--font-subheading);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

/* Portfolio grid: fix image aspect ratio and responsiveness */
.main-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 0 5%;
    margin-bottom: 100px;
    align-items: stretch;
}
/* Skeleton Loader Shimmer */
@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s infinite linear;
}

.grid-item {
    position: relative;
    aspect-ratio: 4/5;
    min-height: 320px;
    max-height: 520px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: stretch;
    transition: var(--transition);
    background: #1a1a1a; /* Base color */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 1s ease-in-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0; /* Hide until loaded */
    decoding: async;
}

.grid-item.loaded img {
    opacity: 1;
}

.grid-item.loaded {
    background: none;
    animation: none;
}


.grid-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.grid-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.grid-item:hover .grid-info {
    opacity: 1;
    transform: translateY(0);
}

.grid-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.grid-info p {
    font-family: var(--font-subheading);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 24px;
}

/* Premium Reviews Section */
.premium-reviews {
    background: var(--charcoal);
    padding: 120px 0; /* Full width for the marquee */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.reviews-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--charcoal), transparent);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--charcoal), transparent);
}

.reviews-track {
    display: inline-flex;
    gap: 40px;
    animation: scrollReviews 30s linear infinite;
    padding-left: 40px;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); } /* Adjust half exactly for the gap/spacing */
}

.review-card {
    display: inline-block;
    white-space: normal;
    width: 450px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px 40px;
    border-radius: 4px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.quote-bg {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.05);
    z-index: 0;
}

.review-card .stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.review-card .stars i {
    margin-right: 4px;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.review-author {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.review-author h4 {
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-subheading);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.review-author span {
    color: var(--gold-light);
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .review-card {
        width: 320px;
        padding: 40px 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    nav ul {
        display: none; /* Add mobile menu later */
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .portfolio-item {
        min-width: 300px;
        height: 450px;
    }
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 20px;
    height: 20px;
    background: rgba(212,175,55,0.25);
    animation: ripple 0.6s linear;
    z-index: 2;
}
@keyframes ripple {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Process Section - Horizontal Luxury Journey */
.process-section {
    padding: 150px 5%;
    background: linear-gradient(to bottom, #111, var(--charcoal));
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 100px;
    position: relative;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 40px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.process-item:hover .process-number {
    transform: scale(1.1);
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    border-color: var(--white);
}

.process-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.process-item p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
    .process-grid::before { display: none; }
}

@media (max-width: 600px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* Super Premium 'Cinema Reveal' Animation */
.cinema-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.96) translateY(40px);
    transition: 
        opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity, filter;
}

.cinema-reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}

/* Staggered Delay for Grid Items */
.cinema-reveal:nth-child(1) { transition-delay: 0.1s; }
.cinema-reveal:nth-child(2) { transition-delay: 0.3s; }
.cinema-reveal:nth-child(3) { transition-delay: 0.5s; }
.cinema-reveal:nth-child(4) { transition-delay: 0.7s; }

/* Floating Signature Glow */
.signature.float-anim {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    animation: premiumFloat 8s ease-in-out infinite;
}

/* Floating Animation */
@keyframes premiumFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: premiumFloat 6s ease-in-out infinite;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 100px 0;
    text-align: center;
}

.stat-item h2 {
    font-size: clamp(48px, 6vw, 72px);
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-family: var(--font-subheading);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--gray-light);
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

