/* ═══════════════════════════════════════════════════════
   DG FLOORS, LLC — SHARED STYLES
   Premium Luxury Vinyl Plank · Central & South Florida
   ═══════════════════════════════════════════════════════ */

/* ── Variables & Reset ─────────────────────────────── */
:root {
    --gold: #B8963E;
    --gold-light: #D4B262;
    --gold-pale: #E8D5A3;
    --gold-dark: #8B6F2F;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --dark-gray: #2A2A2A;
    --medium-gray: #6B6B6B;
    --light-gray: #F5F2ED;
    --cream: #FAF8F4;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Loader ────────────────────────────────────────── */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--black);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
    width: 100px; height: 100px; object-fit: contain;
    animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-bar-track {
    width: 200px; height: 2px; background: var(--dark-gray);
    margin-top: 30px; border-radius: 2px; overflow: hidden;
}
.loader-bar {
    height: 100%; background: var(--gold); border-radius: 2px;
    animation: loaderProgress 1.8s var(--ease-out-expo) forwards;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}
@keyframes loaderProgress { 0% { width: 0; } 100% { width: 100%; } }

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0; transform: translateX(60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }

/* ── Navigation ────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 50px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s var(--ease-out-expo);
    background: transparent;
}
.nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 14px 50px;
    box-shadow: 0 1px 30px rgba(0,0,0,0.3);
}
/* On inner pages, nav starts dark */
.nav.nav-dark { background: rgba(10,10,10,0.95); padding: 14px 50px; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
    height: 45px; width: auto;
    transition: height 0.5s var(--ease-out-expo);
}
.nav.scrolled .nav-logo img,
.nav.nav-dark .nav-logo img { height: 38px; }
.nav-logo-text {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
    display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
    text-transform: uppercase; letter-spacing: 0.12em;
    transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
    background: var(--gold); color: var(--black) !important;
    padding: 10px 24px; border-radius: 4px; font-weight: 600; letter-spacing: 0.08em;
    transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light) !important; color: var(--black) !important;
    transform: translateY(-1px);
}
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    z-index: 1001; background: none; border: none; padding: 5px;
}
.nav-hamburger span {
    width: 26px; height: 2px; background: var(--white);
    transition: all 0.4s var(--ease-out-expo); transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5px); }
.nav-mobile-overlay {
    position: fixed; inset: 0; background: rgba(10,10,10,0.97); z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.5s var(--ease-out-expo);
}
.nav-mobile-overlay.active { opacity: 1; visibility: visible; }
.nav-mobile-links {
    list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px;
}
.nav-mobile-links a {
    font-family: var(--font-display); font-size: 2rem; color: var(--white);
    transition: color 0.3s ease;
}
.nav-mobile-links a:hover { color: var(--gold); }

/* ── Shared Section Styles ─────────────────────────── */
.section { padding: 120px 50px; }
.section-label {
    font-size: 0.75rem; font-weight: 700; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500;
    color: var(--charcoal); line-height: 1.15; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-subtitle {
    font-size: 1.05rem; color: var(--medium-gray); line-height: 1.7; max-width: 600px;
}
.section-dark { background: var(--black); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--black);
    padding: 16px 36px; border-radius: 4px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184,150,62,0.3);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    padding: 16px 36px; border-radius: 4px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}
.btn-secondary:hover {
    border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px);
}
.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--charcoal);
    padding: 16px 36px; border-radius: 4px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1.5px solid rgba(0,0,0,0.15); cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}
.btn-outline-dark:hover {
    border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px);
}
.btn-arrow {
    width: 18px; height: 18px;
}

/* ── Page Hero Banner (inner pages) ────────────────── */
.page-hero {
    position: relative; padding: 180px 50px 100px;
    background: var(--black); overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: bottom;
    opacity: 0.40;
}
.page-hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 100%);
}
.page-hero-content {
    position: relative; z-index: 2; max-width: 700px;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500;
    color: var(--white); line-height: 1.1; margin-bottom: 18px;
    opacity: 0; animation: fadeUp 1s 0.3s var(--ease-out-expo) forwards;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.7;
    opacity: 0; animation: fadeUp 1s 0.5s var(--ease-out-expo) forwards;
}
.page-hero .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(184,150,62,0.15); border: 1px solid rgba(184,150,62,0.3);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.8s 0.1s var(--ease-out-expo) forwards;
}
.page-hero .hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    animation: badgePulse 2s ease-in-out infinite;
}
.page-hero .hero-badge span {
    font-size: 0.8rem; font-weight: 600; color: var(--gold-light);
    text-transform: uppercase; letter-spacing: 0.15em;
}

