:root {
    --primary-blue: #0b1f3a;
    --gold: #d4af37;
    --dark-bg: #0f172a;
    --light-bg: #f8f9fb;
    --white: #ffffff;
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
    padding-top: 90px;
}

/* ========== CONTAINER ========== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ========== SECTION SPACING ========== */
section {
    padding: 80px 0;
}

/* ========== HEADINGS ========== */
h1,
h2,
h3,
h4 {
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* ========== BUTTON ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s ease;
    border: 1px solid var(--gold);
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-primary:hover,
.cta a:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary,
.cta a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after,
.cta a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    z-index: -1;
}

.btn-primary:hover::after,
.cta a:hover::after {
    left: 120%;
    opacity: 1;
}

/* ========== GRID ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}