:root { --color-white: #ffffff; --color-light-beige: #F9F6F0; --color-beige: #E8E2D6; --color-black: #1A1A1A; --color-dark: #121212; --color-gold: #C5A059; --color-gold-light: #D4AF37; --font-heading: 'Playfair Display', serif; --font-body: 'Inter', sans-serif; --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: var(--color-black); background-color: var(--color-white); overflow-x: hidden; font-weight: 300; } h1, h2, h3, h4, h5, h6, .logo, .font-serif { font-family: var(--font-heading); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.25; } h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--color-white); margin-bottom: 2.5rem; } h2 { font-size: clamp(2.2rem, 3.5vw, 3.5rem); letter-spacing: -0.5px; } h3 { font-size: 1.6rem; margin-bottom: 0.8rem; letter-spacing: 0.5px; } .display-title { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -1px; } p { margin-bottom: 1.5rem; color: #555555; } p strong { color: var(--color-black); font-weight: 500; } .text-white { color: var(--color-white) !important; } .text-white p { color: #DDDDDD; } .text-center { text-align: center; } .italic { font-style: italic; } .gold-text { color: var(--color-gold); } .editorial-text { font-size: 1.15rem; line-height: 1.9; color: #444; } .link-dark { color: var(--color-black); text-decoration: none; transition: color 0.3s; } .link-dark:hover { color: var(--color-gold); } .bg-light { background-color: var(--color-light-beige); } .bg-white { background-color: var(--color-white); } .bg-dark { background-color: var(--color-dark); } .mt-2 { margin-top: 1.5rem; } .mt-4 { margin-top: 4rem; } .full-width { width: 100%; } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .section { padding: 8rem 0; } .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; } .grid-2-sm { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } .align-center { align-items: center; } .divider { width: 60px; height: 1px; background-color: var(--color-gold); margin-bottom: 2.5rem; } .divider.center { margin: 0 auto 3rem auto; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 1.2rem 2.5rem; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: var(--transition-smooth); border-radius: 0; cursor: pointer; font-weight: 400; border: 1px solid transparent; } .btn-sm { padding: 0.8rem 1.8rem; } .btn-solid { background-color: var(--color-black); color: var(--color-white); } .btn-solid:hover { background-color: var(--color-gold); color: var(--color-white); } .btn-outline { background-color: transparent; color: var(--color-white); border: 1px solid var(--color-white); } .btn-outline:hover { background-color: var(--color-white); color: var(--color-black); } .btn-whatsapp { background-color: #25D366; color: white; gap: 12px; border-radius: 4px; } .btn-whatsapp:hover { background-color: #1EBE5C; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15); } .header { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: var(--transition-smooth); background: transparent; } .header.scrolled { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); padding: 1rem 5%; box-shadow: 0 1px 0 rgba(0,0,0,0.05); } .logo-link { display: flex; align-items: center; text-decoration: none; z-index: 10; flex-shrink: 0; } .logo-img { height: 75px; width: auto; transition: var(--transition-smooth); } .header.scrolled .logo-img { height: 55px; } .nav { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; margin-right: 3rem; } .nav a { color: var(--color-white); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s; white-space: nowrap; position: relative; padding: 0.5rem 0; } .nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; } .nav a:hover::after { width: 100%; } .header.scrolled .nav a { color: var(--color-black); } .header-actions { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; } .lang-switcher { display: flex; align-items: center; gap: 12px; } .lang-item { display: flex; align-items: center; gap: 4px; cursor: pointer; transition: var(--transition-smooth); opacity: 0.6; color: inherit; } .lang-item.active { opacity: 1; color: var(--color-gold); } .flag { font-size: 1.1rem; filter: grayscale(100%); transition: filter 0.3s ease; } .lang-item.active .flag, .lang-item:hover .flag { filter: grayscale(0%); } .lang-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; } .lang-divider { color: rgba(255, 255, 255, 0.2); font-size: 0.8rem; } .flag-icon { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.2); display: inline-block; vertical-align: middle; margin-right: 8px; transition: transform 0.3s ease; } .lang-item:hover .flag-icon { transform: scale(1.15); } .header.scrolled .lang-item { color: var(--color-black); } .header.scrolled .lang-item.active { color: var(--color-gold); } .header.scrolled .lang-divider { color: var(--color-beige); } .nav a:not(.btn):hover { color: var(--color-gold) !important; } .header.scrolled .btn-outline { border-color: var(--color-black); color: var(--color-black); } .header.scrolled .btn-outline:hover { background-color: var(--color-black); color: var(--color-white); } .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; z-index: 1001; } .mobile-menu-btn span { display: block; width: 30px; height: 1px; background-color: var(--color-white); margin: 8px 0; transition: var(--transition-smooth); } .header.scrolled .mobile-menu-btn span { background-color: var(--color-black); } .hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; background-color: var(--color-dark); } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.45); } .hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 2rem; } .hero .subtitle { color: var(--color-gold); text-transform: uppercase; letter-spacing: 6px; font-size: 0.85rem; margin-bottom: 2rem; } .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .fade-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; } .delay-1 { animation-delay: 0.3s; } .delay-2 { animation-delay: 0.6s; } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } .esencia-img { position: relative; padding: 2rem 0 0 2rem; } .esencia-img::before { content: ''; position: absolute; top: 0; left: 0; width: 80%; height: 80%; background-color: var(--color-beige); z-index: 0; } .esencia-img img { width: 100%; height: auto; position: relative; z-index: 1; object-fit: cover; box-shadow: -20px 20px 50px rgba(0,0,0,0.05); } .filosofia-img { position: relative; padding: 0 2rem 2rem 0; } .filosofia-img::before { content: ''; position: absolute; bottom: 0; right: 0; width: 80%; height: 80%; background-color: var(--color-beige); z-index: 0; } .filosofia-img img { width: 100%; height: auto; position: relative; z-index: 1; object-fit: cover; box-shadow: 20px -20px 50px rgba(0,0,0,0.05); } .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; } .service-card { background: var(--color-white); padding: 3.5rem 2.5rem; transition: var(--transition-smooth); border: 1px solid var(--color-beige); text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; } .service-card:hover { border-color: var(--color-gold); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.03); } .service-icon { font-size: 2rem; color: var(--color-gold); margin-bottom: 2rem; } .full-span { grid-column: 1 / -1; max-width: 800px; margin: 0 auto; } .philosophy-container { max-width: 800px; } .philosophy-text { font-size: 1.2rem; } .experiencia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; margin-top: 5rem; } .exp-item { position: relative; padding: 2rem; border-top: 1px solid rgba(255,255,255,0.1); transition: var(--transition-smooth); } .exp-item:hover { border-top-color: var(--color-gold); } .exp-number { display: block; font-size: 3.5rem; font-family: var(--font-heading); color: rgba(197, 160, 89, 0.15); margin-bottom: 1rem; line-height: 1; } .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; } .gallery-item { position: relative; overflow: hidden; background-color: var(--color-dark); aspect-ratio: 4/3; } .gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 1.5s ease; opacity: 0.9; } .gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; } .gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 3rem 2rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--color-white); font-family: var(--font-heading); font-size: 1.8rem; transform: translateY(20px); opacity: 0; transition: var(--transition-smooth); letter-spacing: 1px; } .gallery-item:hover img { transform: scale(1.05); opacity: 1; } .gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); } .locations-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 3rem; } .location-item { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; padding: 1.5rem 2.5rem; border: 1px solid var(--color-beige); color: var(--color-black); transition: var(--transition-smooth); background: var(--color-white); font-weight: 500; } .location-item:hover { border-color: var(--color-gold); color: var(--color-gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); } .contact-form { background: var(--color-white); padding: 4rem 3rem; box-shadow: 0 30px 60px rgba(0,0,0,0.03); } .form-group { text-align: left; } .mt-form { margin-top: 1.5rem; } .form-group label { display: block; margin-bottom: 0.8rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-black); font-weight: 500; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1.2rem; border: 1px solid var(--color-beige); background: transparent; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.4s ease; border-radius: 0; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-gold); } .footer { padding: 5rem 0 0; background-color: #FFFFFF; color: #000; border-top: 1px solid #EEEEEE; font-family: var(--font-body); } .footer-container { max-width: 1300px; } .footer-top-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; } .newsletter-headline { font-size: 0.95rem; line-height: 1.5; font-weight: 400; color: #000; margin: 0 0 1.2rem 0; max-width: 250px; letter-spacing: 0; } .footer-social-icons { display: flex; gap: 1.5rem; align-items: center; } .footer-social-icons a { color: #000; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; justify-content: center; opacity: 0.8; } .footer-social-icons a:hover { color: #000; opacity: 1; transform: translateY(-2px); } .footer-middle-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3.5rem; gap: 4rem; padding-top: 1rem; } .footer-newsletter-col { flex: 0 0 320px; } .footer-input-group { display: flex; align-items: center; border: 1px solid #E0E0E0; padding: 0 1.2rem; background: #FFF; width: 100%; height: 54px; transition: border-color 0.3s ease; } .footer-input-group:focus-within { border-color: #000; } .footer-input-group input { border: none; height: 100%; flex: 1; font-size: 1rem; color: #000; background: transparent; outline: none; letter-spacing: 0; } .footer-input-group input::placeholder { color: #888; } .footer-input-group button { background: none; border: none; cursor: pointer; color: #333; display: flex; align-items: center; padding: 0; transition: transform 0.3s ease; } .footer-input-group button:hover { transform: translateX(5px); } .footer-payments-col { flex: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem; } .payments-flex-row { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; justify-content: flex-end; align-items: center; } .payments-flex-row img { height: 20px; width: auto; object-fit: contain; transition: all 0.4s ease; } .payments-flex-row img:hover { transform: scale(1.1); } .payment-badge-pill { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #999; border: 1px solid #EEE; padding: 4px 10px; border-radius: 2px; transition: all 0.3s ease; cursor: default; } .payment-badge-pill:hover { border-color: #333; color: #333; } .mac-pay { background-color: #0071e3; color: white; border: none; padding: 6px 12px; } .kueski { color: #1a73e8; border-color: #1a73e8; } .creditea { color: #003366; border-color: #003366; } .prestamo { color: #28a745; border-color: #28a745; font-style: italic; } .spei { color: #000; border-color: #333; } .spei b { font-weight: 900; margin-left: 4px; } .footer-bottom-row { display: flex; justify-content: flex-end; padding-bottom: 2rem; } .footer-copyright-text { font-size: 0.85rem; color: #333; margin: 0; } .footer-legal-bar { background-color: #FFF; padding: 2rem 0 3rem; } .legal-separator { width: 100%; height: 1px; background-color: #EEEEEE; margin-bottom: 2rem; } .legal-text-center { font-size: 0.75rem; color: #666; line-height: 1.8; text-align: center; margin: 0; } @media (max-width: 1024px) { .footer-middle-row { flex-direction: column; gap: 3rem; } .footer-newsletter-col { flex: 1; width: 100%; } .footer-payments-col { align-items: flex-start; } .payments-flex-row { justify-content: flex-start; } .footer-bottom-row { justify-content: flex-start; } } @media (max-width: 768px) { .footer-top-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; } .footer-social-icons { width: 100%; justify-content: flex-start; } }  .floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 10001; } .action-btn { width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; } .action-btn:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); } .action-btn svg { width: 26px; height: 26px; color: white; } .btn-ai { background-color: #000; } .btn-whatsapp { background-color: #25D366; text-decoration: none; } .ai-widget { position: fixed; bottom: 0; right: 0; z-index: 10000; } .ai-button { display: none !important; } .ai-chat-window { bottom: 100px; right: 30px; } @media (max-width: 768px) { .floating-actions { bottom: 20px; right: 20px; gap: 10px; } .action-btn { width: 48px; height: 48px; } .ai-chat-window { bottom: 85px; right: 20px; width: calc(100% - 40px); height: 70vh; } } @media (max-width: 900px) { .cookie-banner { min-width: calc(100% - 3rem); flex-direction: column; padding: 2rem; text-align: center; bottom: 1.5rem; gap: 1.5rem; } .cookie-actions { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1.5rem; width: 100%; justify-content: center; } } .scroll-reveal { opacity: 0; transform: translateY(60px); transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .scroll-reveal.right { transform: translateX(60px); } .scroll-reveal.visible { opacity: 1; transform: translate(0, 0); } @media (max-width: 900px) { .grid-2, .services-grid { grid-template-columns: 1fr; gap: 3rem; } .esencia-img::before, .filosofia-img::before { display: none; } .esencia-img, .filosofia-img { padding: 0; } .gallery-item.large { grid-column: span 1; aspect-ratio: 4/5; } } @media (max-width: 768px) { .header { padding: 1.5rem 2rem; } .mobile-menu-btn { display: block; } .nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--color-dark); flex-direction: column; justify-content: center; transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); } .nav.active { right: 0; } .nav a { color: var(--color-white) !important; font-size: 1.2rem; } .mobile-menu-btn.active span { background-color: var(--color-white) !important; } .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); } .mobile-menu-btn.active span:nth-child(2) { opacity: 0; } .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .section { padding: 3.5rem 1.5rem; } .display-title { font-size: clamp(2rem, 8vw, 3rem); } .hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); } .grid-2-sm { grid-template-columns: 1fr; } .hero-actions { flex-direction: column; width: 100%; } .hero-actions .btn { width: 100%; } } .text-sm-custom { font-size: 1rem; letter-spacing: 5px; margin-bottom: 0.5rem; text-transform: uppercase; } .max-w-800 { max-width: 800px; } .mx-auto { margin-left: auto; margin-right: auto; } .stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 4rem; padding: 2rem 0 1rem; } .stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; } .stat-item:not(:last-child)::after { content: ''; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); height: 40px; width: 1px; background-color: var(--color-beige); } .stat-number { font-size: 3.5rem; font-family: var(--font-heading); font-weight: 400; color: #9E7B35; line-height: 1; margin-bottom: 0.8rem; } .stat-label { font-size: 0.75rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--color-black); } .brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 4rem; align-items: center; margin-bottom: 4rem; padding-top: 1rem; } .brand-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; transition: var(--transition-smooth); width: auto; opacity: 0.6; } .brand-item:hover { opacity: 1; } .brand-logo { max-width: 120px; max-height: 50px; object-fit: contain; transition: var(--transition-smooth); } .brand-text { font-family: var(--font-body); font-size: 0.75rem; color: var(--color-black); text-transform: uppercase; letter-spacing: 4px; font-weight: 500; transition: var(--transition-smooth); } .brand-item:hover .brand-text { color: var(--color-gold); } @media (max-width: 768px) { .brands-grid { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; gap: 1.5rem 1rem !important; justify-items: center !important; } .brand-logo { max-width: 90px !important; } .brand-text { font-size: 0.55rem !important; } .brand-item { opacity: 0.8; width: 20% !important; margin-bottom: 1rem; } .stat-number { font-size: 3rem; } .stats-grid { flex-direction: column; gap: 3rem; } .stat-item:not(:last-child)::after { display: none; } } /* Cookie Banner Apple-Style */

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #f5f5f7;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.4rem 5%;
    z-index: 10002;
    display: none;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    margin: 0 !important;
    animation: none;
}

