/* ===== HOME PAGE STYLES - TRULY FIXED VERSION ===== */

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.logo-pulse img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.preloader-text {
    color: #d4af37;
    font-size: 1.5rem;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    animation: fadeInOut 3s ease-in-out infinite;
}

.preloader-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* HEADER - MOBILE FIX */
.logo-large {
    width: 70px !important;
    height: 70px !important;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-large {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.8;
    line-height: 1;
    margin-top: 2px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cinematic-bars {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.cinematic-bars.top {
    top: 0;
}

.cinematic-bars.bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.focus-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: focusPulse 4s ease-in-out infinite;
}

@keyframes focusPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 15s linear;
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-left: var(--side-padding);
    padding-top: 80px;
}

.hero-title-wrapper {
    overflow: hidden;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 0.2rem;
    color: var(--color-white);
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }
.title-line:nth-child(4) { animation-delay: 0.7s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.hero-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-accent);
    color: var(--color-white);
    animation: textFade 3s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes textFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.frame-counter {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 3;
    text-align: right;
}

.frame-number {
    font-size: 2.5rem;
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-weight: 300;
    letter-spacing: 3px;
}

.frame-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-accent);
    margin-top: 0.3rem;
}

/* === ABOUT SECTION WITH FIXED COUNTER === */
.about {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* === ABOUT IMAGE — exact 3:4 portrait frame (1350×1800 photo) === */
.about-image {
    align-self: flex-start;       /* don't stretch vertically */
    width: 100%;
}

.about-image .image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;          /* exact ratio of the Madhan photo */
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: #060606;
}

.about-image .image-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;            /* fills the 3:4 frame — no crop since ratio matches */
    object-position: center center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image .image-frame:hover img {
    transform: scale(1.03);
}

/* Mobile — keep 3:4 ratio, just narrower */
@media (max-width: 768px) {
    .about-image {
        align-self: auto;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    .about-image .image-frame {
        aspect-ratio: 3 / 4;      /* same ratio on mobile */
    }
    .about-image .image-frame img {
        transform: none;
    }
    .about-image .image-frame:hover img {
        transform: scale(1.02);
    }
}

.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.image-frame:hover .frame-overlay {
    opacity: 1;
}

.director-tag {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-family: var(--font-accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.about-story {
    margin-bottom: 3rem;
}

.story-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
}

.story-text {
    flex: 1;
}

.story-quote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-size: 2rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.story-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* ✅ FIXED COUNTER SECTION - PREVENT SHAKE */
.stats-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    /* ✅ LOCK the container to prevent layout shift */
    contain: layout;
    min-height: 400px;
}

.stats-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.stats-header h3 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ✅ PERFECT ANTI-SHAKE NUMBER STYLES */
.stat-number {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--color-gold);
    font-family: var(--font-accent);
    margin-bottom: 0.3rem;
    line-height: 1;
    /* ✅ CRITICAL: Makes numbers same width (no left/right jump) */
    display: inline-block;
    min-width: 5ch; /* Reserves space for up to 5 characters */
    font-variant-numeric: tabular-nums; /* ✅ Pro tip: typewriter-style numbers */
    /* ✅ NO transitions - instant updates */
    transition: none !important;
    /* ✅ GPU optimization for smooth rendering */
    will-change: transform;
    backface-visibility: hidden;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-accent);
    margin: 0;
    line-height: 1.4;
}

.signature-block {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.signature-line {
    width: 100px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 1rem;
}

.signature-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-accent);
}

/* ✅ SMOOTH FADE FOR SCROLL ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === CINEMATIC SHOWCASE === */
.cinematic-showcase {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.cinematic-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.05) 0%, transparent 50%);
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-family: var(--font-accent);
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.showcase-item h3 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.showcase-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* === SERVICES PREVIEW === */
.services-preview {
    padding: var(--space-xxl) 0;
    background: var(--color-light);
}

.service-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), #f7c94b);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hard);
    border-color: var(--color-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-text);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-highlights span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-accent);
    letter-spacing: 1px;
}

/* === GALLERY === */
.featured-gallery {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
    position: relative;
}

