:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --text-main: #111111;
    --text-muted: #666666;
    --accent: #B8860B; /* Rich Gold */
    --accent-hover: #996515;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-primary);
    line-height: 1.6;
}
body.bg-light { background-color: var(--bg-secondary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--text-main); }

.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: transparent; transition: all 0.3s ease; padding: 20px 0;
}
.navbar.scrolled, .navbar.navbar-solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-main); text-decoration: none; }
.navbar.scrolled .logo { color: var(--text-main); }
.navbar nav a { margin-left: 30px; text-decoration: none; color: #fff; font-weight: 500; transition: color 0.3s; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.navbar.scrolled nav a, .navbar.navbar-solid nav a { color: var(--text-main); text-shadow: none; }
.navbar nav a:hover, .navbar.scrolled nav a:hover { color: var(--accent); }

.hero { height: 100vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; text-align: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 4.5rem; margin-bottom: 20px; line-height: 1.1; color: #fff; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.hero p { font-size: 1.25rem; margin-bottom: 40px; font-weight: 300; color: #f8f9fa; }

.btn-primary {
    display: inline-block; background: var(--text-main); color: #fff;
    padding: 15px 35px; text-decoration: none; border-radius: 4px;
    font-weight: 600; letter-spacing: 1px; transition: all 0.3s ease; border: 1px solid var(--text-main); cursor: pointer;
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2); }
.btn-outline {
    display: inline-block; border: 1px solid var(--text-main); color: var(--text-main);
    padding: 10px 25px; text-decoration: none; border-radius: 4px; font-weight: 600;
    transition: all 0.3s; background: transparent; cursor: pointer;
}
.btn-outline:hover { background-color: var(--text-main); color: #fff; }

.about { padding: 120px 0; }
.about-container { display: flex; align-items: center; gap: 60px; }
.about-image { flex: 1; position: relative; }
.about-image::before { content: ''; position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 1px solid var(--accent); z-index: 0; opacity: 0.5; }
.about-image img { width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 1; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 30px; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); }

.philosophy { padding: 100px 0; }
.text-center { text-align: center; }
.philosophy-text-body { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: var(--text-muted); line-height: 1.8; }

.testimonial { padding: 80px 0; background: var(--bg-secondary); overflow: hidden; }
.testimonial-card { width: 800px; max-width: 90vw; flex-shrink: 0; margin: 0; text-align: center; padding: 60px; background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); border-top: 3px solid var(--accent); display: flex; flex-direction: column; justify-content: center; }
.testimonial-card .stars { color: var(--accent); font-size: 1.5rem; letter-spacing: 4px; margin-bottom: 20px; }
.quote { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--text-main); margin-bottom: 20px; line-height: 1.5; flex-grow: 1; }
.author { font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; }

.scrolling-wrapper { width: 100%; overflow-x: auto; scroll-behavior: smooth; position: relative; padding: 2rem 0; scrollbar-width: none; scroll-snap-type: x mandatory; }
.scrolling-wrapper::-webkit-scrollbar { display: none; }
.scrolling-content { display: flex; gap: 40px; width: max-content; }
.testimonial-card { scroll-snap-align: center; }

.carousel-container { position: relative; display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid rgba(0,0,0,0.1); color: var(--text-main); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.prev-btn { left: -25px; }
.next-btn { right: -25px; }

.offers { padding: 100px 0; background-color: var(--bg-primary); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.offer-card { background: #fff; padding: 50px 40px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.05); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: all 0.4s ease; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.offer-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); opacity: 0; transition: opacity 0.3s ease; }
.offer-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.offer-card:hover::after { opacity: 1; }
.offer-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-main); }
.offer-price { font-size: 3rem; font-family: var(--font-heading); color: var(--text-main); margin-bottom: 30px; }
.offer-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.offer-features li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); }
.offer-features li:last-child { border-bottom: none; }

.footer { background-color: #111; color: #aaa; padding: 80px 0 40px; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-info h3 { margin-bottom: 20px; color: #fff; }
.footer-info p { margin-bottom: 10px; color: #888; }
.footer-logo { text-align: right; color: #555; }

.checkout-container { padding: 120px 20px 80px; }
.checkout-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; }
.plan-card, .contact-form, .payment-box { background: #fff; border: 1px solid rgba(0,0,0,0.05); padding: 30px; border-radius: 4px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); margin-top: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-muted); }
.form-group input { width: 100%; padding: 12px; background: #fff; border: 1px solid #ddd; color: var(--text-main); border-radius: 4px; font-family: var(--font-body); transition: border-color 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent); }
.total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.payment-note { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-bottom: 15px; }

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); z-index: 1000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: #fff; padding: 50px; border-radius: 4px; border: none; text-align: center; max-width: 500px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .about-container { flex-direction: column; }
    .offers-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 30px; }
    .hero h1 { font-size: 3rem; }
}