.cookie-banner.active {
    display: block !important;
    animation: cookieSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.cookie-container-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
    position: relative;
}

/* Close (×) button — top right */
.cookie-close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #1d1d1f;
    line-height: 1;
    padding: 6px 8px;
    font-weight: 300;
    opacity: 0.55;
    transition: opacity 0.25s;
}

.cookie-close:hover {
    opacity: 1;
}

/* Text block */
.cookie-content {
    flex: 1;
    text-align: left;
    padding-right: 1rem;
}

.cookie-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.25rem;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}

.cookie-text {
    font-size: 0.82rem;
    color: #48484a;
    margin: 0;
    line-height: 1.55;
}

.cookie-link {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    transition: border-color 0.2s;
}

.cookie-link:hover {
    border-bottom-color: #1d1d1f;
}

/* Actions row */
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-prefs {
    font-size: 0.82rem;
    color: #1d1d1f;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    transition: opacity 0.2s;
    opacity: 0.75;
}

.cookie-prefs:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Pill buttons */
.cookie-btn {
    padding: 0.65rem 2rem;
    font-size: 0.82rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
    background: transparent;
    border: 1.5px solid #1d1d1f;
    color: #1d1d1f;
    text-transform: none !important;
    line-height: 1;
    min-width: 120px;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
}

