/*
Theme Name: Arte Chronos
Theme URI: https://artechronos.com
Description: Tema de Lujo Personalizado para Arte Chronos - Tasación y Compra de Alta Relojería y Antigüedades.
Author: Arte Chronos Engineering
Template: astra
Version: 3.0.0
*/

/* ==========================================================================
   DESIGN TOKENS — PALETA DORADA DE ULTRA-LUJO
   ========================================================================== */
:root {
    --ac-gold:          #c5a880;
    --ac-gold-dark:     #a8885c;
    --ac-gold-light:    #dfcaa7;
    --ac-gold-bright:   #f7e7ce;
    --ac-gold-glow:     rgba(197, 168, 128, 0.28);
    --ac-gold-glow-sm:  rgba(197, 168, 128, 0.12);
    --ac-bg-dark:       #080a0b;
    --ac-bg-surface:    #0f1214;
    --ac-bg-card:       #141719;
    --ac-bg-elevated:   #1a1e22;
    --ac-text-primary:  #f0ede8;
    --ac-text-secondary:#c8cdd5;
    --ac-text-muted:    #8e9399;
    --ac-text-faint:    #5c6169;
    --ac-border:        rgba(197, 168, 128, 0.20);
    --ac-border-hover:  rgba(197, 168, 128, 0.55);
    --ac-border-subtle: rgba(255, 255, 255, 0.06);
    --ac-green-wa:      #25d366;
    --ac-green-wa-dark: #1da851;
    --ac-shadow-gold:   0 0 40px rgba(197, 168, 128, 0.15);
    --ac-shadow-deep:   0 24px 70px rgba(0, 0, 0, 0.8);
    --ac-radius:        10px;
    --ac-radius-lg:     16px;
    --ac-radius-xl:     24px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--ac-bg-dark) !important;
    color: var(--ac-text-primary) !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, .ac-serif {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ac-text-primary);
    line-height: 1.18;
}

p { line-height: 1.72; }

a {
    color: var(--ac-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--ac-gold-light); }

strong { color: var(--ac-text-primary); font-weight: 600; }

/* ==========================================================================
   HEADER & NAV — Astra Override
   ========================================================================== */
.site-header,
#masthead,
.ast-desktop-header,
.main-header-bar {
    background: rgba(8, 10, 11, 0.90) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid var(--ac-border) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(197,168,128,0.08) inset !important;
    transition: background 0.4s ease !important;
}

.main-header-bar-wrap { padding: 0 !important; }

.ast-builder-menu-1 .menu-item > .menu-link,
.main-header-menu .menu-item > a {
    color: var(--ac-text-muted) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    transition: color 0.25s ease !important;
    position: relative !important;
}

.ast-builder-menu-1 .menu-item > .menu-link::after,
.main-header-menu .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ac-gold);
    transition: width 0.3s ease;
}

.ast-builder-menu-1 .menu-item > .menu-link:hover::after,
.main-header-menu .menu-item > a:hover::after {
    width: 100%;
}

.ast-builder-menu-1 .menu-item > .menu-link:hover,
.main-header-menu .menu-item > a:hover {
    color: var(--ac-gold-light) !important;
}

/* ==========================================================================
   LUXURY PAGE WRAPPER
   ========================================================================== */
.ac-luxury-page {
    position: relative;
}

/* ==========================================================================
   HERO SECTION — FULL PARALLAX CON IMAGEN REAL
   ========================================================================== */
.ac-parallax-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/images/hero-watch.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    overflow: hidden;
}

.ac-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 8, 9, 0.68) 0%,
        rgba(6, 8, 9, 0.52) 30%,
        rgba(6, 8, 9, 0.80) 70%,
        rgba(6, 8, 9, 0.99) 100%
    );
    z-index: 0;
}

/* Subtle golden ambient glow on hero */
.ac-parallax-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(197,168,128,0.06) 0%, transparent 70%);
    z-index: 1;
}

/* Noise texture overlay for luxury depth */
.ac-parallax-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

