/* ===========================
   LUXURY WEDDING PHOTOGRAPHY WEBSITE
   Dark, Cinematic, Elegant Aesthetic
   =========================== */

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* COLORS */
:root {
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #999;
    --gold-accent: #FFD700;
    --white: #ffffff;
    --yellow: #FFD700;
    --light-grey: #f5f5f5;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.navbar.scrolled .navbar-logo img {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--yellow), transparent);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
    animation: overlay-pulse 8s ease-in-out infinite;
}

@keyframes overlay-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-20px);
    }
    50% {
        transform: translateX(0) translateY(-40px);
    }
    75% {
        transform: translateX(-20px) translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
    animation: slide-up 1.2s ease-out forwards;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
}

.hero-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--yellow), var(--yellow), transparent);
    margin: 0 auto 2rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: expand 1.5s ease-out forwards;
}

@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.hero-content::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--yellow), var(--yellow), transparent);
    margin: 2rem auto 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: expand 1.5s ease-out 0.3s forwards;
    animation-fill-mode: forwards;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.3), 0 2px 20px rgba(0, 0, 0, 0.4);
    word-spacing: 0.1em;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 4px 30px rgba(255, 215, 0, 0.3), 0 2px 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        text-shadow: 0 4px 40px rgba(255, 215, 0, 0.4), 0 2px 25px rgba(0, 0, 0, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.9;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in-delay 1.5s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fade-in-delay {
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fade-in-delay 1.5s ease-out 0.6s forwards;
    opacity: 0;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    padding: 1.1rem 3rem;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: inherit;
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1), 0 6px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: #000;
    transform: translateY(-4px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2), 0 12px 35px rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover::after {
    transform: translateX(100%);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes subtle-zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fade-in 1.2s ease-out forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.6s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.8s;
}

.fade-in-on-scroll {
    opacity: 0;
    animation: slide-up 1s ease-out forwards;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    padding: 6rem 2rem;
    background-color: var(--dark-secondary);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
}

.services {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--dark-bg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid var(--dark-tertiary);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--yellow);
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--dark-tertiary);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--yellow);
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

/* ===========================
   SERVICE DETAIL SECTION
   =========================== */
.service-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fade-in 0.3s ease;
}

.service-detail-container {
    background-color: var(--dark-secondary);
    padding: 3rem;
    max-width: 600px;
    position: relative;
    border: 1px solid var(--dark-tertiary);
}

.close-detail {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-detail:hover {
    color: var(--yellow);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

#service-features {
    margin-top: 2rem;
}

#service-features h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

#feature-list {
    list-style: none;
    color: var(--text-light);
}

#feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

#feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
}

.portfolio-categories {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-label:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background-color: var(--dark-tertiary);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
    filter: grayscale(100%);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery {
    padding: 6rem 2rem;
    background-color: var(--dark-secondary);
}

.gallery-subtitle {
    text-align: center;
    max-width: 900px;
    margin: -2rem auto 3rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-tertiary);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(10%);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.gallery-item:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
}

/* ===========================
   LIGHTBOX MODAL
   =========================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
    animation: fade-in 0.3s ease;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 3001;
}

.lightbox-close:hover {
    color: var(--yellow);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lightbox-nav:hover {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}

/* ===========================
   VIDEOGRAPHY COLLECTIONS SECTION
   =========================== */
.videography-collections {
    padding: 6rem 2rem;
    background-color: var(--dark-secondary);
}

.collections-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.collection-card {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-tertiary) 100%);
    padding: 2.5rem;
    border: 1px solid var(--dark-tertiary);
    transition: all 0.5s ease;
    position: relative;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.collection-card:hover {
    border-color: var(--yellow);
    transform: translateY(-12px);
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-card.featured-collection {
    border-color: var(--yellow);
    transform: scale(1.03);
}

.collection-card.featured-collection:hover {
    transform: scale(1.03) translateY(-12px);
}

.collection-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--yellow);
}

.collection-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 1px;
}

.collection-features {
    list-style: none;
}

.collection-features li {
    color: var(--text-light);
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.collection-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

/* ===========================
   FEATURED WEDDING FILMS SECTION
   =========================== */
.featured-films {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
}

.films-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.film-item {
    transition: all 0.5s ease;
}

.film-item:hover {
    transform: translateY(-8px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--dark-tertiary);
    margin-bottom: 1.5rem;
    border: 1px solid var(--dark-tertiary);
    transition: border-color 0.4s ease;
}

.film-item:hover .video-container {
    border-color: var(--yellow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.film-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.film-item:hover .film-caption {
    color: var(--yellow);
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials {
    padding: 6rem 2rem;
    background-color: var(--dark-secondary);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--dark-secondary);
    padding: 2.5rem;
    border-left: 3px solid var(--yellow);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--yellow);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.contact-email {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0.95rem 1.8rem;
    border: 2px solid var(--dark-tertiary);
    border-radius: 2px;
    background-color: transparent;
}

.contact-email:hover {
    color: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.25);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-tertiary);
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form button {
    align-self: center;
    margin-top: 1rem;
}

.form-message {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.form-message.error {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: #000;
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-tertiary);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .films-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-categories {
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }

    .lightbox-nav {
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
    }

    .lightbox-nav.prev {
        left: 1rem;
    }

    .lightbox-nav.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo img {
        height: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1rem;
    }

    .contact-container {
        padding: 0;
    }

    .service-detail-container {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
}