.cookie-btn:hover {
    background: #1d1d1f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media (max-width: 1024px) {
    .cookie-banner {
        padding: 2rem 1.5rem 1.8rem;
    }
    .cookie-container-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding-right: 2rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }
    .cookie-close {
        top: 1rem;
        transform: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cookie-actions {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    .cookie-btn {
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    .cookie-prefs {
        width: 100%;
        text-align: center;
        order: 3;
    }
}

/* HERO VIDEO STYLES */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* VIDEO SECTION STYLES */
.sensory-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid var(--color-beige);
}

.video-wrapper {
    position: relative;
}

/* Mobile Vertical View Fixes by Antigravity */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }

    /* Header Adjustments */
    .header {
        padding: 1rem 1.5rem !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo-link {
        z-index: 10;
    }

    .logo-img {
        height: 45px !important; /* Make logo smaller on mobile */
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-left: auto !important;
        margin-right: 1rem !important;
        z-index: 10;
    }

    /* Hide redundant Contact button in header on mobile */
    .header-actions .btn {
        display: none !important;
    }

    .lang-switcher {
        gap: 8px !important;
    }

    .lang-text {
        font-size: 0.65rem !important;
    }

    .mobile-menu-btn {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 1001;
        flex-shrink: 0;
    }

    /* Mobile Nav Menu */
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: #121212 !important; /* var(--color-dark) */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        transition: right 0.5s ease-in-out !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav.active {
        right: 0 !important;
    }

    .nav a {
        color: #ffffff !important;
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }

    /* Fix Cookie Banner Overflow */
    .cookie-banner {
        padding: 1.5rem !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    .cookie-container-inner {
        flex-direction: column !important;
        gap: 1rem !important;
        padding-right: 0 !important;
    }

    .cookie-actions {
        width: 100% !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .cookie-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Fix other potential overflow elements */
    .container {
        padding: 0 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section {
        padding: 4rem 0 !important;
    }

    /* Brands Grid */
    .brands-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1.5rem 1rem !important;
        align-items: center !important;
    }
    
    .brand-logo {
        max-width: 100px !important;
    }
    
    .brand-text {
        font-size: 0.65rem !important;
    }

    .brand-item {
        width: 30% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Stats Grid */
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3rem 1.5rem !important;
        align-items: flex-start !important;
        justify-content: center !important;
    }

    .stat-item {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        letter-spacing: 1.5px !important;
        text-align: center !important;
    }

    .stat-item::after {
        display: none !important;
    }

    /* Locaciones Section Fixes */
    .locaciones-text {
        padding: 2rem 1.5rem !important;
        border-right: 1px solid var(--color-beige) !important;
        border-bottom: none !important;
    }
    
    .locaciones-img {
        height: auto !important;
        aspect-ratio: 4/3;
    }

    .contact-form {
        padding: 2rem 1.5rem !important;
    }

    .sensory-video {
        aspect-ratio: 16/9;
    }

    /* Gallery Overlay Mobile Fixes */
    .gallery-overlay {
        font-size: 1.1rem !important;
        padding: 1.2rem 0.8rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        text-align: center !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
}

/* ============================================================
   FOOTER MOBILE LAYOUT (Base)
   ============================================================ */
.footer {
    border-top: 1px solid #EEEEEE;
    padding: 3rem 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 0 1.5rem;
}

.footer-newsletter-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.newsletter-headline {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    max-width: 300px;
    line-height: 1.4;
}

.footer-newsletter-form {
    width: 100%;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
}

.footer-payments-col {
    width: 100%;
}

.payments-flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    max-width: 300px;
    margin: 0 auto;
}

.footer-copyright-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.footer-legal-bar {
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid #EEEEEE;
}

.legal-text-center {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   FOOTER DESKTOP LAYOUT — solo aplica en pantallas >= 1024px
   La versión móvil queda INTACTA
   ============================================================ */
@media (min-width: 1024px) {
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 4rem 2rem 0 !important;
        max-width: 800px !important;
        margin: 0 auto !important;
        gap: 2.5rem !important;
    }

    .footer-container > .footer-newsletter-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .footer-newsletter-col .newsletter-headline {
        text-align: center !important;
        max-width: 500px !important;
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .footer-newsletter-col .footer-newsletter-form {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .footer-newsletter-col .footer-input-group {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .footer-container > .footer-social-icons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2.5rem !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .footer-container > .footer-payments-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding-top: 1rem !important;
    }

    .footer-container > .footer-payments-col .payments-flex-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.5rem 2.5rem !important;
        max-width: 600px !important;
    }

    .footer-container > p.footer-copyright-text {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem 0 0 !important;
        font-size: 0.95rem !important;
    }

    .footer-container > .footer-legal-bar {
        width: 100% !important;
        text-align: center !important;
        padding-top: 2rem !important;
        border-top: 1px solid #EEEEEE !important;
    }
}

/* ============================================================
   LOGOS DE PAGO — tamaños unificados
   ============================================================ */
.payment-logo {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.payment-logo:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* Mercado Pago PNG necesita un poco más de altura para verse proporcional */
.payment-logo--wide {
    height: 22px;
}

/* ============================================================
   NEWSLETTER SUCCESS ANIMATION
   ============================================================ */
.footer-newsletter-form {
    position: relative;
}

.footer-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    height: 48px !important;
    padding: 0 1.2rem !important;
    border: 1px solid #E0E0E0;
    border-radius: 0;
    background: #FFF;
    transition: all 0.3s ease;
}

.footer-input-group:focus-within {
    border-color: #000;
}

.footer-input-group.has-value {
    height: auto !important;
    padding: 0.5rem 1.2rem !important;
}

/* Invalid state - only when focused */
.footer-input-group.has-value:not(.is-valid):focus-within {
    border-color: #E50000 !important;
    box-shadow: 0 0 0 1px #E50000;
    border-radius: 0;
}

/* Valid state - only when focused */
.footer-input-group.has-value.is-valid:focus-within {
    border-color: #1A936F !important;
    box-shadow: 0 0 0 1px #1A936F;
    border-radius: 6px; /* Solo se redondea cuando está verde */
}

/* When not focused, revert to standard border */
.footer-input-group.has-value:not(:focus-within) {
    border-color: #E0E0E0 !important;
    box-shadow: none;
    border-radius: 0;
}

.input-text-area {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.input-floating-label {
    display: none;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.footer-input-group.has-value .input-floating-label {
    display: flex;
    animation: fadeInDown 0.2s ease forwards;
}

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

.input-floating-label span {
    font-size: 0.75rem;
    color: #888;
}

/* Toggle icons based on valid state */
.footer-input-group.has-value:not(.is-valid) #icon-success { display: none !important; }
.footer-input-group.has-value:not(.is-valid) #icon-error { display: block !important; }

.footer-input-group.has-value.is-valid #icon-error { display: none !important; }
.footer-input-group.has-value.is-valid #icon-success { display: block !important; }

#newsletter-email {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: #000;
    width: 100%;
    padding: 0;
    margin: 0;
    height: auto;
    letter-spacing: 0;
}

.footer-input-group.has-value #newsletter-email {
    text-transform: uppercase;
    margin-left: 18px; /* Aligns with text start */
    width: calc(100% - 18px);
}

.footer-input-group.has-value #newsletter-email::placeholder {
    opacity: 0;
}

#newsletter-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: transform 0.3s ease;
}

