/* ══════════════════════════════════════
   SVNI SHARED STYLES — style.css
   ══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --saffron: #E8521A;
  --deep: #1A0E00;
  --gold: #C9922C;
  --cream: #FDF6ED;
  --white: #ffffff;
  --mid: #6B4F3A;
  --light: #F5EBD9;
  --text: #2C1A0A;
  --accent: #12698A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── TOPBAR ── */
.topbar {
  background: var(--saffron); color: #fff;
  text-align: center; padding: 8px 16px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  animation: pulse-bg 3s infinite alternate;
}
@keyframes pulse-bg { from{background:var(--saffron)} to{background:#c43a06} }
.topbar a { color: #FFE08A; font-weight: 700; text-decoration: none; margin-left: 8px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(26,14,0,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; padding: 10px 0; text-decoration: none; }
.nav-logo img { height: 44px; border-radius: 4px; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a, .dropbtn {
  color: #E8D5B5; text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 20px 11px; display: block; letter-spacing: 0.3px;
  transition: color .2s; border-bottom: 3px solid transparent; background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.nav-links > a:hover, .dropbtn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links > a.active, .nav-links > a.active ~ * { color: var(--gold); }

/* ── DROPDOWN ── */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #120900; border: 1px solid rgba(201,146,44,0.2);
  border-radius: 8px; min-width: 200px; padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 1000;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 18px;
  color: #C8B8A0; font-size: 13px; text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: rgba(232,82,26,0.12); color: var(--gold); }

.nav-cta {
  background: var(--saffron) !important; color: #fff !important;
  border-radius: 6px; padding: 9px 18px !important; margin: 10px 4px;
  font-weight: 700 !important; border-bottom: none !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #c43a06 !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1A0E00, #0E2A40);
  padding: 70px 5% 60px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,82,26,0.1) 0%, transparent 70%);
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); color: #fff; position: relative; }
.page-hero h1 span { color: var(--saffron); }
.page-hero p { color: #9E8A78; font-size: 15px; margin-top: 10px; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 12px; color: #6A5A4A; margin-top: 14px; position: relative; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── SECTION BASE ── */
section, .section { padding: 70px 5%; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--deep); line-height: 1.2; }
.section-title span { color: var(--saffron); }
.section-title.light { color: #fff; }
.section-desc { font-size: 15px; color: var(--mid); max-width: 560px; margin: 12px auto 0; line-height: 1.7; }
.divider { width: 56px; height: 3px; background: linear-gradient(90deg,var(--saffron),var(--gold)); border-radius: 2px; margin: 14px auto 0; }

/* ── BUTTONS ── */
.btn-primary { background: var(--saffron); color: #fff; padding: 13px 30px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block; transition: background .2s, transform .15s; box-shadow: 0 4px 20px rgba(232,82,26,0.35); border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: #c43a06; transform: translateY(-2px); }
.btn-secondary { border: 2px solid rgba(201,146,44,0.5); color: var(--gold); padding: 13px 30px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-secondary:hover { background: rgba(201,146,44,0.1); }
.btn-white { background: #fff; color: var(--saffron); padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-block; transition: transform .15s, box-shadow .2s; }
.btn-white:hover { transform: translateY(-2px); }

/* ── CARDS ── */
.card { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid #EDE0CC; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,14,0,0.1); border-color: var(--saffron); }

/* ── FORM ── */
.form-wrap { background: var(--deep); border-radius: 20px; padding: 40px; }
.form-wrap h3 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.5rem; margin-bottom: 6px; }
.form-wrap p.sub { color: #8A7A6A; font-size: 13px; margin-bottom: 24px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: #9E8A78; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #4A3A2A; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: #1A0E00; }
.form-group .radio-group { display: flex; gap: 20px; }
.form-group .radio-group label { font-size: 14px; font-weight: 400; color: #C8B8A0; text-transform: none; letter-spacing: 0; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.submit-btn { width: 100%; padding: 14px; border-radius: 8px; background: var(--saffron); color: #fff; font-weight: 700; font-size: 15px; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; }
.submit-btn:hover { background: #c43a06; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
table th { background: rgba(201,146,44,0.15); color: var(--gold); padding: 12px 16px; text-align: left; font-weight: 600; }
table td { padding: 10px 16px; color: #C8B8A0; border-bottom: 1px solid rgba(255,255,255,0.05); }
table tr:hover td { background: rgba(255,255,255,0.03); color: #fff; }

/* ── APPROVAL BAR ── */
.approvals { background: var(--deep); padding: 36px 5%; text-align: center; }
.approvals p { color: #5A4A3A; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.approval-logos { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.approval-logos img { height: 48px; filter: brightness(0) invert(1); opacity: 0.65; transition: opacity .2s; }
.approval-logos img:hover { opacity: 1; }
.badge-pill { background: rgba(201,146,44,0.15); border: 1px solid rgba(201,146,44,0.3); color: var(--gold); padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; }

/* ── FOOTER ── */
footer { background: #0A0600; padding: 56px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand img { height: 46px; }
.footer-brand p { font-size: 13px; color: #4A3A2A; line-height: 1.7; margin: 12px 0; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #4A3A2A; text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #3A2A1A; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--saffron); text-decoration: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,6,0,0.98); padding: 16px; }
  .nav-links.open { display: flex; }
  .nav-links > a, .dropbtn { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
  .dropdown-menu { position: static; border: none; background: rgba(255,255,255,0.04); border-radius: 6px; margin: 4px 0 8px 12px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 14px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── UTIL ── */
.container { max-width: 1160px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:900px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;gap:24px;}}
.dark-section { background: linear-gradient(135deg, var(--deep), #0E2A40); }
.light-section { background: var(--light); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.info-list { list-style: none; }
.info-list li { padding: 13px 0; border-bottom: 1px solid #DDD0C0; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.info-list li:last-child { border-bottom: none; }
.tag { font-size: 11px; padding: 3px 10px; border-radius: 100px; font-weight: 500; }
.tag-dur { background: #FEF3E2; color: #A05A0A; }
.tag-elig { background: #E8F4FD; color: #0E5C88; }
.icon-box { width: 44px; height: 44px; border-radius: 10px; background: rgba(232,82,26,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
