
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0A2540;
  --gold: #d4a035;
  --gold-light: #f0c060;
  --white: #ffffff;
  --gray: #6b7280;
  --light-bg: #f8fafc;
  --dark-bg: #0c1629;
}
body { font-family: 'Inter', sans-serif; color: var(--navy); background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1200px; margin: 0 auto; }
.nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: #fff; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-phone { color: var(--gold); font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.btn-book { background: var(--gold); color: var(--navy); font-weight: 700; padding: 10px 22px; border-radius: 999px; font-size: 14px; transition: background 0.2s; }
.btn-book:hover { background: var(--gold-light); }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.45; }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 80px 24px; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); display: block; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 700; padding: 14px 28px; border-radius: 999px; font-size: 15px; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 2px solid rgba(255,255,255,0.5); color: #fff; font-weight: 600; padding: 14px 28px; border-radius: 999px; font-size: 15px; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--navy); color: #fff; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); margin-bottom: 48px; max-width: 600px; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mx-auto { margin: 0 auto; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 16px rgba(10,37,64,0.08); border: 1px solid rgba(10,37,64,0.07); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(212,160,53,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.stat-item .stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-item .stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 8px; }

/* INFO BANNER */
.info-banner { background: rgba(212,160,53,0.1); border: 1px solid rgba(212,160,53,0.3); border-radius: 16px; padding: 28px 32px; margin: 40px 0; }
.info-banner p { color: var(--navy); font-size: 1.05rem; line-height: 1.7; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col img { border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); width: 100%; }
.two-col-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.two-col-text p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }

/* STEPS */
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; align-items: flex-start; gap: 16px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-text h4 { font-weight: 700; margin-bottom: 4px; }
.step-text p { color: var(--gray); font-size: 0.95rem; }

/* BONUS CARDS */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.bonus-card { background: rgba(212,160,53,0.08); border: 1px solid rgba(212,160,53,0.25); border-radius: 16px; padding: 24px; text-align: center; }
.bonus-amount { font-size: 2rem; font-weight: 800; color: var(--gold); }
.bonus-label { font-weight: 700; margin: 8px 0 4px; }
.bonus-desc { color: var(--gray); font-size: 0.9rem; }

/* FOOTER */
.site-footer { background: #060f1e; color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* HERO PAGE (inner) */
.page-hero { background: var(--navy); padding: 80px 0 60px; color: #fff; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 600px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 20px; }
}
