/* ======================================
   TAROT DE ADRY — Styles
   Golden Mystical Theme
   ====================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold-100: #fff8e7;
    --gold-200: #f9e4a0;
    --gold-300: #f0c040;
    --gold-400: #d4a017;
    --gold-500: #b8860b;
    --gold-600: #9a6f00;
    --dark-900: #0a0608;
    --dark-800: #12090e;
    --dark-700: #1c0f19;
    --dark-600: #271525;
    --dark-500: #33203a;
    --purple-400: #6b21a8;
    --purple-300: #9333ea;
    --text-light: #f5f0eb;
    --text-muted: #c8b89a;
    --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.35);
    --shadow-deep: 0 8px 40px rgba(0, 0, 0, 0.6);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--dark-900);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== PARTICLES ===== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-300);
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-400);
    border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 6, 8, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 40px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.brand-icon {
    font-size: 1.4rem;
    color: var(--gold-300);
    animation: pulseStar 2.5s ease-in-out infinite;
}

@keyframes pulseStar {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 0.8;
    }
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-300);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--gold-300);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--dark-900);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(212, 160, 23, 0.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-300);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-800);
    border-right: 1px solid rgba(212, 160, 23, 0.2);
    z-index: 999;
    padding: 100px 40px 40px;
    transition: left var(--transition);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li+li {
    margin-top: 24px;
}

.mobile-menu ul a {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-menu ul a:hover {
    color: var(--gold-300);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(107, 33, 168, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(212, 160, 23, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 70%, rgba(212, 160, 23, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 20%, rgba(212, 160, 23, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(212, 160, 23, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 160, 23, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, var(--dark-900) 90%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(212, 160, 23, 0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 24px;
    background: rgba(212, 160, 23, 0.08);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 12px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--gold-300);
    letter-spacing: 4px;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-description strong {
    color: var(--gold-300);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300), var(--gold-400));
    background-size: 200% auto;
    color: var(--dark-900);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(212, 160, 23, 0.8);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--gold-300);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(212, 160, 23, 0.5);
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold-300);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-300);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    color: var(--gold-400);
    opacity: 0.5;
    font-size: 1.2rem;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    z-index: 2;
}

.tarot-card-anim {
    width: 200px;
    height: 320px;
    perspective: 1000px;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

.tarot-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--dark-600), var(--dark-700));
    border: 2px solid rgba(212, 160, 23, 0.6);
    box-shadow: 0 0 60px rgba(212, 160, 23, 0.3), inset 0 0 40px rgba(212, 160, 23, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.tarot-card-inner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
}

.tarot-card-inner::after {
    content: '★ ✦ ★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: rgba(212, 160, 23, 0.3);
}

.card-symbol {
    font-size: 4rem;
    color: var(--gold-300);
    animation: glowPulse 3s ease-in-out infinite;
}

.card-symbol-bottom {
    font-size: 2rem;
    color: var(--gold-400);
    opacity: 0.6;
}

@keyframes glowPulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
    }

    50% {
        text-shadow: 0 0 50px rgba(212, 160, 23, 1), 0 0 80px rgba(212, 160, 23, 0.5);
    }
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.15);
    animation: spinOrbit linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 530px;
    height: 530px;
    animation-duration: 45s;
    border-color: rgba(107, 33, 168, 0.1);
}

@keyframes spinOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
    font-size: 1.2rem;
    color: var(--gold-300);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ===== ABOUT STRIP ===== */
.about-strip {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    padding: 28px 40px;
}

.about-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-strip-item i {
    color: var(--gold-300);
    font-size: 1rem;
}

.about-strip-divider {
    color: var(--gold-400);
    opacity: 0.4;
    font-size: 0.8rem;
}

/* ===== SECTION SHARED ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-light), var(--gold-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(145deg, rgba(39, 21, 37, 0.8), rgba(18, 9, 14, 0.9));
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 160, 23, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 160, 23, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.feature-card {
    grid-column: span 1;
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.15), rgba(39, 21, 37, 0.9));
    border-color: rgba(212, 160, 23, 0.3);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-300);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.3), rgba(212, 160, 23, 0.1));
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-200);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--dark-900);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.6);
}

/* ===== CTA BAND ===== */
.cta-band {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    overflow: hidden;
}

.cta-band::before {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(212, 160, 23, 0.05);
    font-family: serif;
}

.cta-band::after {
    content: '✦';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(212, 160, 23, 0.05);
    font-family: serif;
}

.cta-band-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold-200);
    margin-bottom: 8px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== SHOP ===== */
.shop {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    position: relative;
    z-index: 1;
}

.shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 160, 23, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 160, 23, 0.15);
}

.product-card:hover::after {
    opacity: 1;
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dark-600);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-info {
    padding: 18px 16px;
}

.product-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-200);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: transparent;
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold-300);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
    width: 100%;
    justify-content: center;
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--dark-900);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
    position: relative;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.contact-card {
    text-align: center;
    background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 160, 23, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-300);
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.contact-card:hover .contact-icon {
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.4);
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.3), rgba(212, 160, 23, 0.1));
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold-200);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    word-break: break-word;
}

.contact-link {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-300);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
    padding-bottom: 2px;
    transition: all var(--transition);
}

.contact-link:hover {
    color: var(--gold-200);
    border-color: var(--gold-200);
}

/* ===== SOCIAL ===== */
.social-section {
    text-align: center;
}

.social-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.social-link.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(24, 119, 242, 0.05));
    border-color: rgba(24, 119, 242, 0.3);
    color: #5b9cf6;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.2);
}

.social-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(255, 220, 128, 0.05));
    border-color: rgba(225, 48, 108, 0.3);
    color: #f472b6;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.25), rgba(255, 220, 128, 0.1));
    border-color: rgba(225, 48, 108, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-900);
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold-300);
    margin-bottom: 12px;
}

.footer-brand .brand-icon {
    font-size: 1.2rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(200, 184, 154, 0.5);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.footer-social a:hover {
    border-color: var(--gold-300);
    color: var(--gold-300);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.3);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
    transition: all var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 50px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.12);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(10, 6, 8, 0.9);
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(212, 160, 23, 0.3);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ANIMATIONS - Fade in on Scroll ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 120px 40px 80px;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.feature-card {
        grid-column: span 2;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 24px 60px;
    }

    .navbar {
        padding: 16px 24px;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.feature-card {
        grid-column: span 1;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-strip-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .about-strip-divider {
        display: none;
    }
}