/* ===== GAZEBO FILMS — DESIGN SYSTEM ===== */
:root {
    --black: #0a0a0a;
    --black-light: #131313;
    --black-card: #1a1a1a;
    --black-border: #2a2a2a;
    --gold: #C9A96E;
    --gold-light: #dfc9a0;
    --gold-dark: #a88b4a;
    --crimson: #8B1A2B;
    --blush: #D4A0A0;
    --ivory: #F5F0E8;
    --ivory-dim: #c8c2b8;
    --white: #ffffff;
    --text-primary: #f0ece4;
    --text-secondary: #9a958d;
    --text-muted: #6a655d;
    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(201, 169, 110, 0.15);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--black); color: var(--text-primary); overflow-x: hidden; line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.section { padding: 100px 0; position: relative; }

/* ===== PRELOADER ===== */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--black); display: flex; align-items: center; justify-content: center; transition: opacity .6s var(--ease-out), visibility .6s; }
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); color: var(--gold); letter-spacing: 2px; }
.preloader-sub { font-family: var(--font-body); font-size: .75rem; letter-spacing: 8px; color: var(--text-secondary); margin-top: 4px; }
.preloader-bar { width: 180px; height: 2px; background: var(--black-border); margin: 28px auto 0; border-radius: 2px; overflow: hidden; }
.preloader-progress { width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; animation: preload 1.8s var(--ease-out) forwards; }
@keyframes preload { to { width: 100%; } }

/* ===== NAVIGATION ===== */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0 5%; height: var(--nav-h); transition: background .4s, backdrop-filter .4s, box-shadow .4s; }
.nav.scrolled { background: rgba(10,10,10,.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--glass-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); transition: opacity .3s; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: .82rem; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); transition: color .3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease-out); }
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link--cta { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black) !important; padding: 10px 24px; border-radius: 4px; font-weight: 500; letter-spacing: 1px; }
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.nav-toggle { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; z-index: 1001; }
.hamburger-line { width: 100%; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(10,10,10,.97); backdrop-filter: blur(24px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease-out), visibility .5s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav-links { text-align: center; }
.mobile-nav-links li { overflow: hidden; }
.mobile-nav-link { display: inline-block; font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--text-primary); padding: 10px 0; transform: translateY(100%); opacity: 0; transition: transform .6s var(--ease-out), opacity .6s, color .3s; }
.mobile-menu.open .mobile-nav-link { transform: translateY(0); opacity: 1; }
.mobile-menu.open li:nth-child(1) .mobile-nav-link { transition-delay: .1s; }
.mobile-menu.open li:nth-child(2) .mobile-nav-link { transition-delay: .15s; }
.mobile-menu.open li:nth-child(3) .mobile-nav-link { transition-delay: .2s; }
.mobile-menu.open li:nth-child(4) .mobile-nav-link { transition-delay: .25s; }
.mobile-menu.open li:nth-child(5) .mobile-nav-link { transition-delay: .3s; }
.mobile-menu.open li:nth-child(6) .mobile-nav-link { transition-delay: .35s; }
.mobile-menu.open li:nth-child(7) .mobile-nav-link { transition-delay: .4s; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link--cta { color: var(--gold) !important; }
.mobile-menu-footer { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: .85rem; line-height: 2; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 36px; border-radius: 4px; transition: all .4s var(--ease-out); position: relative; overflow: hidden; }
.btn--primary { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,.3); filter: brightness(1.08); }
.btn--outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn--lg { padding: 20px 44px; font-size: .9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn i, .btn svg { width: 16px; height: 16px; transition: transform .3s; }
.btn:hover i, .btn:hover svg { transform: translateX(4px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.5s var(--ease-smooth), transform 8s linear; will-change: opacity, transform; }
.hero-slide--active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.6) 40%, rgba(10,10,10,.85) 100%); z-index: 1; }
.hero-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 200px rgba(0,0,0,.6); z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 5%; max-width: 900px; }
.hero-badge { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; }
.hero-badge span:not(.hero-badge-line) { font-family: var(--font-body); font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.hero-badge-line { width: 40px; height: 1px; background: var(--gold); opacity: .5; }
.hero-title { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin-bottom: 24px; }
.hero-title-line { display: block; font-size: clamp(2.2rem, 6.5vw, 4.2rem); color: var(--ivory); }
.hero-title-line--accent { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-subtitle { font-family: var(--font-accent); font-size: clamp(1rem, 2.5vw, 1.35rem); color: var(--ivory-dim); line-height: 1.7; max-width: 640px; margin: 0 auto 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--gold); font-weight: 600; }
.hero-stat-plus { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }
.hero-stat-label { display: block; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--gold); opacity: .25; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; text-align: center; }
.hero-scroll span { display: block; font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.3; transform:scaleY(.7); } 50%{ opacity:1; transform:scaleY(1); } }

