/* ════════════════════════════════════════
   Maggie's Hair & Bridal — Premium Design System
   ════════════════════════════════════════ */

/* ── Fonts & Tokens ── */
:root {
    --gold:        #c9a84c;
    --gold-light:  #e8d5a3;
    --gold-dark:   #9a7a30;
    --cream:       #faf6f0;
    --champagne:   #f2e8d8;
    --charcoal:    #1a1a1a;
    --text:        #2d2d2d;
    --muted:       #7a7267;
    --white:       #ffffff;
    --border:      rgba(201,168,76,0.2);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   30px;
    --shadow-sm:   0 4px 20px rgba(0,0,0,0.06);
    --shadow-md:   0 12px 40px rgba(0,0,0,0.10);
    --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);
    --transition:  all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; }
h3 { font-size: 1.6rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; color: var(--gold-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.6rem;
    border-radius: var(--radius-lg);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px;
    cursor: pointer; border: none;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,0.4); }
.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ── Section Headers ── */
.section-eyebrow {
    display: block; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--gold); margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-subtitle { max-width: 540px; margin: 1.5rem auto 0; color: var(--muted); }

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 1.2rem 0;
    background: transparent;
    transition: var(--transition);
}
#navbar.scrolled {
    background: var(--cream);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}
#navbar.scrolled .logo img { height: 70px; }
.nav-content { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 115px; transition: var(--transition); filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15)); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
    color: var(--white); position: relative;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.72rem !important; padding: 0.7rem 1.8rem !important; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); }
#navbar.scrolled .menu-toggle span { background: var(--text); }



/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; text-align: center;
    color: var(--white); overflow: hidden;
}
.hero-bg-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.03);
    animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,5,2,0.35) 0%, rgba(10,5,2,0.15) 50%, rgba(10,5,2,0.6) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    animation: heroFadeUp 1.4s ease-out both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    display: block; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 5px;
    color: var(--gold-light); margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 40px rgba(0,0,0,0.3); }
.hero h1 em { color: var(--gold-light); text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.25); }
.hero p { 
    font-size: 1.05rem; opacity: 1; color: var(--white);
    max-width: 560px; margin: 0 auto 2.5rem; font-weight: 400; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; z-index: 1;
}
.scroll-line {
    width: 1px; height: 60px; background: rgba(255,255,255,0.4);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { transform: scaleY(0); transform-origin: top; }
    50%      { transform: scaleY(1); transform-origin: top; }
}

/* ════════════════════════════════════════
   AWARDS BAR  — FIXED: removed filter that was blanking out images
   ════════════════════════════════════════ */
.awards-section {
    background: #2d2820;
    padding: 2rem 0;
    overflow: hidden;
}
.awards-label {
    text-align: center; font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 5px;
    color: var(--gold); margin-bottom: 2rem;
}
.awards-track-wrapper { overflow: hidden; }
.awards-track {
    display: flex; gap: 4rem; align-items: center;
    animation: awardsScroll 30s linear infinite;
    width: max-content;
    padding-bottom: 3.5rem; /* Exactly enough room for the angled reflection */
}
.awards-track img {
    height: 80px; width: auto;
    opacity: 0.9;
    transition: var(--transition);
    flex-shrink: 0;
    transform: perspective(800px) rotateX(15deg);
    -webkit-box-reflect: below -2px linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.15));
}
.awards-track img:hover { opacity: 1; transform: perspective(800px) rotateX(0deg) scale(1.08); }
@keyframes awardsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 6rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-inner {
    border-radius: var(--radius-md); overflow: hidden;
    aspect-ratio: 4/5; box-shadow: var(--shadow-md);
}
.about-image-inner img { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.about-image-accent {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 60%; height: 60%;
    border: 2px solid var(--gold); border-radius: var(--radius-md);
    z-index: -1; opacity: 0.4;
}
.about-text .section-eyebrow { margin-bottom: 0.5rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1rem; }
.stat-row { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold-dark); }
.stat span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services-section {
    background: var(--cream);
    position: relative; overflow: hidden;
}
.services-section::before {
    content: 'BEAUTY'; font-family: 'Cormorant Garamond', serif;
    font-size: 18vw; color: rgba(201,168,76,0.04);
    position: absolute; bottom: -2rem; right: -2rem; pointer-events: none; line-height: 1;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 1.2rem 2.4rem 2rem; position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.service-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.8rem; }