#newsletter-submit:hover {
    transform: translateX(3px);
}

#newsletter-submit:disabled {
    cursor: default;
    opacity: 0.5;
    transform: none;
}

.newsletter-success-msg {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.newsletter-success-msg.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-success-msg span {
    font-size: 0.8rem;
    color: #555;
}

/* ============================================================
   PREMIUM EDITORIAL GALLERY DESIGN
   ============================================================ */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    grid-auto-rows: 400px !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
}

.gallery-item {
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border-radius: 4px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Asymmetrical Layout */
.gallery-item:nth-child(1) { grid-column: span 7 !important; }
.gallery-item:nth-child(2) { grid-column: span 5 !important; }
.gallery-item:nth-child(3) { grid-column: span 5 !important; }
.gallery-item:nth-child(4) { grid-column: span 7 !important; }

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease !important;
    filter: brightness(0.8) contrast(1.1) !important;
}

.gallery-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.gallery-item:hover img {
    transform: scale(1.08) !important;
    filter: brightness(0.5) contrast(1.1) !important;
}

.gallery-overlay {
    position: absolute !important;
    bottom: -20px !important;
    left: 2rem !important;
    background: transparent !important;
    color: #FFF !important;
    font-size: 1.6rem !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-shadow: 0 5px 15px rgba(0,0,0,0.6) !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
    bottom: 2rem !important;
}

