:root {
    --gold: #d4af37;
    --gold-light: #f0d078;
    --gold-dark: #b8962e;
    --black: #0b0b0b;
    --black-light: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-600: #6c6c6c;
    --white-smoke: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: #eaeaea;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.gold-text {
    color: var(--gold);
}

.gold-bg {
    background-color: var(--gold);
    color: #000;
}

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


.gold-glow {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}


.btn-gold {
    background-color: var(--gold);
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}


section {
    padding: 5rem 0;
    position: relative;
}

.bg-black-light {
    background-color: var(--black-light);
}


.card-premium {
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.card-premium:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.15);
}

.card-premium .icon-gold {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}


.navbar {
    background: rgba(11, 11, 11, 0.85) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.8rem 0;
}

.navbar .nav-link {
    color: #ddd !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--gold) !important;
    letter-spacing: 1px;
}

.navbar-brand i {
    margin-right: 8px;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, #1f1a0e 0%, #0b0b0b 85%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    pointer-events: none;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.15;
}

.hero .gold-line {
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
    margin: 1.5rem 0;
}


.stat-item {
    border-right: 1px solid #2a2a2a;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}


.testimonial-card {
    background: #131313;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #262626;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: var(--gold);
}

.testimonial-card .stars {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 1.2rem;
}


footer {
    background: #070707;
    border-top: 1px solid #1f1f1f;
    padding: 3rem 0 1.5rem;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--gold);
}


.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #222;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}