.ac-hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.ac-hero-inner {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Rotating Horological Watermark */
.ac-hero-horological-watermark {
    position: absolute;
    right: -8%;
    top: 8%;
    width: min(600px, 48vw);
    height: min(600px, 48vw);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    animation: acSpinWheel 200s linear infinite;
    transform-origin: center center;
    filter: drop-shadow(0 0 30px rgba(197,168,128,0.25));
}

/* Trust Stats Bar */
.ac-trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--ac-radius-lg);
    background: rgba(8, 10, 11, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    margin-top: 48px;
}

.ac-trust-stat {
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
}
.ac-trust-stat:last-child { border-right: none; }
.ac-trust-stat:hover { background: rgba(197,168,128,0.06); }

.ac-trust-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--ac-gold-light);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.ac-trust-stat-label {
    color: var(--ac-text-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ==========================================================================
   BUTTONS — GOLD & WHATSAPP (FULLY DEFINED)
   ========================================================================== */
.ac-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d4b88e 0%, #b8935c 40%, #d4b88e 80%, #f0d9b0 100%);
    background-size: 200% auto;
    color: #0a0c0d !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-position 0.5s ease, box-shadow 0.3s ease, transform 0.2s var(--transition-bounce);
    box-shadow: 0 4px 24px rgba(197, 168, 128, 0.40), 0 1px 0 rgba(255,255,255,0.25) inset;
}

.ac-btn-gold:hover {
    background-position: right center;
    box-shadow: 0 8px 36px rgba(197, 168, 128, 0.60), 0 1px 0 rgba(255,255,255,0.25) inset;
    transform: translateY(-3px);
    color: #0a0c0d !important;
}

.ac-btn-gold:active { transform: translateY(0); }

/* Shimmer sweep on gold button */
.ac-btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255,255,255,0) 20%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0) 80%
    );
    animation: acSheenSweep 6s var(--transition-smooth) infinite;
    pointer-events: none;
}

.ac-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1fb856);
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.25s ease, box-shadow 0.3s ease, transform 0.2s var(--transition-bounce);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.ac-btn-wa:hover {
    background: linear-gradient(135deg, #1fb856, #18a048);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
    transform: translateY(-3px);
    color: #ffffff !important;
}

/* ==========================================================================
   SECTION TITLES — SHARED UTILITY
   ========================================================================== */
.ac-section-overline {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ac-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.ac-section-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    color: var(--ac-text-primary);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.15;
}

/* ==========================================================================
   ORNAMENTAL DIVIDER
   ========================================================================== */
.ac-ornament {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px auto 0;
    max-width: 160px;
}

.ac-ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,168,128,0.5), transparent);
}

.ac-ornament-diamond {
    color: var(--ac-gold);
    font-size: 0.55rem;
    opacity: 0.7;
}

/* ==========================================================================
   TRUST PILLARS SECTION
   ========================================================================== */
.ac-pillar-card {
    background: linear-gradient(145deg, #15181c, #111417);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 32px 26px;
    transition: transform 0.4s var(--transition-smooth),
                border-color 0.35s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ac-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197,168,128,0.35), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ac-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,168,128,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(197,168,128,0.08);
}

.ac-pillar-card:hover::before {
    opacity: 1;
}

.ac-pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(197,168,128,0.14), rgba(197,168,128,0.04));
    border: 1px solid rgba(197,168,128,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ac-pillar-card:hover .ac-pillar-icon {
    background: linear-gradient(145deg, rgba(197,168,128,0.25), rgba(197,168,128,0.08));
    border-color: rgba(197,168,128,0.45);
    box-shadow: 0 0 20px rgba(197,168,128,0.15);
}

/* ==========================================================================
   PARALLAX BANNER MID-PAGE
   ========================================================================== */
.ac-parallax-banner {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/movement-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.ac-parallax-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,10,11,0.92) 0%, rgba(8,10,11,0.75) 50%, rgba(8,10,11,0.92) 100%);
    z-index: 0;
}

