@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Mr+De+Haviland&family=Pinyon+Script&family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── DESIGN SYSTEM VARIABLES ────────────────────────────────────────────── */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-card: #181818;
    --gold: #D4AF37;
    --gold-light: #F3D065;
    --gold-dark: #AA841B;
    --gold-glow: rgba(212, 175, 55, 0.12);
    --gold-border: rgba(212, 175, 55, 0.25);
    --text-primary: #FAFAFA;
    --text-secondary: #A3A3A3;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(18, 18, 18, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter", sans-serif;
    --font-serif: "Bebas Neue", -apple-system, sans-serif;
    --font-cursive: "Outfit", -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --max-width: 1280px;
}

/* ─── BASE RESET ─────────────────────────────────────────────────────────── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Faint, elegant golden aurora background glow */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.035) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(243, 208, 101, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.015) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
    animation: aurora-glow 25s infinite alternate ease-in-out;
}

@keyframes aurora-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08) translate(1%, 2%);
        opacity: 1;
    }
    100% {
        transform: scale(0.96) translate(-1%, -1%);
        opacity: 0.7;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* ─── UTILITIES & CONTAINERS ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: transparent;
}

.section-secondary {
    background-color: rgba(18, 18, 18, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Typography */
.text-gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-cursive) !important;
    font-style: normal !important;
    font-weight: 300 !important; /* Thin geometric sans-serif Outfit Light */
    text-transform: uppercase !important;
    font-size: 0.95em; /* Proportional scaling down inline matches tall Bebas height */
    display: inline-block;
    vertical-align: baseline;
    padding: 0 4px;
    margin: 0;
    letter-spacing: 0.05em !important;
    line-height: inherit !important;
    overflow: visible !important;
}

.title-lg {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 400; /* Bold condensed Bebas Neue */
    line-height: 1.0;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-transform: uppercase;
    overflow: visible !important;
}

.title-md {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400; /* Bold condensed Bebas Neue */
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-transform: uppercase;
    overflow: visible !important;
}

.title-sm {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 32px;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: rgba(212, 175, 55, 0.03);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    border: 1px solid var(--gold-border);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    border-color: var(--gold-light);
    background-color: rgba(212, 175, 55, 0.06);
    transform: translateY(-2px);
}

