/* ========== PREMIUM LUXURY DESIGN ========== */
:root {
    --primary: #D4AF37; /* Gold */
    --secondary: #B8960C;
    --dark: #000000;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --border: #EAEAEA;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    user-select: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

p { margin-bottom: 1.2rem; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

@media (min-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
}

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .split-layout { display: flex; align-items: center; gap: 50px; }
    .split-layout > div { flex: 1; }
}
@media (min-width: 992px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.cta-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
    border: none;
    cursor: pointer;
    min-height: 52px;
    line-height: 52px;
    padding: 0 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-btn:hover { background-color: var(--dark); transform: scale(1.05); }
.full-btn { width: 100%; display: block; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease;
    padding: 20px 0;
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 2px; }
.nav-links { display: none; }
.hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { display: block; width: 30px; height: 2px; background: var(--dark); transition: 0.3s; }

.mobile-menu {
    position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
    background: var(--white);
    display: flex; flex-direction: column; padding: 40px 20px; gap: 20px;
    transition: left 0.3s ease; z-index: 999;
}
.mobile-menu.active { left: 0; }
.mobile-menu a { font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

@media (min-width: 768px) {
    .hamburger { display: none; }
    .nav-links { display: flex; gap: 40px; }
    .nav-links a { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
    .nav-links a:hover { color: var(--primary); }
}

/* Cards */
.card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: var(--primary); }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.accordion-header {
    width: 100%; padding: 20px 0; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
    cursor: pointer; text-align: left;
}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.active .accordion-content { padding-bottom: 20px; }

/* Pricing */
.timer-box { font-size: 40px; font-weight: 700; color: var(--primary); text-align: center; margin-bottom: 30px; font-family: 'Montserrat', sans-serif; }
.price-card { border: 1px solid var(--border); padding: 40px 20px; text-align: center; position: relative; background: var(--white); }
.price-card.popular { border: 2px solid var(--primary); transform: scale(1.05); z-index: 1; }
.price-label { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--dark); color: var(--primary); padding: 5px 20px; font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.price-large { font-size: 50px; font-weight: 700; color: var(--dark); margin: 20px 0; line-height: 1; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 30px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.footer-links a { color: var(--text-light); transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }

/* Popups */
.scroll-top { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background: var(--dark); color: var(--white); border: none; font-size: 20px; cursor: pointer; opacity: 0; pointer-events: none; transition: 0.3s; z-index: 100; }
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--primary); }

.purchase-popup { position: fixed; bottom: 20px; left: 20px; background: var(--white); padding: 15px 20px; border: 1px solid var(--border); border-left: 4px solid var(--primary); box-shadow: var(--shadow); display: flex; align-items: center; gap: 15px; transform: translateY(150%); transition: transform 0.5s ease; z-index: 999; }
.purchase-popup.show { transform: translateY(0); }

.exit-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: 0.3s; padding: 20px; }
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-popup { background: var(--white); max-width: 500px; width: 100%; padding: 40px; text-align: center; position: relative; }
.exit-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; }
/* =============== Pricing Cards Container =============== */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

/* =============== Individual Pricing Item =============== */
.pricing-item {
    flex: 1;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-10px);
}

/* Image Styling */
.pricing-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-container {
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .pricing-item {
        max-width: 100%;
    }
}