/* Golden ambient glow on mid-banner */
.ac-parallax-banner-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(197,168,128,0.08) 0%, transparent 65%);
}

.ac-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 32px;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   LUXURY CARDS — GALERÍA DE PIEZAS
   ========================================================================== */
.ac-luxury-card {
    background: var(--ac-bg-card);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s var(--transition-smooth),
                border-color 0.35s ease,
                box-shadow 0.45s ease;
    will-change: transform;
    position: relative;
}

/* Bottom glow line */
.ac-luxury-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,168,128,0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ac-luxury-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197,168,128,0.40);
    box-shadow: 0 24px 60px rgba(0,0,0,0.75), 0 0 30px rgba(197,168,128,0.10);
}

.ac-luxury-card:hover::after {
    opacity: 1;
}

.ac-card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 265px;
    background: #0a0d10;
}

.ac-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.75s var(--transition-smooth), filter 0.6s ease;
    filter: brightness(0.92) saturate(0.9);
}

.ac-luxury-card:hover .ac-card-image-wrap img {
    transform: scale(1.09);
    filter: brightness(1.02) saturate(1.05);
}

/* Light reflection sweep on hover */
.ac-card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        60deg,
        rgba(255,255,255,0) 30%,
        rgba(255,255,255,0.14) 50%,
        rgba(255,255,255,0) 70%
    );
    opacity: 0;
    transform: translateX(-60%) rotate(25deg);
    transition: opacity 0.3s ease, transform 0.8s ease;
    pointer-events: none;
}

.ac-luxury-card:hover .ac-card-image-wrap::after {
    opacity: 1;
    transform: translateX(60%) rotate(25deg);
}

/* Gradient overlay at bottom of image */
.ac-card-image-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(20,23,25,0.9) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.ac-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(8, 10, 11, 0.90);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.42);
    color: var(--ac-gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 5px 13px;
    border-radius: 20px;
}

