@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --gold-primary: #FFC700;
    --gold-secondary: #FFA100;
    --gold-muted: #CFA100;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
}

html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
}

.glass-nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-hover {
    transition: all 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary) !important;
    background: rgba(255, 199, 0, 0.03) !important;
    box-shadow: 0 20px 40px -20px rgba(255, 199, 0, 0.4) !important;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

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

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

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(8deg);
}

.hero-overlay {
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.2) 0%, var(--bg-dark) 80%);
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 1.25rem !important;
}

select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-primary);
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%) !important;
    color: black !important;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 900;
    border: none !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 199, 0, 0.7) !important;
}

@keyframes pulse-accent {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 199, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0);
    }
}

.pulse-accent {
    animation: pulse-accent 2s infinite;
}

.section-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-primary) !important;
    display: block;
    margin-bottom: 2rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Red Heading Cleanup */
h1 span,
h2 span,
h3 span {
    color: inherit;
}

.text-accent {
    color: var(--gold-primary) !important;
}

.bg-accent {
    background-color: var(--gold-primary) !important;
}

.border-accent {
    border-color: var(--gold-primary) !important;
}

/* ═══════════════════════════════════════ */
/* Premium SVG Section Dividers           */
/* ═══════════════════════════════════════ */
.divider-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.divider-wave svg {
    display: block;
    width: 100%;
    height: auto;
}
.divider-wave.flip {
    transform: rotate(180deg);
}
.divider-slant {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.divider-slant svg {
    display: block;
    width: 100%;
    height: auto;
}
.divider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 2rem 0;
}
.divider-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-primary);
    opacity: 0.3;
}
.divider-dots span:nth-child(2) {
    width: 6px;
    height: 6px;
    opacity: 0.6;
}
.divider-dots span:nth-child(3) {
    width: 8px;
    height: 8px;
    opacity: 1;
}
.divider-dots span:nth-child(4) {
    width: 6px;
    height: 6px;
    opacity: 0.6;
}
.divider-dots span:nth-child(5) {
    width: 4px;
    height: 4px;
    opacity: 0.3;
}
.divider-line {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 2rem;
    max-width: 200px;
    margin: 0 auto;
}
.divider-line::before,
.divider-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,199,0,0.3), transparent);
}
.divider-line .diamond {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    opacity: 0.5;
    flex-shrink: 0;
}