/* ================================================
   🎬 SPVIDEO - AWWWARDS LEVEL CINEMA EXPERIENCE
   A Digital Wedding Story
   ================================================ */


/* ================== CSS VARIABLES ================== */

:root {
    /* Luxury Colors */
    --white-primary: #fdfdfd;
    --white-secondary: #f8f8f8;
    --black-primary: #1a1a1a;
    --gold: #d4a574;
    --gold-light: #e8c5a0;
    --accent: #f0e6d8;
    /* Cinematic Gradients */
    --gradient-soft: linear-gradient(135deg, rgba(253, 253, 253, 0.8), rgba(240, 230, 216, 0.8));
    --gradient-luxury: linear-gradient(135deg, #d4a574 0%, #e8c5a0 100%);
    /* Shadows - Premium */
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-med: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 50px rgba(212, 165, 116, 0.2);
    /* Timing Functions */
    --ease-cinema: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.33, 0.66, 0.66, 1);
}


/* ================== GLOBAL RESET ================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: var(--white-primary);
    color: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--black-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white-secondary);
}

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


/* ================== TYPOGRAPHY ================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}


/* ================== CINEMATIC PRELOADER ================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s var(--ease-cinema);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: logoReveal 1.2s var(--ease-cinema) forwards;
    opacity: 0;
}

.preloader-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    animation: textFadeIn 1.5s var(--ease-cinema) 0.3s forwards;
    opacity: 0;
}

.preloader-progress {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-top: 30px;
    overflow: hidden;
    border-radius: 1px;
    animation: progressRun 1.8s var(--ease-cinema) forwards;
}

.preloader-progress::after {
    content: '';
    height: 100%;
    background: var(--gradient-luxury);
    display: block;
    animation: progressFill 1.8s var(--ease-cinema) forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}


/* ================== NAVIGATION ================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 253, 253, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(253, 253, 253, 0.95);
    box-shadow: var(--shadow-light);
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--black-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease-cinema);
}

.nav-link:hover {
    color: var(--gold);
}

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


/* ================== HERO SECTION ================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.15), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(100px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-headline {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.char {
    display: inline-block;
    opacity: 0;
    animation: charRise 0.6s var(--ease-cinema) forwards;
}

@keyframes charRise {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: slideUp 0.8s var(--ease-cinema) 0.8s forwards;
    opacity: 0;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: codeAppear 0.8s var(--ease-cinema) 1.2s forwards;
    opacity: 0;
}

@keyframes codeAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================== BUTTONS - MAGNETIC EFFECT ================== */

.btn {
    position: relative;
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--black-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    color: var(--white-primary);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
}

.btn-primary {
    background: var(--gradient-luxury);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border-color: var(--gold);
    color: var(--gold);
}

.hero .btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.hero .btn-secondary::before {
    background: #fff;
}

.hero .btn-secondary:hover {
    color: var(--black-primary);
}


/* ================== SECTION STYLES ================== */

section {
    position: relative;
    padding: 8rem 5% 6rem;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    animation: titleFadeIn 0.8s var(--ease-cinema);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-luxury);
    margin: 1rem auto 0;
    border-radius: 2px;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================== GALLERY - MASONRY ================== */

.gallery {
    background: var(--white-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: all 0.4s var(--ease-cinema);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-cinema);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-icon {
    font-size: 3rem;
    color: var(--gold);
}


/* ================== LIGHTBOX ================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-cinema);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoom 0.5s var(--ease-cinema);
}

@keyframes lightboxZoom {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}


/* ================== ALBUM SECTION ================== */

.album {
    background: var(--white-primary);
    min-height: 120vh;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.album-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: all 0.4s var(--ease-cinema);
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.album-card img,
.album-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-title {
    color: white;
    font-size: 1.3rem;
    animation: slideUpText 0.4s var(--ease-cinema);
}

@keyframes slideUpText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================== FULLSCREEN ALBUM ================== */

.album-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-primary);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-cinema);
}