/* Add a subtle elegant line to the overlay */
.gallery-overlay::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: var(--color-gold) !important;
    transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s !important;
}

.gallery-item:hover .gallery-overlay::after {
    width: 100px !important;
}

@media (max-width: 900px) {
    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .gallery-item {
        height: 300px !important;
    }
    .gallery-overlay {
        opacity: 1 !important;
        bottom: 1.5rem !important;
        left: 1.5rem !important;
        font-size: 1.2rem !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
    }
    .gallery-overlay::after {
        width: 60px !important;
    }
    .gallery-item img {
        filter: brightness(0.65) !important;
    }
}

/* ============================================================
   AUTO SLIDER GALLERY DESIGN
   ============================================================ */
.gallery-slider-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
    aspect-ratio: 16/9 !important;
    background: #000 !important;
}

@media (max-width: 768px) {
    .gallery-slider-wrapper {
        aspect-ratio: 4/5 !important;
    }
}

.gallery-slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 500% !important; /* 5 images */
    height: 100% !important;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gallery-item {
    width: 20% !important; /* 1/5 of the track */
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.65) contrast(1.1) !important;
}

.gallery-overlay {
    position: absolute !important;
    bottom: 3rem !important;
    left: 3rem !important;
    color: #FFF !important;
    font-size: 2rem !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-shadow: 0 5px 15px rgba(0,0,0,0.6) !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.gallery-overlay::after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important;
    left: 0 !important;
    width: 100px !important;
    height: 3px !important;
    background-color: var(--color-gold) !important;
}

