/* =====================================================
   DRONA SPORTS ARENA — Stylesheet
   This file controls the look of ALL pages.
   ===================================================== */

/* GOOGLE FONTS — sporty + modern pairing
   Bebas Neue → brand mark / bold display
   Montserrat → headings
   Inter      → body text
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@600;700;800;900&family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #0B2545;
  line-height: 1.65;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Headings use Montserrat by default */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

/* DESIGN TOKENS */
:root {
  /* Colors */
  --navy: #0B2545;
  --orange: #F77F00;
  --blue: #1E88E5;
  --light-grey: #f4f7fb;
  --text-grey: #5a6b85;
  --white: #ffffff;

  /* Typography — change here, applies everywhere */
  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --w-regular:    400;
  --w-medium:     500;
  --w-semibold:   600;
  --w-bold:       700;
  --w-extrabold:  800;
  --w-black:      900;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.site-header {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.logo-block img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--w-regular);
  letter-spacing: 4px;
  line-height: 1;
}
.logo-text .brand-sub {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: var(--w-bold);
  letter-spacing: 4px;
  color: var(--orange);
  margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--w-semibold);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--orange); border-bottom: 2px solid var(--orange); padding-bottom: 4px; }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: var(--w-bold);
  letter-spacing: 1px;
}
.nav-cta:hover { background: #e07000; color: var(--white) !important; }
.nav-cta.nav-enroll { background: #2e7d32; }
.nav-cta.nav-enroll:hover { background: #1b5e20; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* =====================================================
   HERO / PAGE BANNER
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #0B2545 0%, #1a3a6b 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 150px;
  height: 150px;
  background: var(--blue);
  opacity: 0.15;
  border-radius: 50%;
  transform: translate(-50%, 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,127,0,0.18);
  border: 1px solid rgba(247,127,0,0.45);
  color: #ffd6a8;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: 2px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff9a2e;
  box-shadow: 0 0 0 0 rgba(255,154,46,0.7);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255,154,46,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,154,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,154,46,0); }
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: var(--w-black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 18px;
  color: #c5d2e6;
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: var(--w-bold);
  text-decoration: none;
  letter-spacing: 0.6px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-size: 14px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9a2e);
  color: var(--white);
  box-shadow: 0 8px 22px -8px rgba(247,127,0,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(247,127,0,0.7); }
.btn-secondary { background: var(--white); color: var(--navy); box-shadow: 0 6px 18px -8px rgba(0,0,0,0.25); }
.btn-secondary:hover { background: #f1f5fa; transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 22px -8px rgba(37,211,102,0.55);
}
.btn-whatsapp:hover { background: #1eb558; transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(37,211,102,0.7); }

.page-banner {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(700px 350px at 85% 110%, rgba(247,127,0,0.18), transparent 60%),
    radial-gradient(600px 300px at 0% 0%, rgba(30,136,229,0.18), transparent 55%),
    linear-gradient(135deg, #0B2545 0%, #1a3a6b 100%);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}
.page-banner h1 {
  font-size: 44px;
  font-weight: var(--w-extrabold);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.page-banner p {
  display: inline-block;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 4px;
  font-weight: var(--w-bold);
  padding: 6px 16px;
  border: 1px solid rgba(247,127,0,0.4);
  border-radius: 999px;
  background: rgba(247,127,0,0.08);
}

/* =====================================================
   SECTIONS
   ===================================================== */
section { padding: 84px 0; }
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--w-bold);
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 38px;
  font-weight: var(--w-extrabold);
  color: var(--navy);
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}
.section-title p {
  font-size: 16px;
  color: var(--text-grey);
  margin-top: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   CARDS / GRIDS
   ===================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid #e6ecf4;
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 2px 8px rgba(11,37,69,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffb066);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover {
  border-color: rgba(247,127,0,0.25);
  box-shadow: 0 14px 32px rgba(11,37,69,0.12);
  transform: translateY(-5px);
}
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: inline-block;
  line-height: 1;
}
.card h3 {
  font-size: 21px;
  font-weight: var(--w-extrabold);
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.card p {
  color: var(--text-grey);
  font-size: 14.5px;
  line-height: 1.7;
}
.card ul {
  list-style: none;
  margin-top: 16px;
}
.card ul li {
  padding: 7px 0;
  font-size: 14px;
  color: #1a3358;
  line-height: 1.55;
}
.card ul li::before {
  content: '✓ ';
  color: var(--orange);
  font-weight: var(--w-extrabold);
  margin-right: 6px;
}

/* Sport tile cards */
.sport-tile {
  position: relative;
  isolation: isolate;
  color: var(--white);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(11,37,69,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sport-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(0,0,0,0.25), transparent 50%);
  z-index: -1;
}
.sport-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px -12px rgba(11,37,69,0.35);
}
.sport-tile.cricket { background: linear-gradient(140deg, #0B2545 0%, #1a3a6b 100%); }
.sport-tile.football { background: linear-gradient(140deg, #F77F00 0%, #ff9a2e 100%); }
.sport-tile.turf { background: linear-gradient(140deg, #1E88E5 0%, #4ba3f0 100%); }
.sport-tile .icon {
  font-size: 52px;
  margin-bottom: 14px;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.sport-tile h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--w-regular);
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.sport-tile p { font-size: 13.5px; opacity: 0.95; line-height: 1.6; }

/* Pricing cards */
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e6ecf4;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 14px rgba(11,37,69,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11,37,69,0.12);
}
.pricing-card.featured {
  border-color: rgba(247,127,0,0.5);
  box-shadow: 0 16px 40px rgba(247,127,0,0.18);
  transform: translateY(-6px);
}
.pricing-card.featured:hover { transform: translateY(-10px); }
.pricing-card.featured::before {
  content: '★ POPULAR';
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #F77F00, #ff9a2e);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: var(--w-extrabold);
  letter-spacing: 1.5px;
  box-shadow: 0 6px 14px -4px rgba(247,127,0,0.5);
  z-index: 1;
}
.pricing-card .header {
  background: linear-gradient(135deg, #0B2545 0%, #1a3a6b 100%);
  color: var(--white);
  padding: 28px 20px 22px;
  position: relative;
}
.pricing-card .header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.pricing-card .header h3 {
  font-size: 18px;
  font-weight: var(--w-extrabold);
  letter-spacing: 2.5px;
}
.pricing-card .price {
  font-size: 44px;
  font-weight: var(--w-extrabold);
  color: var(--orange);
  padding: 28px 0 8px;
  letter-spacing: -0.02em;
}
.pricing-card .price small {
  font-size: 14px;
  color: var(--text-grey);
  font-weight: var(--w-medium);
  letter-spacing: 0;
}
.pricing-card ul {
  list-style: none;
  padding: 20px 28px 24px;
  text-align: left;
}
.pricing-card ul li {
  padding: 10px 0;
  font-size: 14px;
  color: #1a3358;
  border-bottom: 1px solid #eef2f7;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: var(--w-extrabold);
  margin-right: 10px;
}
.pricing-card .footer { padding: 0 24px 26px; background: transparent; }
.pricing-card .footer .btn { width: 100%; }

/* =====================================================
   FACILITIES STRIP
   ===================================================== */
.facilities-strip {
  background: var(--light-grey);
  padding: 50px 0;
  border-top: 1px solid #e6ecf4;
  border-bottom: 1px solid #e6ecf4;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 28px;
  text-align: center;
}
.facility {
  font-size: 12.5px;
  font-weight: var(--w-bold);
  letter-spacing: 1.5px;
  color: var(--navy);
  padding: 16px 8px;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.facility:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -10px rgba(11,37,69,0.18);
}
.facility .icon {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
  filter: grayscale(0.05);
}

/* =====================================================
   GALLERY — Multi-image tiles with auto-slideshow
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11,37,69,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(11,37,69,0.22);
}
.gallery-tile .slide img { transition: transform 4s ease-out; }
.gallery-tile:hover .slide.active img { transform: scale(1.05); }
.gallery-tile .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.gallery-tile .slide.active { opacity: 1; }
.gallery-tile .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-tile .label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  padding: 16px 14px 12px;
  font-size: 13px;
  font-weight: var(--w-bold);
  letter-spacing: 1px;
  z-index: 2;
}
.gallery-tile .counter {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(11,37,69,0.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: var(--w-bold);
  letter-spacing: 0.5px;
  z-index: 2;
}
.gallery-tile .dots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.gallery-tile .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
}
.gallery-tile .dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* =====================================================
   LIGHTBOX (full-screen photo view)
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
}
.lightbox img {
  max-width: 95vw;
  max-height: 85vh;
  display: block;
  border-radius: 6px;
  margin: 0 auto;
}
.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 1px;
}
.lightbox-counter {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin-top: 4px;
}
.lightbox-close {
  position: absolute;
  top: -20px; right: -10px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 22px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid #e6ecf4;
  box-shadow: 0 2px 10px rgba(11,37,69,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-block:hover {
  transform: translateY(-3px);
  border-color: rgba(247,127,0,0.3);
  box-shadow: 0 14px 32px rgba(11,37,69,0.10);
}
.contact-block .icon-chip {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(247,127,0,0.15), rgba(247,127,0,0.05));
  border: 1px solid rgba(247,127,0,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.contact-block .icon-chip svg { width: 20px; height: 20px; fill: currentColor; }
.contact-block .body { min-width: 0; flex: 1; }
.contact-block .label {
  font-size: 11px;
  font-weight: var(--w-extrabold);
  letter-spacing: 2.5px;
  color: var(--text-grey);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-block .value {
  font-size: 15.5px;
  font-weight: var(--w-semibold);
  color: var(--navy);
  line-height: 1.55;
}
.contact-block .value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-block .value a:hover { color: var(--orange); }
.map-embed {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  border: 0;
  box-shadow: 0 12px 32px rgba(11,37,69,0.14);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(0,0,0,0.18), transparent 60%),
    linear-gradient(135deg, var(--orange) 0%, #e07000 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 34px;
  font-weight: var(--w-extrabold);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-banner p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-secondary { background: var(--navy); color: var(--white); }
.cta-banner .btn-secondary:hover { background: #08182f; }

/* =====================================================
   FOOTER
   The footer markup lives in partials/footer.html (loaded
   by script.js). All styles live here for reliability.
   ===================================================== */
.site-footer {
  position: relative;
  background: #0a1f3d;
  color: #b6c3d8;
  margin-top: 70px;
  font-family: var(--font-body);
  border-top: 3px solid var(--orange);
}

.site-footer .footer-main {
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 40px;
}

.site-footer .footer-col { min-width: 0; }

.site-footer .footer-col h4 {
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 14px;
  font-weight: var(--w-extrabold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 10px;
}
.site-footer .footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Brand column */
.site-footer .brand-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 34px;
  letter-spacing: 5px;
  line-height: 1;
}
.site-footer .brand-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--orange);
  font-weight: var(--w-bold);
  margin-top: 6px;
}
.site-footer .brand-tagline {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 20px;
  font-weight: var(--w-extrabold);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 22px;
  max-width: 360px;
}
.site-footer .brand-tagline .accent { color: var(--orange); }
.site-footer .brand-blurb {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #8da0bd;
  margin: 10px 0 0;
  max-width: 360px;
  font-weight: var(--w-regular);
  letter-spacing: 0.1px;
}
.site-footer .brand-blurb .lead {
  color: #ebf1fb;
  font-weight: var(--w-semibold);
}
.site-footer .brand-motto {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--orange);
  letter-spacing: 5px;
  font-size: 16px;
  margin-top: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(247,127,0,0.35);
  border-radius: 4px;
  background: rgba(247,127,0,0.06);
}

/* Quick links */
.site-footer .links { list-style: none; padding: 0; margin: 0; }
.site-footer .links li { padding: 5px 0; }
.site-footer .links a {
  color: #b6c3d8;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer .links a:hover { color: var(--orange); transform: translateX(3px); }

/* Address / contact text */
.site-footer .info { font-size: 14px; line-height: 1.7; color: #b6c3d8; }
.site-footer .info p { margin: 0 0 12px; }
.site-footer .info p:last-child { margin-bottom: 0; }
.site-footer .info strong { color: #fff; font-weight: var(--w-semibold); }
.site-footer .info a { color: #b6c3d8; text-decoration: none; transition: color 0.2s ease; }
.site-footer .info a:hover { color: var(--orange); }
.site-footer .info .phone {
  font-family: var(--font-display);
  color: var(--orange);
  font-weight: var(--w-regular);
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.1;
  display: inline-block;
}

/* Socials */
.site-footer .socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.site-footer .socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.site-footer .socials a svg { width: 16px; height: 16px; fill: #fff; }
.site-footer .socials a:hover { transform: translateY(-2px); border-color: transparent; }
.site-footer .socials a.ig:hover { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.site-footer .socials a.fb:hover { background: #1877F2; }
.site-footer .socials a.yt:hover { background: #FF0000; }
.site-footer .socials a.wa:hover { background: #25D366; }

/* Bottom bar */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7d8ea8;
}
.site-footer .footer-bottom .heart { color: var(--orange); }

/* Footer responsive */
@media (max-width: 1000px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .site-footer .footer-col.brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 0 30px;
  }
  .site-footer .footer-col.brand { grid-column: span 1; }
  .site-footer .footer-bottom { justify-content: center; text-align: center; }
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 99;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-ring 2s infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,211,102,0.6); }

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #08182f;
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .main-nav a.active { border-bottom: 1px solid var(--orange); }
  .nav-cta { border-radius: 0; text-align: center; }

  .hero { padding: 60px 0; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }

  .page-banner { padding: 60px 0 50px; }
  .page-banner h1 { font-size: 32px; }

  section { padding: 60px 0; }
  .section-title { margin-bottom: 44px; }
  .section-title h2 { font-size: 28px; }

  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 26px; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-embed { height: 340px; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 32px; }
  .page-banner h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}