.featured-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: var(--space-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9));
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gallery-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.gallery-frame {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* === PRICING === */
.pricing {
    padding: var(--space-xxl) 0;
    background: var(--color-light);
}

.package-category-title {
    font-size: 1.8rem;
    color: var(--color-black);
    font-weight: 500;
    margin: 4rem 0 2rem;
    text-align: center;
    font-family: var(--font-heading);
}

.package-category-title i {
    color: var(--color-gold);
    margin-right: 0.8rem;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.price-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.price-card:hover::before {
    opacity: 1;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
    border-color: var(--color-gold);
}

.price-card.highlight {
    border-color: var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.price-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card .badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 3rem;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
    font-weight: 600;
}

.price-card.special {
    background: linear-gradient(135deg, var(--color-white) 0%, #f9f9f9 100%);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-gold);
}

.package-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: 1px;
    font-family: var(--font-accent);
    text-transform: uppercase;
}

.price-subtitle {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.package-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 2rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.package-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.package-list li:last-child {
    border-bottom: none;
}

/* === TESTIMONIALS === */
.cinematic-testimonials {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.testimonial-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    transform: scale(1.1);
    filter: brightness(0.7);
    z-index: 1;
}

.testimonial-bg-layer.active {
    opacity: 1;
    transform: scale(1);
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.testimonial-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    text-align: center;
    padding: var(--space-xl);
    width: 100%;
}

.testimonial-header {
    margin-bottom: 4rem;
}

.testimonial-slide {
    display: none;
    color: var(--color-white);
}

.testimonial-slide.active {
    display: block;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.testimonial-quote {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-family: var(--font-heading);
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 4rem;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: -1rem;
    left: 0;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: -1rem;
    right: 0;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 2rem;
}

.author-name {
    font-size: 1.2rem;
    font-family: var(--font-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.author-event {
    font-size: 0.9rem;
    color: var(--color-gold);
    opacity: 0.8;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* === CTA === */
.premium-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-family: var(--font-accent);
    margin-bottom: 1rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: var(--font-accent);
    letter-spacing: 1px;
}

/* === FOOTER === */
.footer-logo-img {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-scroll {
        display: none !important;
    }
    
    .hero-content {
        padding: 0 var(--side-padding);
        text-align: center;
        padding-top: 120px;
    }
    
    .about-content {
        padding-left: 0;
        padding-top: var(--space-xl);
    }
    
    .hero-title-wrapper {
        text-align: center;
    }
    
    .title-line {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .frame-counter {
        right: 2rem;
        bottom: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* MOBILE HEADER FIX - SHOW LOGO TEXT */
    .logo-text {
        display: flex !important;
    }
    
    .logo-large {
        width: 50px !important;
        height: 50px !important;
    }
    
    .logo-title {
        font-size: 0.75rem;
    }
    
    .logo-subtitle {
        font-size: 0.5rem;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-title-wrapper {
        margin-top: 2rem;
    }
    
    .title-line {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 1.5rem 0 2.5rem;
    }
    
    .pricing-grid-4,
    .gallery-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.highlight {
        transform: none;
    }
    
    .price-card.highlight:hover {
        transform: translateY(-10px);
    }
    
    .service-card,
    .price-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content {
        padding: var(--space-lg);
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-quote i:first-child,
    .testimonial-quote i:last-child {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 80vh;
    }
    
    .title-line {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        min-width: 4ch;
    }
    
    .showcase-item {
        padding: 2rem 1.5rem;
    }
    
    .frame-counter {
        display: none;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 0.5rem;
    }
}
.cinematic-testimonials {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-bg-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.testimonial-bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.testimonial-bg-layer.active { opacity: 1; }

.testimonials-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darken bg for text readability */
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.text-gold { color: #D4AF37; } /* Gold color for highlights */

.testimonial-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-slide.active { display: block; }

.testimonial-quote p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin: 20px 0;
}

.author-name {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.author-event {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #D4AF37;
}

.testimonial-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dot {
    height: 10px; width: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active { background: #D4AF37; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   ARTISTRY IN MOTION — EDITORIAL REDESIGN
══════════════════════════════════════════════════ */
.artistry-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0;
}

.artistry-bg-layer {
    position: absolute;
    inset: 0;
}

.artistry-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.3) saturate(0.6);
    transform: scale(1.04);
    animation: artBgDrift 20s ease-in-out infinite alternate;
}

@keyframes artBgDrift {
    from { transform: scale(1.04) translateX(0); }
    to   { transform: scale(1.04) translateX(-1.5%); }
}

.artistry-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, transparent 20%, rgba(0,0,0,0.75) 80%),
                linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%);
}

.artistry-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.artistry-header {
    color: #fff;
}

.artistry-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.artistry-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--color-gold);
}

.artistry-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

.artistry-title em {
    font-style: italic;
    color: var(--color-gold);
    display: block;
}

.artistry-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    font-weight: 300;
    max-width: 480px;
}

/* Right: stacked pillars */
.artistry-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.artistry-pillar {
    display: grid;
    grid-template-columns: 3rem 1px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: all 0.4s ease;
    cursor: default;
}

.artistry-pillar:last-child {
    border-bottom: none;
}

.artistry-pillar:hover {
    background: rgba(212,175,55,0.03);
    padding-left: 0.5rem;
}

.pillar-num {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    padding-top: 0.4rem;
    font-weight: 600;
}

.pillar-line {
    width: 1px;
    background: rgba(212,175,55,0.2);
    align-self: stretch;
    min-height: 60px;
    transition: background 0.4s;
}

.artistry-pillar:hover .pillar-line {
    background: var(--color-gold);
}

.pillar-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.artistry-pillar:hover .pillar-body h3 {
    color: var(--color-gold);
}

.pillar-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* Responsive artistry */
@media (max-width: 900px) {
    .artistry-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .artistry-title {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
    }
}

/* ══════════════════════════════════════════════════
   OUR CRAFT — CINEMATIC SERVICE CARDS
══════════════════════════════════════════════════ */
.craft-section {
    background: #080808;
    padding: 7rem 0 0;
}

.craft-header {
    margin-bottom: 4rem;
}

.craft-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.craft-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    color: #fff;
    margin: 0;
}

/* Full-width horizontal cards strip */
.craft-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 70vh;
    margin-bottom: 5rem;
}

.craft-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 540px;
}

.craft-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(0.75);
    transform: scale(1.08);
    transition: transform 0.9s cubic-bezier(0.165,0.84,0.44,1),
                filter 0.6s ease;
}

.craft-card:hover .craft-card-bg {
    transform: scale(1.0);
    filter: brightness(0.6) saturate(1);
}

.craft-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.1) 100%
    );
    transition: background 0.5s ease;
}

