/* =========================================================
   MCC Cricket Club – Design System
   Colors: Navy #0D2B6B | Gold #F5A623 | White #FFF | Grey #F4F5F7
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  --navy: #0D2B6B;
  --navy-light: #1a3d8f;
  --navy-dark: #081a44;
  --gold: #F5A623;
  --gold-light: #ffc35a;
  --gold-dark: #d4891c;
  --white: #ffffff;
  --grey-50: #f8f9fc;
  --grey-100: #F4F5F7;
  --grey-200: #e8eaed;
  --grey-300: #d1d5db;
  --grey-600: #6b7280;
  --grey-800: #1f2937;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(13,43,107,0.12);
  --shadow-lg: 0 8px 40px rgba(13,43,107,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
  --section-pad: 80px 20px;
}

/* ---------- Utility Classes ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: var(--section-pad); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-grey { background: var(--grey-50); }
.bg-gold { background: var(--gold); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 700; }
p { font-size: 1rem; color: var(--text); line-height: 1.7; }
.lead { font-size: 1.15rem; color: var(--grey-600); max-width: 700px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.12);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,43,107,0.3); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,43,107,0.95);
  backdrop-filter: blur(12px);
  padding: 0 20px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#navbar.scrolled {
  background: rgba(8,26,68,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.nav-logo .logo-badge {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-text span:last-child { font-size: 0.65rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.08em; opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.12); }
.nav-links a.btn-login {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-left: 8px;
}
.nav-links a.btn-login:hover { background: var(--gold-dark); color: var(--navy); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    transform: translateX(-100%);
    transition: var(--transition);
    border-top: 2px solid var(--gold);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 13px 16px; font-size: 1rem; border-radius: 8px; }
  .nav-links a.btn-login { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.38) saturate(1.2);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,107,0.85) 0%, rgba(8,26,68,0.4) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-title .highlight { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 580px; margin-bottom: 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.05em; }
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ---------- Section Headings ---------- */
.section-heading { margin-bottom: 50px; }
.section-heading h2 { margin-top: 8px; margin-bottom: 14px; }
.section-heading p { max-width: 620px; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin: 0 auto; }
.heading-line {
  width: 60px; height: 4px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
  margin: 12px 0 0;
}
.section-heading.centered .heading-line { margin: 12px auto 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 24px; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ---------- Grid Layouts ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Feature Items ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-item {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,166,35,0.15); transform: translateY(-3px); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-item h4 { margin-bottom: 8px; color: var(--navy); }
.feature-item p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 120px 20px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -25%;
  width: 150%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.82); }

/* ---------- Footer ---------- */
#footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 14px; line-height: 1.7; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 4px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }

/* ---------- Footer CTA Strip ---------- */
.footer-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 40px 20px;
  text-align: center;
}
.footer-cta h3 { color: var(--navy); font-size: 1.7rem; margin-bottom: 8px; }
.footer-cta p { color: rgba(13,43,107,0.8); margin-bottom: 20px; }
.footer-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,43,107,0.1); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230D2B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  display: none;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid #22c55e;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: #166534;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-gold { background: rgba(245,166,35,0.15); color: var(--gold-dark); }
.badge-navy { background: rgba(13,43,107,0.12); color: var(--navy); }
.badge-green { background: rgba(34,197,94,0.12); color: #16a34a; }

/* ---------- Achievement Cards ---------- */
.achievement-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--grey-200);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.achievement-card .player-name { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.achievement-card .achievement-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.achievement-card .award-badge {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Program Cards ---------- */
.program-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.program-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 180px; height: 180px;
  background: rgba(245,166,35,0.1);
  border-radius: 50%;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(13,43,107,0.4); }
.program-age { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.program-title { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 12px; }
.program-count { font-size: 0.88rem; color: rgba(255,255,255,0.85); border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px; margin-top: 12px; }
.program-count span { color: var(--gold); font-weight: 700; }

/* ---------- Facility Card ---------- */
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.facility-card .fac-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.facility-card .fac-body { padding: 24px; }
.facility-card h4 { color: var(--navy); margin-bottom: 8px; }
.facility-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- News Cards ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card .news-image { height: 180px; overflow: hidden; background: var(--grey-100); }
.news-card .news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-image img { transform: scale(1.06); }
.news-card .news-body { padding: 20px; flex: 1; }
.news-card .news-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.news-card h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.news-card p { font-size: 0.87rem; color: var(--text-muted); }
.news-card .news-date { font-size: 0.78rem; color: var(--grey-600); margin-top: 12px; }

/* ---------- Category Filter Tabs ---------- */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 20px;
  border: 2px solid var(--grey-200);
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-muted);
}
.filter-tab:hover, .filter-tab.active { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--navy)); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.timeline-title { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Two-col layout ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) { .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; } }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ---------- CSR / Community ---------- */
.csr-area-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 2px solid var(--grey-200);
  transition: var(--transition);
  text-align: center;
}
.csr-area-card:hover { border-color: var(--gold); background: rgba(245,166,35,0.04); }
.csr-area-card .csr-icon { font-size: 2.5rem; margin-bottom: 14px; }
.csr-area-card h4 { color: var(--navy); margin-bottom: 8px; }
.csr-area-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Quote / Callout ---------- */
.callout {
  background: linear-gradient(135deg, rgba(13,43,107,0.06), rgba(245,166,35,0.06));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--navy);
  margin: 30px 0;
}

/* ---------- Map placeholder ---------- */
.map-placeholder {
  background: var(--grey-100);
  border: 2px dashed var(--grey-300);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-600);
  font-size: 1rem;
  text-align: center;
  gap: 12px;
}
.map-placeholder .map-icon { font-size: 2.5rem; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.in-view { animation: fadeInUp 0.65s ease forwards; }
.animate.delay-1 { animation-delay: 0.1s; }
.animate.delay-2 { animation-delay: 0.2s; }
.animate.delay-3 { animation-delay: 0.3s; }
.animate.delay-4 { animation-delay: 0.4s; }

/* ---------- Scroll to top ---------- */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: fit-content; }
}
@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 84px; right: 28px;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ---------- Print (&& no-JS fallback) ---------- */
@media print { #navbar, .whatsapp-float, #scroll-top { display: none !important; } }
