/* Custom Typography: Avenir Next W1G */
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-DemiItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next W1G';
    src: url('../assets/tipography/AvenirNextW1G-HeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Warm, Earthy Color Palette ("Luz de Tarde" & "Amanecer") */
    --primary-color: #d96c4a; /* Terracotta / Warm Orange */
    --primary-hover: #c25939;
    --secondary-color: #597a65; /* Soft Sage Green */
    --accent-yellow: #f2cb72; /* Golden hour yellow */
    --bg-light: #fdfaf5; /* Cream / Off-white */
    --text-main: #2a2724; /* Dark Charcoal */
    --text-muted: #6b645d; /* Medium Brownish-Grey */
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1ebd5a;
    
    /* Premium Shadows & Glassmorphism variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --premium-shadow: 0 20px 40px rgba(217, 108, 74, 0.08), 0 1px 3px rgba(0,0,0,0.02);

    /* Rotación del logo (Ajusta los grados aquí para enderezarlo) */
    --logo-rotation: 0deg;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir Next W1G', 'Inter', sans-serif;
    font-size: 1.05rem;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Dynamic Background Blobs via Pseudo-elements */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: float 25s infinite alternate ease-in-out;
    pointer-events: none;
}

body::before {
    top: -10%; left: -10%; 
    width: 50vw; height: 50vw;
    background: rgba(217, 108, 74, 0.15); /* Terracotta */
}

body::after {
    bottom: -20%; right: -10%; 
    width: 60vw; height: 60vw;
    background: rgba(242, 203, 114, 0.15); /* Warm yellow */
    animation-delay: -12s;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

h1, h2, h3, h4 {
    font-family: 'Avenir Next W1G', 'Outfit', sans-serif;
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 7rem 0; }
.pt-0 { padding-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 4rem; }

/* Navigation Bar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center; height: 120px; transition: height 0.3s;
}

.navbar.scrolled .nav-container { height: 90px; }
.navbar.scrolled .nav-logo { height: 75px; }

.nav-brand {
    font-family: 'Avenir Next W1G', 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex; gap: 2.5rem; align-items: center; list-style: none;
}

.nav-links a {
    text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 1.05rem; transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary-color); }

.nav-cta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.35);
    color: white !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1002;
}
.mobile-menu-btn span {
    display: block; width: 30px; height: 3px; background-color: var(--text-main); border-radius: 3px; transition: all 0.3s;
}

@media (max-width: 900px) {
    .mobile-menu-btn { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background-color: var(--bg-light); flex-direction: column; justify-content: center; align-items: center;
        gap: 2.5rem; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* Typography & Titles */
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.center { text-align: center; }
.section-title.center::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--primary-color); border-radius: 2px;
}
.section-title.left::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--primary-color); border-radius: 2px;
}

.subsection-title {
    font-size: 1.4rem; color: var(--secondary-color); margin-bottom: 1.5rem; font-weight: 500;
}
.highlight-text {
    font-size: 1.5rem; font-weight: 600; font-family: 'Avenir Next W1G', 'Outfit', sans-serif; color: var(--primary-color); margin: 2.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 95vh; display: flex; align-items: center; padding: 12rem 0 6rem; position: relative;
}
.page-hero { min-height: 65vh; padding-top: 10rem; padding-bottom: 4rem; }

.hero .container {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}

.hero-text { z-index: 2; }
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; margin-bottom: 1.5rem;
    line-height: 1.1; letter-spacing: -1.5px;
    color: var(--text-main);
}
.hero .description { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.6; }
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.justify-center { justify-content: center; }
.microcopy { font-size: 0.95rem; color: var(--text-muted); opacity: 0.9; }

/* Dynamic Image Presentation */
.image-box { position: relative; }
.image-box::before {
    content: ''; position: absolute; top: 20px; left: -20px; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(217, 108, 74, 0.2) 0%, rgba(217, 108, 74, 0) 70%);
    z-index: -1; filter: blur(20px); transition: all 0.4s ease;
}

.image-box img {
    width: 100%; height: auto; border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
    border: 8px solid white; display: block; object-fit: cover;
    transform: rotate(-2deg); transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-box:hover img {
    transform: scale(1.02) rotate(0deg);
}

/* Hero Image Presentation */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: ''; position: absolute; top: 20px; left: -20px; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(217, 108, 74, 0.15) 0%, rgba(217, 108, 74, 0) 70%);
    z-index: -1; filter: blur(25px); transition: all 0.4s ease;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
    border: 8px solid white;
    display: block;
    object-fit: cover;
    transform: rotate(2deg);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03) rotate(0deg);
}