.service-card h3 { font-size: 1.6rem; margin-bottom: 0.3rem; }
.service-duration { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 1.5rem; display: block; }
.service-list li {
    font-size: 0.88rem; padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--muted); padding-left: 1.2rem; position: relative;
}
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.service-pricing-hint { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-pricing-hint span { font-size: 0.85rem; color: var(--muted); }
.service-pricing-hint strong { color: var(--gold-dark); }

/* ════════════════════════════════════════
   WHY SPECIALIST
   ════════════════════════════════════════ */
.why-section { background: var(--champagne); }
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.why-image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-content h2 { margin-bottom: 3rem; }
.why-items { display: flex; flex-direction: column; gap: 2.5rem; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.why-number {
    font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300;
    color: var(--gold); line-height: 1; flex-shrink: 0; width: 3rem;
}
.why-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 1px; }
.why-item p { font-size: 0.9rem; color: var(--muted); }

/* ════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.gallery-item {
    position: relative; overflow: hidden; cursor: pointer;
    border-radius: var(--radius-md); aspect-ratio: 4/5;
}
.gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; }
/* Fix: Wedding Day photo should show the person, not sky */
.gallery-item:nth-child(4) img { object-position: center 70%; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,15,3,0.75) 0%, transparent 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-title { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; }
.gallery-icon { color: var(--gold-light); font-size: 1.6rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); transition: var(--transition); }
.gallery-item:hover .gallery-icon { transform: translate(-50%,-50%) scale(1); }

/* ── Lightbox ── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,7,3,0.96);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-inner img { max-width: 100%; max-height: 78vh; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,0.5); object-fit: contain; transition: opacity 0.25s ease; }
#lightbox-title { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; margin-top: 1rem; }
.lightbox-counter { color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 3px; margin-top: 0.4rem; }
.lightbox-close {
    position: absolute; top: 2rem; right: 2rem;
    background: none; border: none; color: var(--white);
    font-size: 2.5rem; cursor: pointer; line-height: 1; z-index: 2;
    opacity: 0.7; transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.5rem; width: 54px; height: 54px;
    border-radius: 50%; cursor: pointer; backdrop-filter: blur(4px);
    transition: var(--transition); display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing-section { background: var(--charcoal); color: var(--white); }
.pricing-section .section-eyebrow { color: var(--gold-light); }
.pricing-section h2 { color: var(--white); }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.55); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 4rem; }
.pricing-card {
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-md); padding: 3rem 2.2rem;
    transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.pricing-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-6px); }
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card--featured {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold-dark);
    transform: scale(1.03);
}
.pricing-card--featured::after {
    content: ''; position: absolute; top: -50%; left: -100%;
    width: 50%; height: 200%; pointer-events: none; z-index: 1;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.03) 40%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.03) 60%, transparent);
    transform: rotate(25deg); animation: premiumShine 6s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes premiumShine {
    0% { left: -150%; }
    20%, 100% { left: 200%; }
}
.pricing-card--featured::before { transform: scaleX(1); }
.pricing-badge {
    position: absolute; top: -1px; right: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 0.4rem 1.2rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.pricing-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 1rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 1.2rem; }
.pricing-price span { font-size: 1rem; opacity: 0.5; }
.pricing-card > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-list li { font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-left: 1.2rem; position: relative; }
.pricing-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 0.65rem; }
.pricing-addons { border-top: 1px solid rgba(201,168,76,0.2); padding-top: 3rem; }
.pricing-addons h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 1.5rem; }
.addons-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.addon { border-left: 2px solid var(--gold-dark); padding-left: 1rem; }
.addon strong { display: block; color: var(--white); font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; }
.addon span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   REVIEWS  (NEW — tabbed Google + The Knot)
   ════════════════════════════════════════ */
.reviews-section { background: var(--white); }
.review-tabs {
    display: flex; justify-content: center; gap: 1rem; margin-bottom: 3.5rem;
}
.review-tab {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 2rem; border-radius: var(--radius-lg);
    border: 1.5px solid var(--border); background: transparent;
    cursor: pointer; font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--muted); transition: var(--transition);
}
.review-tab.active {
    background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}