.ac-card-body {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ac-card-overline {
    font-size: 0.72rem;
    color: var(--ac-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    font-weight: 600;
}

.ac-card-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.6rem;
    color: var(--ac-text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.ac-card-desc {
    color: var(--ac-text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.ac-card-link {
    color: var(--ac-gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.ac-card-link:hover {
    gap: 12px;
    color: var(--ac-gold-bright);
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.ac-process-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    position: relative;
}

.ac-process-wrap::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,168,128,0.3), rgba(197,168,128,0.3), transparent);
    pointer-events: none;
}

.ac-step-card {
    background: linear-gradient(160deg, #181c21, #131619);
    border: 1px solid rgba(197,168,128,0.16);
    border-radius: var(--ac-radius-lg);
    padding: 38px 30px;
    margin: 12px;
    transition: transform 0.4s var(--transition-smooth), border-color 0.3s ease, box-shadow 0.4s ease;
    position: relative;
}

.ac-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,168,128,0.38);
    box-shadow: 0 16px 45px rgba(197,168,128,0.07), 0 20px 50px rgba(0,0,0,0.55);
}

.ac-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a880, #a8885c);
    color: #0a0c0d;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(197,168,128,0.35);
}

/* ==========================================================================
   GUIDE CARDS — VALUE FACTORS
   ========================================================================== */
.ac-guide-card {
    background: linear-gradient(145deg, #13161a, #0f1215);
    border-left: 3px solid var(--ac-gold);
    border-top: 1px solid rgba(197,168,128,0.12);
    border-right: 1px solid rgba(197,168,128,0.08);
    border-bottom: 1px solid rgba(197,168,128,0.08);
    border-radius: 0 var(--ac-radius) var(--ac-radius) 0;
    padding: 26px 24px;
    transition: border-left-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s var(--transition-smooth);
}

.ac-guide-card:hover {
    border-left-color: var(--ac-gold-bright);
    box-shadow: -4px 0 20px rgba(197,168,128,0.12), 0 10px 30px rgba(0,0,0,0.4);
    transform: translateX(4px);
}

/* ==========================================================================
   FAQs — ANIMATED DETAILS/SUMMARY
   ========================================================================== */
.ac-faq-item {
    background: linear-gradient(145deg, #111417, #0e1113);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ac-faq-item:hover,
.ac-faq-item[open] {
    border-color: var(--ac-border);
}

.ac-faq-item[open] {
    box-shadow: 0 8px 30px rgba(197,168,128,0.06);
}

.ac-faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
    transition: background 0.25s ease;
}

.ac-faq-summary::-webkit-details-marker { display: none; }

.ac-faq-summary:hover {
    background: rgba(197,168,128,0.035);
}

.ac-faq-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.28rem;
    color: var(--ac-text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.ac-faq-chevron {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(197,168,128,0.08);
    border: 1px solid var(--ac-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--transition-smooth), background 0.25s ease, border-color 0.25s ease;
    color: var(--ac-gold);
}

.ac-faq-item[open] .ac-faq-chevron {
    transform: rotate(180deg);
    background: rgba(197,168,128,0.16);
    border-color: rgba(197,168,128,0.35);
}

.ac-faq-answer {
    padding: 0 26px 24px;
    color: var(--ac-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    border-top: 1px solid var(--ac-border-subtle);
    padding-top: 18px;
}

/* ==========================================================================
   FORM — VALUATION WIDGET
   ========================================================================== */
.ac-form-card {
    background: linear-gradient(145deg, #111417, #0e1113);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-xl);
    padding: 44px 40px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(197,168,128,0.06);
}

.ac-form-input,
.ac-form-select {
    width: 100%;
    background: #191d22;
    color: var(--ac-text-primary);
    border: 1px solid rgba(197,168,128,0.22);
    border-radius: 6px;
    padding: 13px 16px;
    font-size: 0.93rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.ac-form-input:focus,
.ac-form-select:focus {
    border-color: var(--ac-gold);
    background: #1d2228;
    box-shadow: 0 0 0 3px rgba(197,168,128,0.10);
}

.ac-form-label {
    display: block;
    font-size: 0.76rem;
    color: var(--ac-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 9px;
}

/* ==========================================================================
   INTERACTIVE CHIPS
   ========================================================================== */
.ac-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ac-chip-btn {
    background: rgba(20,24,28,0.8);
    border: 1px solid rgba(197,168,128,0.22);
    color: var(--ac-gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 9px 18px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.22s var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.ac-chip-btn:hover,
.ac-chip-btn.active {
    background: var(--ac-gold);
    color: #0a0c0d;
    border-color: var(--ac-gold);
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197,168,128,0.40);
}

/* ==========================================================================
   MARQUEE TICKER
   ========================================================================== */
.ac-marquee-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #040506, #060708);
    border-top: 1px solid rgba(197,168,128,0.18);
    border-bottom: 1px solid rgba(197,168,128,0.18);
    padding: 14px 0;
    position: relative;
    white-space: nowrap;
    display: flex;
}

/* Fade edges */
.ac-marquee-container::before,
.ac-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.ac-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, #040506, transparent);
}
.ac-marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, #040506, transparent);
}

.ac-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: acMarquee 40s linear infinite;
    will-change: transform;
}

.ac-marquee-container:hover .ac-marquee-content {
    animation-play-state: paused;
}

.ac-marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--ac-gold-light);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.ac-marquee-item:hover {
    opacity: 1;
    color: var(--ac-gold-bright);
}

.ac-marquee-sep {
    color: var(--ac-gold);
    font-size: 0.7rem;
    opacity: 0.45;
}

/* ==========================================================================
   FOOTER CUSTOM
   ========================================================================== */
.ac-footer {
    background: #050607;
    border-top: 1px solid rgba(197,168,128,0.18);
    padding: 70px 28px 0;
}

.ac-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.ac-footer-logo { margin-bottom: 18px; display: block; }

.ac-footer-desc {
    color: var(--ac-text-muted);
    font-size: 0.88rem;
    line-height: 1.72;
    max-width: 340px;
    margin-bottom: 24px;
}

.ac-footer-social { display: flex; gap: 12px; }

.ac-footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ac-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-text-muted) !important;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.ac-footer-social-link:hover {
    border-color: var(--ac-gold);
    color: var(--ac-gold) !important;
    background: rgba(197,168,128,0.08);
}

.ac-footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--ac-text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.ac-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ac-footer-links li a {
    color: var(--ac-text-muted) !important;
    font-size: 0.86rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.ac-footer-links li a:hover {
    color: var(--ac-gold-light) !important;
    padding-left: 6px;
}

.ac-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--ac-text-muted);
    font-size: 0.86rem;
}

.ac-footer-contact-icon {
    color: var(--ac-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.ac-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ac-footer-copy { color: var(--ac-text-faint); font-size: 0.78rem; }

.ac-footer-legal { display: flex; gap: 20px; }

.ac-footer-legal a {
    color: var(--ac-text-faint) !important;
    font-size: 0.78rem;
    transition: color 0.25s ease;
}
.ac-footer-legal a:hover { color: var(--ac-gold-light) !important; }

/* Hide default Astra footer */
.site-below-footer-wrap,
.footer-widget-area,
.ast-small-footer {
    display: none !important;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.ac-wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1db954);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.4);
    text-decoration: none !important;
    transition: transform 0.3s var(--transition-bounce), box-shadow 0.3s ease;
    animation: acWaFloat 4.5s ease-in-out infinite;
}

.ac-wa-float:hover {
    transform: scale(1.14) translateY(-4px);
    box-shadow: 0 12px 38px rgba(37,211,102,0.70), 0 4px 14px rgba(0,0,0,0.45);
    color: #ffffff !important;
    animation-play-state: paused;
}

.ac-wa-float-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.45);
    animation: acWaPulse 2.8s ease-out infinite;
}

@keyframes acWaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes acWaPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   LIVE CONCIERGE TOAST
   ========================================================================== */
.ac-live-toast {
    position: fixed;
    bottom: 110px;
    left: 28px;
    z-index: 9990;
    background: rgba(10, 13, 15, 0.97);
    border: 1px solid var(--ac-border);
    border-radius: var(--ac-radius-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.80), 0 0 0 1px rgba(197,168,128,0.05);
    backdrop-filter: blur(20px);
    max-width: 340px;
    transform: translateX(-130%);
    opacity: 0;
    transition: transform 0.65s var(--transition-smooth), opacity 0.5s ease;
    pointer-events: none;
}

.ac-live-toast.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.ac-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(197,168,128,0.10);
    border: 1px solid var(--ac-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.ac-toast-content {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--ac-text-secondary);
}

.ac-toast-title {
    font-weight: 700;
    color: var(--ac-gold-light);
    margin-bottom: 2px;
    font-size: 0.83rem;
}

.ac-toast-time { color: var(--ac-text-faint); font-size: 0.72rem; }

/* ==========================================================================
   STATUS PILL & RADAR DOT
   ========================================================================== */
.ac-hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10,13,15,0.80);
    border: 1px solid rgba(197,168,128,0.28);
    backdrop-filter: blur(14px);
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ac-gold-light);
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    animation: acFloatSubtle 6s ease-in-out infinite;
}