/* ===== MARQUEE ===== */
.marquee-ribbon { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: flex; align-items: center; gap: 32px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { font-family: var(--font-display); font-size: .95rem; color: var(--black); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--black); opacity: .4; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== SECTION HEADERS ===== */
.section-tag { display: inline-block; font-size: .7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; position: relative; padding-left: 40px; }
.section-tag::before { content: ''; position: absolute; left: 0; top: 50%; width: 28px; height: 1px; background: var(--gold); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::before { display: none; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 500; line-height: 1.2; color: var(--ivory); }
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-title--left { text-align: left; }
.section-desc { font-family: var(--font-accent); font-size: 1.1rem; color: var(--text-secondary); margin-top: 16px; font-weight: 300; }

/* ===== SERVICES ===== */
.services { background: var(--black-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: 12px; padding: 40px 32px; position: relative; overflow: hidden; transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(201,169,110,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 20px; }
.service-card-icon i { width: 22px; height: 22px; }
.service-card-number { position: absolute; top: 24px; right: 28px; font-family: var(--font-display); font-size: 2.5rem; color: var(--black-border); font-weight: 700; line-height: 1; }
.service-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ivory); margin-bottom: 12px; }
.service-card-desc { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); font-weight: 500; transition: gap .3s; }
.service-card-link:hover { gap: 10px; }
.service-card-link i { width: 14px; height: 14px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float { position: absolute; bottom: -30px; right: -30px; width: 45%; border-radius: 12px; overflow: hidden; border: 4px solid var(--black); box-shadow: 0 20px 60px rgba(0,0,0,.5); aspect-ratio: 1; }
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge { position: absolute; top: 24px; left: -20px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); padding: 20px; border-radius: 12px; text-align: center; box-shadow: 0 12px 40px rgba(201,169,110,.3); }
.about-exp-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-exp-text { font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.about-text { font-size: .95rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.about-text strong { color: var(--gold); font-weight: 500; }
.about-features { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 32px; }
.about-feature { display: flex; align-items: center; gap: 10px; background: var(--black-card); border: 1px solid var(--black-border); padding: 12px 20px; border-radius: 8px; font-size: .82rem; color: var(--text-primary); }
.about-feature i { width: 18px; height: 18px; color: var(--gold); }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--black-light); }
.portfolio-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.portfolio-filter { padding: 10px 24px; border-radius: 100px; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-secondary); border: 1px solid var(--black-border); transition: all .3s; }
.portfolio-filter--active, .portfolio-filter:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.portfolio-item { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.portfolio-item--tall { grid-row: span 2; aspect-ratio: auto; }
.portfolio-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity .4s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.portfolio-overlay h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); }

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; background-attachment: fixed; background-size: cover; background-position: center; }
.parallax-overlay { position: absolute; inset: 0; background: rgba(10,10,10,.75); }
.parallax-content { position: relative; z-index: 1; text-align: center; padding: 60px 5%; max-width: 800px; }
.parallax-quote { font-family: var(--font-accent); font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-style: italic; color: var(--ivory); font-weight: 300; line-height: 1.6; }
.parallax-author { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-top: 20px; }