.review-tab:hover:not(.active) { border-color: var(--gold); color: var(--text); }
.review-tab svg { vertical-align: middle; }
.knot-icon { color: #e85c5c; font-size: 1.1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
    background: var(--cream); border-radius: var(--radius-md);
    padding: 2.2rem; border: 1px solid var(--border);
    transition: var(--transition); display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; flex-shrink: 0;
}
.review-avatar--knot {
    background: linear-gradient(135deg, #e85c5c, #c44040);
}
.review-header strong { font-size: 0.85rem; }
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.review-card p { font-size: 0.88rem; color: var(--muted); font-style: italic; line-height: 1.75; flex: 1; margin-bottom: 1rem; }
.review-source { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-dark); opacity: 0.5; }

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-section {
    background: var(--champagne);
    background-image: url('assets/luxury_silk_bg.png');
    background-size: cover; background-position: center;
    position: relative;
}
.faq-section::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(242,232,216,0.92);
}
.faq-section .section-header, .faq-container { position: relative; z-index: 1; }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: var(--white); margin-bottom: 0.8rem;
    border-radius: var(--radius-md); border: 1px solid var(--border);
    overflow: hidden; transition: var(--transition);
}
.faq-item.faq-open { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.faq-header {
    padding: 1.6rem 2rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.95rem; font-weight: 600;
}

.faq-body {
    max-height: 0; overflow: hidden;
    padding: 0 2rem; color: var(--muted);
    font-size: 0.92rem; line-height: 1.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.faq-open .faq-body { max-height: 250px; padding: 0 2rem 1.5rem; }

/* ════════════════════════════════════════
   FOOTER / CONTACT
   ════════════════════════════════════════ */
footer { background: var(--charcoal); color: rgba(255,255,255,0.75); }
.footer-top {
    padding: 100px 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    text-align: center;
}
.footer-cta .section-eyebrow { color: var(--gold-light); }
.footer-cta h2 { color: var(--white); margin: 0.5rem 0 1.5rem; }
.footer-cta p { color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 2.5rem; }

/* Contact Form */
.contact-form {
    max-width: 800px; margin: 3rem auto 0;
    text-align: left;
    background: rgba(255,255,255,0.03);
    padding: 3.5rem; border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}
.form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: span 2; }
.form-group-split { flex-direction: row; gap: 1.5rem; }
.form-group-split > div { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold-light);
}
.form-hint { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: -0.3rem; line-height: 1.4; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 1.1rem 1.2rem;
    background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm); color: var(--white);
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
    transition: var(--transition);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em;
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.7; cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); background: rgba(0,0,0,0.4);
}
.form-submit-btn { width: 100%; margin-top: 2rem; justify-content: center; padding: 1.3rem; font-size: 0.95rem; }
.form-disclaimer { text-align: center; font-size: 0.75rem; opacity: 0.4; margin-top: 1.2rem !important; }
.footer-bottom {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem; padding: 5rem 0;
}
.footer-logo { display: block; margin: 0 auto 2rem; height: 240px; opacity: 1; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2)); }
.footer-col--brand { text-align: center; }
.footer-col > p { font-size: 0.88rem; opacity: 0.55; line-height: 1.7; }
.footer-col h5 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col a { display: block; font-size: 0.88rem; margin-bottom: 0.7rem; opacity: 0.6; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--gold-light); }
.footer-location { font-size: 0.85rem; opacity: 0.5; margin-top: 0.8rem; }
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center; padding: 1.8rem 0;
    font-size: 0.78rem; opacity: 0.35;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .services-grid > .service-card:last-child { grid-column: span 2; }
    .addons-grid { grid-template-columns: repeat(2,1fr); }
    .reviews-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-accent { display: none; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card--featured { transform: scale(1); }
    .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
    .footer-bottom { grid-template-columns: 1fr 1fr; }
    .stat-row { flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
    .stat { align-items: center; text-align: center; }
}
@media (max-width: 1250px) {
    .section-padding { padding: 80px 0; }
    h1 { font-size: 2.8rem; }
    .nav-links {
        position: fixed; top: 0; right: 0; bottom: 0; width: 100%;
        transform: translateX(100%);
        background: rgba(26,15,3,0.97); backdrop-filter: blur(10px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 2rem; transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 999;
        display: flex;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { color: var(--white) !important; font-size: 1rem; }
    .nav-content { justify-content: flex-end; position: relative; }
    .logo { 
        position: absolute; left: 0; right: 0; top: 60%; transform: translateY(-50%);
        display: flex; justify-content: center; width: 100%; margin: 0 auto; pointer-events: none;
    }
    .logo-img { pointer-events: auto; height: 85px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2)); }
    .menu-toggle { display: flex; z-index: 1001; }
    .nav-cta { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .services-grid > .service-card:last-child { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 4/5; }
    .gallery-item:nth-child(4) img { object-position: center center; }
    .addons-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-logo { margin: 0 auto 1.5rem; }
    .review-tabs { flex-direction: column; align-items: center; }
    .lightbox-prev { left: 0.5rem; width: 44px; height: 44px; font-size: 1.2rem; }
    .lightbox-next { right: 0.5rem; width: 44px; height: 44px; font-size: 1.2rem; }
    .lightbox-close { top: 1rem; right: 1rem; font-size: 2rem; }
    
    /* Mobile Hero Background Zoom Fix */
    .hero-bg-slide {
        transform: scale(1.4);
        animation: heroZoomMobile 12s ease-out forwards;
    }

    /* Mobile Form Fixes */
    .contact-form { padding: 2.5rem 1.2rem; }
    .form-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .form-group.full-width { grid-column: span 1; }
    .form-group-split { flex-direction: column; gap: 1.8rem; }
    .form-group label { letter-spacing: 1px; }
    .form-group input[type="time"], .form-group input[type="date"] {
        -webkit-appearance: none; appearance: none;
        width: 100%; max-width: 100%; min-width: 100%; box-sizing: border-box;
    }
}

@keyframes heroZoomMobile {
    from { transform: scale(1.4); }
    to { transform: scale(1.3); }
}