.ac-radar-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: var(--ac-green-wa);
    border-radius: 50%;
    flex-shrink: 0;
}

.ac-radar-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(37,211,102,0.35);
    animation: acRadarPulse 2.2s cubic-bezier(0,0.2,0.8,1) infinite;
}

/* ==========================================================================
   GOLD GRADIENT TEXT
   ========================================================================== */
.ac-gold-gradient-text {
    background: linear-gradient(135deg, #f0d9b5 0%, #c5a880 35%, #f7e7ce 65%, #b8956a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    animation: acGoldShimmer 6s linear infinite;
}

@keyframes acGoldShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ==========================================================================
   DIVIDER LINE — ORNAMENTAL
   ========================================================================== */
.ac-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 auto 48px;
    max-width: 200px;
}

.ac-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ac-gold), transparent);
}

.ac-divider-diamond {
    color: var(--ac-gold);
    font-size: 0.65rem;
    opacity: 0.8;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.ac-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.85s var(--transition-smooth),
                transform 0.85s var(--transition-smooth);
    will-change: opacity, transform;
}

.ac-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ac-reveal-delay-1 { transition-delay: 0.10s; }
.ac-reveal-delay-2 { transition-delay: 0.20s; }
.ac-reveal-delay-3 { transition-delay: 0.30s; }
.ac-reveal-delay-4 { transition-delay: 0.40s; }