.album-fullscreen.active {
    opacity: 1;
    visibility: visible;
}

.album-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s var(--ease-cinema);
}

.album-slide.active {
    opacity: 1;
}

.album-slide img,
.album-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 25s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05) translateY(-2%);
    }
    100% {
        transform: scale(1);
    }
}

.album-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-fullscreen:hover .album-controls {
    opacity: 1;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: white;
    color: var(--black-primary);
}


/* ================== VIDEO PLAYER ================== */

.video-player {
    position: relative;
    width: 100%;
    background: var(--black-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-med);
    margin: 2rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-player:hover .video-controls {
    opacity: 1;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: var(--progress, 0%);
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.page-hero {
    padding: 11rem 5% 5rem;
    background: radial-gradient(circle at 10% 20%, rgba(212, 165, 116, 0.18), transparent 40%), radial-gradient(circle at 90% 10%, rgba(212, 165, 116, 0.12), transparent 35%), linear-gradient(165deg, #ffffff 0%, #f7f3ee 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.4rem;
    margin-bottom: 1rem;
}

.page-hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 165, 116, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
}

.stats-grid,
.team-grid,
.process-grid,
.service-grid,
.why-grid,
.contact-grid {
    display: grid;
    gap: 1.5rem;
}

.stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid,
.process-grid,
.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.team-card,
.process-card,
.why-card,
.service-card-pro,
.package-card-pro,
.contact-card {
    background: #fff;
    border: 1px solid rgba(212, 165, 116, 0.18);
    border-radius: 14px;
    box-shadow: var(--shadow-light);
    padding: 1.5rem;
    transition: transform 0.35s var(--ease-cinema), box-shadow 0.35s var(--ease-cinema);
}

.team-card:hover,
.process-card:hover,
.why-card:hover,
.service-card-pro:hover,
.package-card-pro:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.team-icon,
.why-icon,
.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--gradient-luxury);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.price-tag {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-media {
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    display: block;
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-link {
    color: var(--black-primary);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-form select,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(212, 165, 116, 0.35);
    border-radius: 8px;
    background: #fff;
    color: var(--black-primary);
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.cta-band {
    margin-top: 2rem;
    text-align: center;
}


/* ================== TESTIMONIALS ================== */

.testimonials {
    background: var(--white-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white-primary);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--accent);
    box-shadow: var(--shadow-light);
    transition: all 0.4s var(--ease-cinema);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-luxury);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-cinema);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black-primary);
}


/* ================== FOOTER ================== */

footer {
    background: var(--black-primary);
    color: var(--white-primary);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-section a {
    color: var(--white-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--accent);
    padding-top: 2rem;
    color: #999;
}


/* ================== RESPONSIVE ================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-headline {
        font-size: 2.5rem;
        min-height: auto;
    }
    .hero-subtext {
        font-size: 1rem;
    }
    .hero-cta {
        gap: 1rem;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    section {
        padding: 4rem 5% 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .hero-headline {
        font-size: 1.8rem;
        min-height: auto;
    }
    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }
    .nav-logo {
        font-size: 1rem;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    section {
        padding: 2rem 5% 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}


/* ================== VIDEO SECTION ================== */

.video-section {
    padding: 8rem 5% 6rem;
    background: var(--white-primary);
}

.video-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .video-section .container {
        grid-template-columns: 1fr;
    }
}


/* ================== ABOUT PAGE ================== */

.about-content {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}


/* ================== SERVICES PAGE ================== */

.services-content {
    padding: 4rem 5%;
}

.service-detail {
    background: var(--white-secondary);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--gold);
}

.service-detail h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}


/* ================== CONTACT PAGE ================== */

.contact-content {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white-secondary);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--black-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--accent);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    text-align: center;
    padding: 2rem;
}

.info-box i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-box h4 {
    margin-bottom: 0.5rem;
}