@media (max-width: 768px) {
    .gallery-overlay {
        bottom: 2rem !important;
        left: 1.5rem !important;
        font-size: 1.5rem !important;
    }
    .gallery-overlay::after {
        width: 60px !important;
    }
}

@keyframes sliderAnimation {
    0%, 20%   { transform: translateX(0); }
    25%, 45%  { transform: translateX(-25%); }
    50%, 70%  { transform: translateX(-50%); }
    75%, 95%  { transform: translateX(-75%); }
    100%      { transform: translateX(0); }
}



.gallery-slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1.5rem !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
    backdrop-filter: blur(4px) !important;
}

.gallery-slider-btn:hover {
    background: rgba(0, 0, 0, 0.7) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.prev-btn {
    left: 20px !important;
}

.next-btn {
    right: 20px !important;
}

@media (max-width: 768px) {
    .gallery-slider-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    .prev-btn {
        left: 10px !important;
    }
    .next-btn {
        right: 10px !important;
    }
}



/* ============================================================
   SERVICES AUTO SLIDER
   ============================================================ */
.services-slider-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    padding: 20px 0 !important; /* give room for shadows */
}

.services-slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 500% !important; /* 5 cards */
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.services-slider-track .service-card {
    width: calc(20% - 30px) !important; /* 20% minus margins to prevent drift */
    flex-shrink: 0 !important;
    margin: 0 15px !important;
    /* ensure height spans fully */
    display: flex !important;
    flex-direction: column !important;
    grid-column: auto !important; /* override any grid span */
    height: 450px !important;
}