/* ── Marquee Ribbon ────────────────────────────────── */
.marquee-ribbon {
    background: var(--gold); padding: 14px 0; overflow: hidden; position: relative;
}
.marquee-track {
    display: flex; animation: marqueeScroll 25s linear infinite; width: max-content;
}
.marquee-item {
    display: flex; align-items: center; gap: 30px; padding: 0 30px;
    white-space: nowrap; font-size: 0.8rem; font-weight: 700;
    color: var(--black); text-transform: uppercase; letter-spacing: 0.18em;
}
.marquee-item .diamond {
    width: 6px; height: 6px; background: var(--black); transform: rotate(45deg); flex-shrink: 0;
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Footer ────────────────────────────────────────── */
.footer {
    background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 50px 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px;
    max-width: 1200px; margin: 0 auto; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
    font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.45);
    margin-top: 16px; max-width: 320px;
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-social a svg {
    width: 18px; height: 18px; fill: rgba(255,255,255,0.6); transition: fill 0.3s ease;
}
.footer-social a:hover svg { fill: var(--black); }
.footer-col h4 {
    font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
    color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.88rem; color: rgba(255,255,255,0.4); transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--gold); font-size: 0.78rem; }

/* ── Floating Elements ─────────────────────────────── */
.floating-phone {
    position: fixed; bottom: 30px; right: 30px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(184,150,62,0.35);
    transition: all 0.4s var(--ease-out-expo); cursor: pointer;
}
.floating-phone:hover {
    transform: scale(1.08); box-shadow: 0 12px 32px rgba(184,150,62,0.45);
}
.floating-phone svg { width: 24px; height: 24px; fill: var(--black); }
.back-to-top {
    position: fixed; bottom: 100px; right: 30px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-out-expo);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
.back-to-top svg { width: 18px; height: 18px; stroke: var(--white); transition: stroke 0.3s ease; }
.back-to-top:hover svg { stroke: var(--black); }

/* ── Animations ────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes badgePulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ── Decorative helpers ────────────────────────────── */
.float-element {
    position: absolute; border: 1px solid rgba(184,150,62,0.1); pointer-events: none;
}
.float-element--1 {
    width: 200px; height: 200px; top: 20%; right: 10%; border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
}
.float-element--2 {
    width: 100px; height: 100px; bottom: 30%; right: 25%; transform: rotate(45deg);
    animation: float2 10s ease-in-out infinite;
}
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes float2 {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(50deg) translateY(-15px); }
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; background: var(--black); overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../images/Living Room/Living Room_Gray.jpg') bottom/cover no-repeat;
    opacity: 0.45; transform: scale(1.0);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1.1); } 100% { transform: scale(1.2); } }
.hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 50%, rgba(184,150,62,0.15) 100%);
}
.hero-content {
    position: relative; z-index: 2; max-width: 800px; padding: 0 50px; padding-top: 120px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(184,150,62,0.15); border: 1px solid rgba(184,150,62,0.3);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.8s 2.2s var(--ease-out-expo) forwards;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    animation: badgePulse 2s ease-in-out infinite;
}
.hero-badge span {
    font-size: 0.8rem; font-weight: 600; color: var(--gold-light);
    text-transform: uppercase; letter-spacing: 0.15em;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500;
    color: var(--white); line-height: 1.1; margin-bottom: 24px;
    opacity: 0; animation: fadeUp 1s 2.4s var(--ease-out-expo) forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.6); line-height: 1.7;
    max-width: 550px; margin-bottom: 40px;
    opacity: 0; animation: fadeUp 1s 2.6s var(--ease-out-expo) forwards;
}
.hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 1s 2.8s var(--ease-out-expo) forwards;
}
.hero-corner { position: absolute; z-index: 2; opacity: 0; animation: fadeIn 1s 3.2s ease forwards; }
.hero-corner--tl {
    top: 100px; right: 60px; width: 120px; height: 120px;
    border-top: 1px solid rgba(184,150,62,0.25); border-right: 1px solid rgba(184,150,62,0.25);
}
.hero-corner--br {
    bottom: 60px; left: 60px; width: 80px; height: 80px;
    border-bottom: 1px solid rgba(184,150,62,0.25); border-left: 1px solid rgba(184,150,62,0.25);
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fadeIn 1s 3.4s ease forwards;
}
.hero-scroll span {
    font-size: 0.7rem; color: rgba(255,255,255,0.35);
    text-transform: uppercase; letter-spacing: 0.2em;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── How It Works ──────────────────────────────────── */
.process { background: var(--cream); }
.process-header { text-align: center; max-width: 650px; margin: 0 auto 80px; }
.process-header .section-subtitle { margin: 0 auto; }
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    max-width: 1200px; margin: 0 auto; position: relative;
}
.process-grid::before {
    content: ''; position: absolute; top: 42px; left: 15%; right: 15%;
    height: 1px; z-index: 0;
    background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold), var(--gold-pale), transparent);
}
.process-card { text-align: center; position: relative; z-index: 1; }
.process-number {
    width: 84px; height: 84px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
    color: var(--gold); margin: 0 auto 24px;
    transition: all 0.5s var(--ease-out-expo);
}
.process-card:hover .process-number {
    background: var(--gold); color: var(--white);
    transform: scale(1.08); box-shadow: 0 8px 30px rgba(184,150,62,0.25);
}
.process-card h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    margin-bottom: 12px; color: var(--charcoal);
}
.process-card p { font-size: 0.9rem; line-height: 1.65; color: var(--medium-gray); }

/* ── Testimonials ──────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
    max-width: 1000px; margin: 0 auto;
}
.testimonial-card {
    background: var(--cream); border-radius: 12px; padding: 40px; position: relative;
    transition: all 0.5s var(--ease-out-expo);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.testimonial-quote {
    font-family: var(--font-display); font-size: 3rem; color: var(--gold-pale);
    line-height: 1; margin-bottom: 8px;
}
.testimonial-card p {
    font-size: 1rem; line-height: 1.75; color: var(--charcoal);
    font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-top: 2px; }

/* ── Room Showcase ─────────────────────────────────── */
.rooms { background: var(--charcoal); padding: 120px 0; overflow: hidden; }
.rooms-header {
    padding: 0 50px; margin-bottom: 60px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.rooms-header .section-subtitle { color: rgba(255,255,255,0.5); }
.rooms-scroll-hint {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
    text-transform: uppercase; letter-spacing: 0.15em;
}
.rooms-scroll-hint .arrow {
    width: 40px; height: 1px; background: var(--gold); position: relative;
}
.rooms-scroll-hint .arrow::after {
    content: ''; position: absolute; right: 0; top: -3px;
    width: 7px; height: 7px;
    border-right: 1px solid var(--gold); border-top: 1px solid var(--gold);
    transform: rotate(45deg);
}
.rooms-track {
    display: flex; gap: 24px; padding: 0 50px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab;
}
.rooms-track::-webkit-scrollbar { display: none; }
.rooms-track:active { cursor: grabbing; }
.room-card {
    flex: 0 0 340px; scroll-snap-align: start; position: relative;
    border-radius: 10px; overflow: hidden; background: var(--dark-gray);
    aspect-ratio: 3/4; transition: transform 0.5s var(--ease-out-expo);
}
.room-card:hover { transform: scale(1.02); }
.room-card-bg {
    position: absolute; inset: 0; background-size: cover; background-position: bottom;
    transition: transform 6s ease;
}
.room-card:hover .room-card-bg { transform: scale(1.08); }
.room-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 60%);
}
.room-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.room-card h3 {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
    color: var(--white); margin-bottom: 8px;
}
.room-card p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.55); }