/* ─── HEADER / NAVIGATION ────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    background-color: transparent;
}

.header-scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header-scrolled .container {
    height: 64px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 48px; /* Altura para boa legibilidade do logótipo clássico no desktop */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-scrolled .header-logo img {
    height: 40px; /* Altura do logótipo no cabeçalho scrollado */
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav-link {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-lang-selector {
    display: flex;
    gap: 8px;
    font-size: 0.825rem;
    font-weight: 600;
}

.header-lang-link {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    padding: 2px 4px;
}

.header-lang-link:hover,
.header-lang-link.active {
    color: var(--gold-light);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    z-index: 1100;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .header-actions .btn {
        display: none;
    }
    .header-lang-selector {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header-logo img {
        height: 60px; /* Aumentado no telemóvel para melhor visibilidade do logótipo clássico */
    }
    .header-scrolled .header-logo img {
        height: 50px; /* Altura no telemóvel quando scrollado */
    }
}

/* ─── DYNAMIC MENU OVERLAY (MOBILE) ──────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 110px 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.mobile-menu-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-lang-selector {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    align-items: center;
}

.mobile-lang-selector .lang-label {
    color: var(--text-secondary);
    margin-right: 4px;
}

.mobile-lang-link {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.mobile-lang-link:hover,
.mobile-lang-link.active {
    color: var(--gold-light);
}

.mobile-contact-info {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.mobile-contact-info p {
    margin-bottom: 4px;
}

/* ─── HERO SECTION ───────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.08), transparent 45%),
                radial-gradient(circle at 15% 85%, rgba(18, 18, 18, 0.5), transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--gold-glow);
    filter: blur(120px);
    border-radius: 50%;
    top: 25%;
    right: 15%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-light);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background-color: var(--bg-card);
    aspect-ratio: 1;
}

.hero-image-container img,
.hero-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Card decoration */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: floating 4s ease-in-out infinite;
}

.floating-badge .icon-box {
    width: 44px;
    height: 44px;
    background-color: var(--gold-glow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.floating-badge-text p:first-child {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-badge-text p:last-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ─── STATS SECTION ──────────────────────────────────────────────────────── */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background-color: rgba(18, 18, 18, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 16px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── SERVICES SECTION ───────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: 0 16px 35px rgba(0,0,0,0.6), 0 0 20px var(--gold-glow);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-text {
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    transition: var(--transition-fast);
}

.service-card:hover .service-card-title {
    color: var(--gold-light);
}

.service-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card-link span {
    transition: var(--transition-fast);
}

.service-card:hover .service-card-link span {
    transform: translateX(4px);
}

/* ─── ABOUT / WHY CHOOSE US ──────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.about-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 280px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--gold);
    transform: translateY(10px);
    transition: var(--transition-smooth);
    margin-top: 4px;
}

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

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

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1rem;
}

.comment {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

.client-details h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.client-details p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 24px 0;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-fast);
}

.faq-header:hover .faq-question {
    color: var(--gold-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-answer-content {
    padding-top: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ state */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98)),
                url('/assets/images/eh-van-lisbon.png') center/cover no-repeat;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}

.cta .title-md {
    margin-bottom: 16px;
}

.cta .subtitle {
    margin-bottom: 32px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo img {
    height: 70px; /* Altura para boa visibilidade do logótipo clássico no rodapé */
    width: auto;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-contact li span:first-child {
    color: var(--gold);
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* ─── RESPONSIVE LAYOUTS (BREAKPOINTS) ────────────────────────────────────── */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        order: -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .floating-badge {
        left: -10px;
        bottom: 20px;
        padding: 10px 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Old mobile menu styling removed, CardNav handles responsive layout */

/* Scroll Fade Animation Helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ─── BLUR TEXT KEYFRAMES (REACT BITS PORT) ─────────────────────────────── */
@keyframes blurTextFromTop {
    0% {
        filter: blur(10px);
        opacity: 0;
        transform: translateY(-50px);
    }
    50% {
        filter: blur(5px);
        opacity: 0.5;
        transform: translateY(5px);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blurTextFromBottom {
    0% {
        filter: blur(10px);
        opacity: 0;
        transform: translateY(50px);
    }
    50% {
        filter: blur(5px);
        opacity: 0.5;
        transform: translateY(-5px);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: translateY(0);
    }
}

.blur-text-segment {
    display: inline-block;
}

/* ─── SCROLLFLOAT (REACT BITS PORT) ──────────────────────────────────────── */
.scroll-float {
    overflow: visible;
    line-height: 1.35 !important;
    padding-top: 0.15em;
    padding-bottom: 0.15em;
}

.scroll-float .char {
    display: inline-block !important;
    will-change: transform, opacity;
}

.content-scroll-float {
    will-change: transform, opacity;
}

.image-scroll-float {
    will-change: transform, opacity;
    overflow: hidden;
}

/* ─── REELS / UGC VIDEO SECTION ────────────────────────────────────────── */
.reels-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.reels-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-border) transparent;
}

.reels-container::-webkit-scrollbar {
    height: 6px;
}

.reels-container::-webkit-scrollbar-track {
    background: transparent;
}

.reels-container::-webkit-scrollbar-thumb {
    background-color: var(--gold-border);
    border-radius: var(--border-radius-full);
}

.reel-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 240px;
    scroll-snap-align: start;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.reel-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--gold-glow);
}

@media (max-width: 1200px) {
    .reel-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 992px) {
    .reel-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 576px) {
    .reel-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
        border-radius: var(--border-radius-sm);
    }
}

.reel-video-container {
    aspect-ratio: 9 / 16;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 576px) {
    .reel-video-container {
        padding: 8px;
    }
}

.reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-video-container:hover .reel-video {
    transform: scale(1.03);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
    transition: var(--transition-fast);
    z-index: 1;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.25);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.reel-card:hover .play-btn-circle {
    background-color: var(--gold);
    color: var(--bg-primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px var(--gold);
}

@media (max-width: 576px) {
    .play-btn-circle {
        width: 36px;
        height: 36px;
    }
    .play-btn-circle svg {
        width: 14px;
        height: 14px;
    }
}

.reel-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.reel-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .reel-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

.reel-profile-info {
    overflow: hidden;
}

.reel-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.reel-tag {
    font-size: 0.65rem;
    color: var(--text-secondary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.reel-action-bar {
    display: flex;
    height: 38px;
    background-color: #161616;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.reel-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light) !important;
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0 8px;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-cta-btn:hover {
    color: var(--white) !important;
    background-color: rgba(212, 175, 55, 0.05);
}

.reel-cta-arrow {
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.reel-cta-arrow:hover {
    color: var(--white);
    background-color: rgba(212, 175, 55, 0.05);
}

/* ─── REEL MODAL LIGHTBOX ──────────────────────────────────────────────── */
.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.reel-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.reel-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.reel-modal-content {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 90%;
    max-height: 640px;
    aspect-ratio: 9 / 16;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-modal.active .reel-modal-content {
    transform: scale(1);
}

.reel-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.reel-modal-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.phone-frame {
    width: 100%;
    height: 100%;
    background-color: #121212;
    border: 8px solid #282828;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 30px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #282828;
    border-radius: 2px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.reel-modal-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: radial-gradient(circle at center, #1c1c1c, #0a0a0a);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: floating 3s ease-in-out infinite;
}

.placeholder-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
}

..placeholder-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ─── FULL BACKGROUND VIDEO HERO ─────────────────────────────────────────── */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content-centered {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px; /* Tight, clean geometric layout spacing */
    margin-bottom: 32px;
    width: 100%;
}

.hero-title-top {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6.5vw, 5.8rem);
    font-weight: 400; /* Bold condensed Bebas Neue */
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
    text-align: center;
}

.hero-title-bottom {
    font-family: var(--font-cursive) !important;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem) !important;
    font-weight: 300 !important; /* Thin geometric Outfit Light */
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.0 !important;
    text-transform: uppercase !important; /* Thin presence gold header */
    display: inline-block;
    padding: 0 8px;
    overflow: visible !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.hero-actions-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-hero-lg {
    padding: 16px 36px;
    font-size: 1.15rem;
    border-radius: var(--border-radius-full);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
}

.btn-hero-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

/* ─── ONBOARDING MODAL ───────────────────────────────────────────────────── */
.onboarding-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.onboarding-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.onboarding-modal-content {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px var(--gold-glow);
    padding: 40px;
    z-index: 1;
    overflow: hidden;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.onboarding-modal.active .onboarding-modal-content {
    transform: translateY(0) scale(1);
}

.onboarding-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-secondary);
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.onboarding-modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Onboarding Header & Progress */
.onboarding-header {
    margin-bottom: 24px;
}

.onboarding-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    box-shadow: 0 0 8px var(--gold-glow);
    border-radius: var(--border-radius-full);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-counter {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Steps Content */
.onboarding-step {
    display: none;
    flex-direction: column;
    animation: fadeInStep 0.4s ease forwards;
}

.onboarding-step.active {
    display: flex;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onboarding-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Step 1 Cards Grid */
.onboarding-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .onboarding-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.onboarding-card {
    position: relative;
    cursor: pointer;
}

.onboarding-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.onboarding-card-inner {
    padding: 20px 16px;
    text-align: center;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
}

.onboarding-card:hover .onboarding-card-inner {
    border-color: var(--gold-border);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-2px);
}

.onboarding-card input[type="radio"]:checked + .onboarding-card-inner {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.card-icon {
    font-size: 2.2rem;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.onboarding-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.onboarding-card-inner h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Inputs & Details */
.onboarding-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.onboarding-step textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    padding: 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    resize: none;
    height: 120px;
    width: 100%;
    box-sizing: border-box;
    transition: var(--transition-fast);
}

.onboarding-step textarea:focus,
.onboarding-step input[type="text"]:focus,
.onboarding-step input[type="tel"]:focus,
.onboarding-step input[type="email"]:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.onboarding-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.suggestion-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition-fast);
}

.suggestion-tag:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.05);
}

/* Step 3 (Location) & Step 4 (Contacts) */
.onboarding-step input[type="text"],
.onboarding-step input[type="tel"],
.onboarding-step input[type="email"] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: var(--transition-fast);
}

.onboarding-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Actions Section */
.onboarding-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.onboarding-actions .btn {
    padding: 12px 28px;
    min-width: 120px;
}

/* Success / Loading Screen */
.onboarding-success,
.onboarding-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    animation: fadeInStep 0.4s ease forwards;
}

.success-icon-box {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: popSuccess 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popSuccess {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.onboarding-success h4,
.onboarding-loading p {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.onboarding-success p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 450px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── COOKIE CONSENT BANNER ────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 420px;
    width: calc(100% - 48px);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    animation: slideUpCookie 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-content p a:hover {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-cookie-accept {
    background: var(--gold);
    color: #0A0A0A;
}

.btn-cookie-accept:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-cookie-reject {
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: transparent;
}

.btn-cookie-reject:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: calc(100% - 32px);
        max-width: none;
    }
}

/* ─── PRIVACY MODAL ──────────────────────────────────────────────────────── */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.privacy-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.privacy-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    padding: 40px;
    z-index: 1;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.privacy-modal.active .privacy-modal-content {
    transform: translateY(0);
}

.privacy-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-secondary);
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.privacy-modal-close:hover {
    color: var(--gold);
}

.privacy-text-container {
    overflow-y: auto;
    padding-right: 12px;
}

.privacy-text-container::-webkit-scrollbar {
    width: 6px;
}

.privacy-text-container::-webkit-scrollbar-thumb {
    background-color: var(--glass-border);
    border-radius: var(--border-radius-full);
}

.privacy-text-container h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.privacy-text-container h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.privacy-text-container p, 
.privacy-text-container ul {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.privacy-text-container ul {
    padding-left: 20px;
}

/* ─── RESPONSIVE HERO CTA BUTTONS ────────────────────────────────────────── */
@media (max-width: 576px) {
    .hero-actions-centered {
        flex-direction: column;
        width: 100%;
        max-width: 320px; /* Centered, elegant, compact button layouts on mobile */
        margin: 0 auto;
        gap: 12px;
    }
    
    .hero-actions-centered .btn-hero-lg {
        width: 100% !important;
        text-align: center;
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
    }
}