.services-slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--color-gold) !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(4px) !important;
    padding: 0 !important;
    line-height: 0 !important;
}
.services-slider-btn svg {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 24px !important;
    height: 24px !important;
    position: relative !important;
    /* No nudge, absolute mathematical center */
}

.services-slider-btn:hover {
    background: var(--color-gold) !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.prev-service-btn {
    left: 15px !important;
}

.next-service-btn {
    right: 15px !important;
}

@media (max-width: 768px) {
    .services-slider-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
}

/* ============================================================
   PREMIUM MOBILE NAV REDESIGN
   ============================================================ */
@media (max-width: 768px) {
    /* Menu Background */
    .nav {
        background: rgba(8, 8, 8, 0.97) !important; backdrop-filter: blur(15px) !important;
        background-image: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 60%) !important;
        gap: 3rem !important;
    }
    
    /* Links Typography */
    .nav a {
        font-family: var(--font-body) !important;
        font-size: 1.6rem !important;
        font-weight: 300 !important;
        letter-spacing: 5px !important;
        color: #FFFFFF !important;
        text-transform: uppercase !important;
        opacity: 0.8 !important;
        transition: all 0.4s ease !important;
        position: relative !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    }



    /* Remove the old underline */
    .nav a::after {
        display: none !important;
    }

    /* Staggered entrance animation when active */
    .nav.active a {
        animation: navLinkFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .nav.active a:nth-child(1) { animation-delay: 0.1s !important; }
    .nav.active a:nth-child(2) { animation-delay: 0.2s !important; }
    .nav.active a:nth-child(3) { animation-delay: 0.3s !important; }
    .nav.active a:nth-child(4) { animation-delay: 0.4s !important; }
    .nav.active a:nth-child(5) { animation-delay: 0.5s !important; }
    .nav.active a:nth-child(6) { animation-delay: 0.6s !important; }
    .nav.active a:nth-child(7) { animation-delay: 0.7s !important; }
    .nav.active a:nth-child(8) { animation-delay: 0.8s !important; }

    /* Elegant X button */
    .mobile-menu-btn.active span {
        height: 1px !important;
        background-color: #FFF !important;
        width: 32px !important;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
}

@keyframes navLinkFadeIn {
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}








/* ============================================================
   PREMIUM VIDEO COMPONENT
   ============================================================ */
.video-container {
    width: 100% !important;
    max-width: 900px !important;
    margin: 2rem auto 4rem auto !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08) !important;
    position: relative !important;
    border: 1px solid var(--color-beige) !important;
}

.premium-video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.video-container:hover .premium-video {
    transform: scale(1.03) !important;
}

/* Service Cards Background Images - Antigravity */
.service-card.has-bg {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    border: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.service-card.has-bg::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%) !important;
    z-index: -1 !important;
    transition: var(--transition-smooth) !important;
}

