/* Custom Styles */
body {
    background-color: #F7F3EF;
    color: #2F2F2F;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 60px 0;
}

.gold-divider::before,
.gold-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #C7A97B;
    opacity: 0.4;
}

.gold-dot {
    width: 6px;
    height: 6px;
    background-color: #C7A97B;
    border-radius: 50%;
    margin: 0 20px;
}

.btn-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(143, 175, 154, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(95, 125, 110, 0.4);
    background-color: #5F7D6E !important;
    color: white !important;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #8FAF9A;
    border-radius: 10px;
    border: 2px solid #F7F3EF;
}

::-webkit-scrollbar-thumb:hover {
    background: #5F7D6E;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #8FAF9A #F7F3EF;
}

.fade-in-section {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}

.stagger-1 { animation-delay: 0.2s; }
.stagger-2 { animation-delay: 0.4s; }
.stagger-3 { animation-delay: 0.6s; }
.stagger-4 { animation-delay: 0.8s; }
.stagger-5 { animation-delay: 1.0s; }