/* ── CTA Banner (reusable) ─────────────────────────── */
.cta-banner {
    background: var(--black); position: relative; overflow: hidden;
    padding: 100px 50px; text-align: center;
}
.cta-banner-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center 80%;
    opacity: 0.15;
}
.cta-banner-content { position: relative; z-index: 2; max-width: 650px; margin: 0 auto; }
.cta-banner .section-title { color: var(--white); margin-bottom: 16px; }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto 36px; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-image-wrap { position: relative; }
.about-image {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: 8px; box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.about-image-accent {
    position: absolute; top: -20px; right: -20px;
    width: 140px; height: 140px; border: 2px solid var(--gold);
    border-radius: 8px; z-index: -1;
}
.about-stats {
    position: absolute; bottom: -30px; left: -20px;
    background: var(--charcoal); color: var(--white);
    padding: 24px 32px; border-radius: 8px;
    display: flex; gap: 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.about-stat { text-align: center; }
.about-stat-number {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    color: var(--gold); line-height: 1;
}
.about-stat-label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5); margin-top: 6px;
}
.about-text p {
    font-size: 1rem; line-height: 1.8; color: var(--medium-gray); margin-bottom: 20px;
}
.about-vet-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(184,150,62,0.08); border: 1px solid rgba(184,150,62,0.2);
    padding: 14px 24px; border-radius: 8px; margin-top: 10px;
}
.about-vet-badge svg { width: 28px; height: 28px; fill: var(--gold); }
.about-vet-badge span { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }

/* About timeline */
.timeline { max-width: 800px; margin: 0 auto; padding: 40px 0; position: relative; }
.timeline::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; background: var(--gold-pale); transform: translateX(-50%);
}
.timeline-item {
    display: flex; align-items: flex-start; margin-bottom: 50px; position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
    position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--cream);
    z-index: 2; box-shadow: 0 0 0 4px rgba(184,150,62,0.15);
}
.timeline-content {
    width: 44%; padding: 28px; background: var(--white);
    border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out-expo);
}
.timeline-content:hover {
    transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.timeline-year {
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
    color: var(--gold); margin-bottom: 8px;
}
.timeline-content h3 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 8px;
}
.timeline-content p { font-size: 0.9rem; line-height: 1.65; color: var(--medium-gray); }

/* FAQ (shared for about + home) */
.faq-layout {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
    max-width: 1200px; margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 0; cursor: pointer; background: none; border: none; width: 100%;
    text-align: left; font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    color: var(--charcoal); transition: color 0.3s ease;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-left: 16px;
    transition: all 0.4s var(--ease-out-expo);
}
.faq-toggle svg {
    width: 12px; height: 12px; stroke: var(--gold);
    transition: transform 0.4s var(--ease-out-expo);
}
.faq-item.active .faq-toggle { background: var(--gold); border-color: var(--gold); }
.faq-item.active .faq-toggle svg { stroke: var(--white); transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 22px; font-size: 0.92rem; line-height: 1.75; color: var(--medium-gray); }

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════ */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px;
}
.service-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 40px 32px;
    transition: all 0.5s var(--ease-out-expo); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    background: rgba(255,255,255,0.06); border-color: rgba(184,150,62,0.2);
    transform: translateY(-6px);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: rgba(184,150,62,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; font-size: 1.6rem;
}
.service-card h3 {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
    color: var(--white); margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }

/* Light service cards */
.service-card-light {
    background: var(--white); border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px; padding: 40px 32px;
    transition: all 0.5s var(--ease-out-expo); position: relative; overflow: hidden;
}
.service-card-light::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}
.service-card-light:hover::before { transform: scaleX(1); }
.service-card-light:hover {
    transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.service-card-light h3 {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 12px;
}
.service-card-light p { font-size: 0.9rem; line-height: 1.7; color: var(--medium-gray); }

/* Why LVP */
.why-lvp-header { text-align: center; max-width: 650px; margin: 0 auto 70px; }
.why-lvp-header .section-subtitle { margin: 0 auto; }
.why-lvp-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
.lvp-card {
    background: var(--white); border-radius: 12px; padding: 36px 28px;
    text-align: center; transition: all 0.5s var(--ease-out-expo);
    border: 1px solid transparent;
}
.lvp-card:hover {
    border-color: var(--gold-pale); transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.lvp-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(184,150,62,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem;
    transition: all 0.5s var(--ease-out-expo);
}
.lvp-card:hover .lvp-icon { background: var(--gold); transform: scale(1.1); }
.lvp-card:hover .lvp-icon span { filter: brightness(0); }
.lvp-card h3 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 10px;
}
.lvp-card p { font-size: 0.85rem; line-height: 1.65; color: var(--medium-gray); }

/* ═══════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════ */
.gallery-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 50px; flex-wrap: wrap;
}
.gallery-filter {
    padding: 10px 24px; border-radius: 50px; border: 1.5px solid rgba(0,0,0,0.1);
    background: transparent; font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; color: var(--medium-gray); cursor: pointer;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.08em;
}
.gallery-filter:hover, .gallery-filter.active {
    background: var(--gold); color: var(--black); border-color: var(--gold);
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 1200px; margin: 0 auto;
}
.gallery-item {
    border-radius: 10px; overflow: hidden; position: relative;
    cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute; inset: 0; background: rgba(10,10,10,0);
    transition: background 0.4s ease;
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,10,10,0.3); }
.gallery-item-overlay svg {
    width: 40px; height: 40px; stroke: var(--white);
    opacity: 0; transform: scale(0.8);
    transition: all 0.4s var(--ease-out-expo);
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }
.gallery-item-label {
    position: absolute; bottom: 16px; left: 16px;
    background: rgba(10,10,10,0.7); backdrop-filter: blur(10px);
    padding: 6px 14px; border-radius: 6px;
    font-size: 0.78rem; font-weight: 600; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.08em;
    opacity: 0; transform: translateY(8px);
    transition: all 0.4s var(--ease-out-expo);
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* Gallery loading state */
.gallery-loading {
    text-align: center; padding: 80px 20px;
}
.gallery-spinner {
    width: 40px; height: 40px; border: 3px solid var(--gold-pale);
    border-top-color: var(--gold); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.gallery-loading p { font-size: 0.9rem; color: var(--medium-gray); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw; max-height: 85vh; object-fit: contain;
    border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute; top: 30px; right: 30px;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gold); }
.lightbox-close svg { width: 20px; height: 20px; stroke: var(--white); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-nav svg { width: 20px; height: 20px; stroke: var(--white); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    max-width: 1200px; margin: 0 auto;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.contact-info-card {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px; background: var(--white);
    border: 1px solid rgba(0,0,0,0.05); border-radius: 10px;
    transition: all 0.4s var(--ease-out-expo);
}
.contact-info-card:hover {
    border-color: rgba(184,150,62,0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(184,150,62,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.2rem;
}
.contact-info-card h4 {
    font-size: 0.72rem; font-weight: 600; color: var(--medium-gray);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.contact-info-card p { font-size: 0.95rem; color: var(--charcoal); }
.contact-info-card a { color: var(--gold-dark); transition: color 0.3s ease; }
.contact-info-card a:hover { color: var(--gold); }

.contact-form {
    background: var(--white); border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px; padding: 44px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.contact-form h3 {
    font-family: var(--font-display); font-size: 1.5rem;
    color: var(--charcoal); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--medium-gray); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; background: var(--cream); border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px; padding: 14px 16px;
    font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal);
    transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--medium-gray); opacity: 0.5; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--gold); background: var(--white);
    box-shadow: 0 0 0 3px rgba(184,150,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .section { padding: 90px 30px; }
    .nav { padding: 18px 30px; }
    .nav.scrolled, .nav.nav-dark { padding: 12px 30px; }
    .hero-content { padding: 0 30px; padding-top: 120px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-lvp-grid { grid-template-columns: repeat(3, 1fr); }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 50px; }
    .page-hero { padding: 160px 30px 80px; }
    .cta-banner { padding: 80px 30px; }
    .timeline::before { left: 30px; }
    .timeline-item,
    .timeline-item:nth-child(even) { flex-direction: row; padding-left: 60px; }
    .timeline-dot { left: 30px; }
    .timeline-content { width: 100%; }
}

@media (max-width: 768px) {
    .section { padding: 80px 20px; }
    .nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-content { padding: 0 20px; padding-top: 100px; }
    .hero-corner { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-stats { position: relative; bottom: auto; left: auto; margin-top: 20px; }
    .about-image-accent { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-lvp-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .rooms-header { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 20px; }
    .rooms-track { padding: 0 20px; }
    .room-card { flex: 0 0 280px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-form { padding: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary, .btn-outline-dark { width: 100%; justify-content: center; }
    .page-hero { padding: 140px 20px 70px; }
    .cta-banner { padding: 70px 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) { padding-left: 50px; }
}

@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .why-lvp-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 16px; }
}