/* ===== PROCESS ===== */
.process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.process-timeline::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.process-step { display: flex; align-items: flex-start; gap: 32px; padding: 32px 0; position: relative; }
.process-step-number { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); font-weight: 600; min-width: 64px; text-align: center; position: relative; z-index: 1; background: var(--black); padding: 8px 0; }
.process-step-content { flex: 1; }
.process-step-content h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--ivory); margin-bottom: 8px; }
.process-step-content p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }
.process-step-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,169,110,.1); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.process-step-icon i { width: 20px; height: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--black-light); }
.testimonials-carousel { position: relative; max-width: 700px; margin: 0 auto; overflow: hidden; }
.testimonial-card { display: none; text-align: center; padding: 40px; background: var(--black-card); border: 1px solid var(--black-border); border-radius: 16px; }
.testimonial-card--active { display: block; animation: fadeUp .5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; color: var(--gold); }
.testimonial-stars i { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-text { font-family: var(--font-accent); font-size: 1.15rem; font-style: italic; color: var(--ivory-dim); line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.testimonial-author-info strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ivory); font-weight: 500; }
.testimonial-author-info span { font-size: .8rem; color: var(--gold); letter-spacing: 1px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.testimonial-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all .3s; }
.testimonial-btn:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-btn i { width: 18px; height: 18px; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black-border); cursor: pointer; transition: all .3s; }
.testimonial-dot--active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 100px 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,.8); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--ivory); font-weight: 500; line-height: 1.3; margin-bottom: 16px; }
.cta-desc { font-family: var(--font-accent); font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; }

/* ===== FAQ ===== */
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-intro { color: var(--text-secondary); font-size: .95rem; margin: 16px 0 28px; line-height: 1.7; }
.faq-item { border-bottom: 1px solid var(--black-border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 1rem; color: var(--text-primary); text-align: left; transition: color .3s; gap: 16px; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out), padding .4s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--black-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-desc { color: var(--text-secondary); font-size: .95rem; margin: 16px 0 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(201,169,110,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-detail-icon i { width: 20px; height: 20px; }
.contact-detail-label { display: block; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail-value { font-size: .92rem; color: var(--text-primary); }
a.contact-detail-value:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 12px; }
.contact-social { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all .3s; }
.contact-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.08); }
.contact-social i { width: 18px; height: 18px; }
.contact-form-wrapper { background: var(--black-card); border: 1px solid var(--black-border); border-radius: 16px; padding: 40px; }
.contact-form-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--ivory); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; background: var(--black); border: 1px solid var(--black-border); border-radius: 8px; color: var(--text-primary); font-family: var(--font-body); font-size: .9rem; transition: border-color .3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a958d' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid var(--black-border); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { height: 52px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline { font-size: .88rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-links-group h4 { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a { font-size: .88rem; color: var(--text-secondary); transition: color .3s; }
.footer-links-group a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--black-border); padding: 24px 0; text-align: center; font-size: .8rem; color: var(--text-muted); }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .3s, box-shadow .3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 28px; left: 28px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: var(--black-card); border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; color: var(--gold); opacity: 0; visibility: hidden; transition: all .3s; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--black); }
.back-to-top i { width: 18px; height: 18px; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; color: white; z-index: 10; transition: color .3s; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-close i, .lightbox-prev i, .lightbox-next i { width: 28px; height: 28px; }

/* ===== REVEAL ANIMATION ===== */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-float { right: 20px; bottom: -20px; }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
    .portfolio-item--wide { grid-column: span 2; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item--tall { grid-row: span 1; aspect-ratio: 1; }
    .portfolio-item--wide { grid-column: span 2; }
    .process-timeline::before { left: 24px; }
    .process-step { gap: 20px; }
    .process-step-number { font-size: 1.2rem; min-width: 48px; }
    .process-step-icon { display: none; }
    .hero-stats { gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .parallax-divider, .cta-banner { background-attachment: scroll; }
    .about-experience-badge { left: 10px; top: 10px; padding: 14px; }
    .about-exp-number { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-item--wide { grid-column: span 1; aspect-ratio: 1; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .hero-stat-divider { display: none; }
    .hero-stats { flex-direction: column; gap: 12px; }
}