.craft-card:hover .craft-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98) 0%,
        rgba(0,0,0,0.55) 55%,
        rgba(212,175,55,0.06) 100%
    );
}

/* Gold left-edge accent on hover */
.craft-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    transition: height 0.6s cubic-bezier(0.165,0.84,0.44,1);
}

.craft-card:hover::after {
    height: 100%;
}

.craft-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2.5rem 3rem;
}

.craft-card-num {
    font-family: var(--font-accent);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212,175,55,0.1);
    line-height: 1;
    letter-spacing: -2px;
    transition: color 0.4s;
}

.craft-card:hover .craft-card-num {
    color: rgba(212,175,55,0.2);
}

.craft-card-body {
    transform: translateY(8px);
    transition: transform 0.5s ease;
}

.craft-card:hover .craft-card-body {
    transform: translateY(0);
}

.craft-card-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.craft-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.craft-card-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
}

.craft-card:hover .craft-card-desc {
    max-height: 120px;
    opacity: 1;
}

.craft-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.craft-card-tags span {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(212,175,55,0.8);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s;
}

.craft-card:hover .craft-card-tags span {
    border-color: rgba(212,175,55,0.5);
    color: var(--color-gold);
}

.craft-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.3rem;
    transition: color 0.3s, border-color 0.3s;
}

.craft-card-btn:hover,
.craft-card:hover .craft-card-btn {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.craft-card-btn i {
    transition: transform 0.3s;
}

.craft-card:hover .craft-card-btn i {
    transform: translateX(4px);
}

/* Dividers between cards */
.craft-card + .craft-card {
    border-left: 1px solid rgba(255,255,255,0.06);
}

/* Bottom discover CTA */
.craft-section > .text-center {
    padding-bottom: 7rem;
    background: #080808;
}

/* Responsive craft cards */
@media (max-width: 900px) {
    .craft-cards-wrap {
        grid-template-columns: 1fr;
    }

    .craft-card {
        min-height: 400px;
    }

    .craft-card + .craft-card {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .craft-card-desc {
        max-height: 200px;
        opacity: 1;
    }
}