.hero-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-logo-wrapper::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 140%; height: 140%;
    background: radial-gradient(circle, rgba(242, 203, 114, 0.3) 0%, rgba(217, 108, 74, 0.1) 40%, rgba(255,255,255,0) 70%);
    z-index: -1; filter: blur(25px);
    animation: pulse-glow 4s infinite alternate ease-in-out;
}

.hero-logo-wrapper img {
    width: 90%; max-width: 500px; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(217, 108, 74, 0.3));
    animation: float-logo 6s infinite ease-in-out;
    transform: rotate(var(--logo-rotation));
}

@keyframes pulse-glow {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes float-logo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.layout-grid.reverse .image-box img { transform: rotate(2deg); }
.layout-grid.reverse .image-box:hover img { transform: scale(1.02) rotate(0deg); }

/* Buttons */
.cta-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; text-decoration: none;
    padding: 1.1rem 2.5rem; border-radius: 50px; font-size: 1.1rem; font-weight: 600; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cta-button.small { padding: 0.8rem 2rem; font-size: 1rem; }

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)); color: white;
    box-shadow: 0 10px 25px rgba(217, 108, 74, 0.2);
}
.cta-button.primary:hover {
    transform: translateY(-4px); box-shadow: 0 15px 35px rgba(217, 108, 74, 0.3);
}

.cta-button.secondary {
    background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: var(--text-main); border: 1px solid var(--glass-border); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.cta-button.secondary:hover {
    background: white; border-color: var(--primary-color); transform: translateY(-4px); color: var(--primary-color);
}

.cta-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.25) !important;
}
.cta-button.instagram:hover {
    background: linear-gradient(45deg, #f3a048 0%, #ec784e 25%, #e13b54 50%, #d43575 75%, #c42993 100%) !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.4) !important;
    color: white !important;
}

.cta-button.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5bb5 100%) !important;
    color: white !important;
    border: 1px solid #1877F2 !important;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.25) !important;
}
.cta-button.facebook:hover {
    background: linear-gradient(135deg, #166fe5 0%, #0b4f9e 100%) !important;
    border-color: #166fe5 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4) !important;
    color: white !important;
}

.whatsapp-icon { width: 24px; height: 24px; }
.pulse { animation: pulse 2.5s infinite; }
.pulse-large { animation: pulse-large 2.5s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(217, 108, 74, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(217, 108, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 108, 74, 0); }
}
@keyframes pulse-large {
    0% { box-shadow: 0 0 0 0 rgba(217, 108, 74, 0.6); }
    70% { box-shadow: 0 0 0 30px rgba(217, 108, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 108, 74, 0); }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(3%, 5%) rotate(180deg); }
    100% { transform: translate(-3%, 3%) rotate(360deg); }
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--whatsapp-color), #20a852); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 1000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-wa:hover { transform: scale(1.15) rotate(5deg); }
.floating-wa svg { width: 35px; height: 35px; }

/* Floating Instagram */
.floating-ig {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 1000;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3) !important; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-ig:hover { transform: scale(1.15) rotate(5deg); box-shadow: 0 15px 35px rgba(220, 39, 67, 0.45) !important; }
.floating-ig svg { width: 35px; height: 35px; }

/* Layouts */
.layout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.layout-grid.reverse > div:first-child { order: 2; }
.layout-grid.reverse > div:last-child { order: 1; }