.service-card.has-bg:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%) !important;
}

.service-card.has-bg .service-icon {
    color: var(--color-gold) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.service-card.has-bg h3 {
    color: var(--color-white) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6) !important;
}

.service-card.has-bg p {
    color: #DDDDDD !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
}


/* Mobile Menu Re-Design Improvements */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav.active {
        padding: 5rem 1.5rem 2rem !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        background: #1A1A1A !important;
        overflow-y: auto !important;
    }

    .mobile-search-wrapper {
        margin-bottom: 2rem;
        width: 100%;
    }

    .mobile-search-box {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 0;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .mobile-search-box svg {
        stroke: var(--color-gold);
    }

    .mobile-search-box input {
        background: transparent;
        border: none;
        color: var(--color-white);
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        width: 100%;
        outline: none;
    }

    .mobile-search-box input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .nav a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.9rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 0.95rem !important;
        letter-spacing: 0.5px !important;
        font-weight: 400 !important;
        color: var(--color-light-beige) !important;
        text-transform: none !important;
    }

    .nav a:last-child {
        border-bottom: none !important;
    }

    .nav-arrow {
        color: var(--color-gold);
        font-size: 1.1rem;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .nav {
        left: -100% !important;
        right: auto !important;
        transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    .nav.active {
        left: 0 !important;
    }
}
