:root {
    --dark: #121212;
    --zinc-950: #121212;
    --zinc-900: #1C1C1C;
    --whatsapp: #1caf52;
    --whatsapp-hover: #1a974a;
    --gold-400: #F1D592;
    --gold-500: #E5C374;
    --gold-600: #C9A74E;
    --silver: #A0A0A0;
    --text-dark: #1A1A1A;
    --text-muted: #5F5F5F;
    --bg-light-gray: #F4F4F5;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

body {
    padding: 0 !important;
    margin: 0 !important;
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    opacity: 1;
}

@media (max-width: 1023px) {
    body {
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
    }

    body.loaded {
        opacity: 1;
    }
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
    display: flex;
    width: max-content;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Typography & Semantic Classes */
.nav-link {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    transition: color 0.3s ease;
    opacity: 0.8;
}

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

.hero-title {
    font-size: 2.25rem;
    /* 4xl */
    line-height: 1.05;
    margin-bottom: 2rem;
    font-family: 'Aboreto', serif;
    font-weight: 500;
    color: var(--text-dark);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        /* 5xl */
    }
}

.hero-description {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 3rem;
    max-width: 100%;
    border-left: 2px solid var(--gold-500);
    padding-left: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
        max-width: 600px;
    }
}

.section-tag {
    color: var(--gold-400);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    /* 3xl */
    font-family: 'Aboreto', serif;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        /* 4xl */
    }
}

.section-description {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 300;
}

.cta-title {
    font-size: 1.5rem;
    /* 2xl */
    font-family: 'Aboreto', serif;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
        /* 4xl */
    }
}

.footer-heading {
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.text-glow-gold {
    text-shadow: 0 0 30px rgba(229, 195, 116, 0.4);
}

.text-gold-gradient {
    background: linear-gradient(135deg, #B8860B 0%, #E5C374 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Layout Components */
.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-premium-outer {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 3px;
    transition: all 0.4s ease;
    text-decoration: none;
    width: fit-content;
}

.btn-premium-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #B8860B 0%, #E5C374 25%, #F1D592 50%, #E5C374 75%, #B8860B 100%);
    background-size: 200% auto;
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    /* py-4 px-6 on mobile */
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(107, 81, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .btn-premium-inner {
        padding: 1.25rem 3rem;
        /* py-5 px-12 on desktop */
        font-size: 11px;
    }
}

.btn-sm .btn-premium-inner {
    padding: 0.625rem 1.5rem !important;
    /* py-2.5 px-6 */
    font-size: 10px !important;
}

/* Green Modifier for Navbar */
.btn-premium-outer.green {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.1);
}

.btn-premium-outer.green .btn-premium-inner {
    background: var(--whatsapp);
    color: #000000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-premium-outer:hover .btn-premium-inner {
    background-position: right center;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
    transform: scale(1.02);
}

.btn-premium-outer.green:hover .btn-premium-inner {
    background-position: initial;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
    color: var(--whatsapp);
}

.btn-premium-inner iconify-icon {
    transition: transform 0.4s ease;
}

.btn-premium-outer:hover .btn-premium-inner iconify-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Hero Image Layering */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('bckgmobile01.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

@media (min-width: 1024px) {
    .hero-bg {
        background-image: url('bckg01 (1).webp');
    }
}

/* Service Cards */
.service-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    /* p-10 */
    border-radius: 0.125rem;
    /* rounded-sm */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    background: #FFFFFF;
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.1);
}

.service-card h3 {
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
}

.step-number {
    font-family: 'Aboreto', serif;
    font-size: 5rem;
    line-height: 1;
    opacity: 0.08;
    color: var(--gold-500);
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .step-number {
    opacity: 0.2;
    transform: scale(1.2) rotate(-5deg);
}

/* FAQ Styling */
details {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0.125rem;
    overflow: hidden;
}

details summary {
    color: var(--text-dark);
    padding: 2rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Aboreto', serif;
}

details summary::-webkit-details-marker {
    display: none;
}

details>div {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.625;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F4F4F5;
}

::-webkit-scrollbar-thumb {
    background: #DDD;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}