@media (max-width: 900px) {
    .container { padding: 0 1.25rem; }
    
    .hero { padding: 9rem 0 4rem; min-height: auto; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: clamp(2.3rem, 7vw, 3rem); }
    .hero-buttons { justify-content: center; }
    .hero-logo-wrapper { margin-top: 1rem; }
    .hero-logo-wrapper img { max-width: 300px; }
    
    .hero-image-wrapper { margin-top: 1rem; }
    .hero-image-wrapper img { max-width: 300px; transform: rotate(0deg) !important; border-width: 6px !important; }
    
    .image-box img { transform: rotate(0deg) !important; border-width: 6px !important; }
    .layout-grid.reverse .image-box img { transform: rotate(0deg) !important; border-width: 6px !important; }
    
    .layout-grid, .layout-grid.reverse { grid-template-columns: 1fr; gap: 3rem; }
    .layout-grid.reverse > div:first-child, .layout-grid.reverse > div:last-child { order: unset; }
    
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    
    .card { padding: 2.2rem 1.5rem; }
    .form-container { padding: 2rem 1.25rem; border-radius: 20px; }
    .faq-container { padding: 1.5rem 1.25rem; border-radius: 20px; }
    
    .floating-wa, .floating-ig { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .floating-wa svg, .floating-ig svg { width: 28px; height: 28px; }
    
    .footer-grid { grid-template-columns: 1fr !important; gap: 3rem; text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .footer-logo { width: 120px; height: 120px; margin-bottom: 1rem; }
    
    .nav-logo { height: 50px !important; }
    .nav-container { height: 70px !important; }
    .navbar.scrolled .nav-container { height: 60px !important; }
    .navbar.scrolled .nav-logo { height: 42px !important; }
}

.content-box p { margin-bottom: 1.2rem; color: var(--text-muted); font-size: 1.05rem; }
.content-box strong { color: var(--text-main); }

/* Check list & Steps */
.check-list { list-style: none; margin-bottom: 1.5rem; }
.check-list li {
    position: relative; padding-left: 2.2rem; margin-bottom: 1rem; color: var(--text-main); font-weight: 500;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; font-size: 1.2rem;
    background: rgba(217, 108, 74, 0.1); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-number {
    flex-shrink: 0; width: 45px; height: 45px; background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-family: 'Avenir Next W1G', 'Outfit', sans-serif; color: white; font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(217, 108, 74, 0.3);
}
.step p { margin: 0; padding-top: 5px; color: var(--text-muted); }

/* Grid & Cards - Glassmorphism */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: 2rem; }

.card {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 24px; padding: 3rem 2.5rem; border: 1px solid var(--glass-border); transition: all 0.4s ease; text-align: center;
    box-shadow: var(--premium-shadow);
}
.card p { font-size: 1.15rem; color: var(--text-main); font-weight: 500; }
.card:hover {
    transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); border-color: rgba(217, 108, 74, 0.3); background: white;
}

/* Gallery Section */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); gap: 1.5rem; margin-top: 3.5rem;
}
.gallery-item {
    border-radius: 20px; overflow: hidden; aspect-ratio: 1; cursor: pointer; box-shadow: var(--premium-shadow); transition: transform 0.4s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.gallery-item:hover img { transform: scale(1.08); }

/* Contact Form - Glassmorphism */
.form-container {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 24px; padding: 3rem; border: 1px solid var(--glass-border); box-shadow: var(--premium-shadow);
}
.form-group { margin-bottom: 1.8rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-main); }
.help-text { font-size: 0.85rem; color: var(--text-muted); font-weight: normal; margin-left: 0.5rem; }

.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 1.2rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 12px;
    background-color: rgba(255,255,255,0.8); color: var(--text-main); font-family: 'Avenir Next W1G', 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary-color); background-color: white; box-shadow: 0 0 0 4px rgba(217, 108, 74, 0.1);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px; margin: 0 auto; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 24px; padding: 2rem 3rem; border: 1px solid var(--glass-border); box-shadow: var(--premium-shadow);
}
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); margin-bottom: 1rem; }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 1.5rem 0; font-size: 1.2rem;
    font-family: 'Avenir Next W1G', 'Outfit', sans-serif; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600;
}
.faq-question .icon { font-size: 1.5rem; color: var(--primary-color); transition: transform 0.4s ease; }
.faq-question.active .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), #c25939); color: white; position: relative; overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; top: -50%; left: -20%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; pointer-events: none;
}
.final-cta .hero-title { color: white; background: none; -webkit-text-fill-color: white; }
.final-cta .description { color: rgba(255, 255, 255, 0.9); }
.final-cta .cta-button.primary { background: white; color: var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.final-cta .cta-button.primary:hover { background: var(--bg-light); transform: translateY(-5px); }

/* Footer */
footer {
    padding: 5rem 0 2rem; background-color: #1a1816; color: white; border-top: none;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }
.footer-brand {
    font-size: 2rem; margin-bottom: 1.5rem; letter-spacing: -1px;
    background: linear-gradient(90deg, #f2cb72, #d96c4a); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-desc { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.footer-col h4 { font-size: 1.3rem; margin-bottom: 1.8rem; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; color: rgba(255,255,255,0.7); }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.copyright { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.copyright a { color: rgba(255,255,255,0.5); text-decoration: underline; transition: color 0.3s ease; }
.copyright a:hover { color: var(--primary-color); }


/* Animations */
.js .fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.9s; }

/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo {
    height: 100px;
    width: auto;
    border-radius: 8px; /* Slightly round the square logo */
    transform: rotate(var(--logo-rotation));
    transition: height 0.3s ease;
}
.footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 16px;
    transform: rotate(var(--logo-rotation));
}
.footer-brand-wrapper .footer-brand {
    margin-bottom: 0;
}