/* Hero elements — always visible, no animation needed above the fold */
.ac-parallax-hero .ac-hero-status-pill,
.ac-parallax-hero h1,
.ac-parallax-hero .ac-hero-lead,
.ac-parallax-hero .ac-hero-ctas,
.ac-parallax-hero .ac-hero-stats-bar {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}


/* Reveal from left */
.ac-reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.9s var(--transition-smooth),
                transform 0.9s var(--transition-smooth);
}
.ac-reveal-left.is-visible { opacity: 1; transform: translateX(0); }

/* Reveal from right */
.ac-reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.9s var(--transition-smooth),
                transform 0.9s var(--transition-smooth);
}
.ac-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* Scale reveal */
.ac-reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.8s var(--transition-smooth),
                transform 0.8s var(--transition-smooth);
}
.ac-reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes acSpinWheel {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes acSheenSweep {
    0%   { transform: translateX(-100%) rotate(25deg); opacity: 0; }
    50%  { opacity: 0.35; }
    100% { transform: translateX(200%) rotate(25deg); opacity: 0; }
}

@keyframes acGoldPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(197,168,128,0.20); border-color: rgba(197,168,128,0.26); }
    50%      { box-shadow: 0 0 36px rgba(197,168,128,0.55); border-color: rgba(197,168,128,0.65); }
}

@keyframes acMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes acFloatSubtle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

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

/* ==========================================================================
   CLOSING CTA SECTION — GLOW EFFECT
   ========================================================================== */
.ac-closing-cta {
    position: relative;
    overflow: hidden;
}

.ac-closing-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(197,168,128,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================================================
   HERO STATS INLINE (replaces inline styles)
   ========================================================================== */
.ac-hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--ac-radius-lg);
    background: rgba(8, 10, 11, 0.50);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    margin-top: 50px;
    text-align: center;
}

.ac-hero-stat {
    padding: 26px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
}

.ac-hero-stat:last-child { border-right: none; }
.ac-hero-stat:hover { background: rgba(197,168,128,0.06); }

.ac-hero-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--ac-gold-light);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.ac-hero-stat-label {
    color: var(--ac-text-muted);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ==========================================================================
   RESPONSIVE — MOBILE FIRST
   ========================================================================== */
@media (max-width: 768px) {
    .ac-parallax-hero,
    .ac-parallax-banner {
        background-attachment: scroll;
    }

    .ac-hero-content {
        padding: 110px 20px 80px;
    }

    .ac-trust-stats {
        grid-template-columns: 1fr 1fr;
    }

    .ac-trust-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .ac-trust-stat:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }

    .ac-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ac-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ac-form-card {
        padding: 28px 20px;
    }

    .ac-wa-float {
        bottom: 22px;
        right: 22px;
        width: 54px;
        height: 54px;
    }

    .ac-live-toast {
        bottom: 90px;
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
    }

    .ac-hero-stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .ac-hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .ac-hero-stat:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.07);
    }
}

@media (max-width: 480px) {
    .ac-trust-stats,
    .ac-hero-stats-bar {
        grid-template-columns: 1fr;
    }

    .ac-trust-stat,
    .ac-hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .ac-btn-gold,
    .ac-btn-wa {
        width: 100%;
        justify-content: center;
    }

    .ac-process-wrap::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .ac-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ac-footer-logo-col {
        grid-column: 1 / -1;
    }
}
