/* ============================================================
   PowerZone Fitness – style.css
   Dark Industrial Gym Theme
   Designed by RNS Digital | rnsdigital.co.in
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --clr-bg:         #0a0a0a;
  --clr-bg2:        #111111;
  --clr-bg3:        #161616;
  --clr-card:       #181818;
  --clr-border:     #2a2a2a;
  --clr-accent:     #e8322a;
  --clr-accent2:    #ff5a52;
  --clr-gold:       #f5a623;
  --clr-text:       #e8e8e8;
  --clr-text-muted: #888888;
  --clr-white:      #ffffff;
  --clr-wa:         #25d366;

  --font-display:   'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;

  --nav-height:     72px;
  --radius:         6px;
  --transition:     0.3s ease;
  --shadow:         0 8px 40px rgba(0,0,0,0.6);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── UTILITY ───────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 90px 0; }

.accent { color: var(--clr-accent); }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--clr-white);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.btn-primary:hover {
  background: var(--clr-accent2);
  border-color: var(--clr-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,50,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 44px; font-size: 1.1rem; }

.full-width { width: 100%; justify-content: center; }

.btn-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-wa);
  color: var(--clr-white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  margin-top: 6px;
  transition: all var(--transition);
}
.btn-wa-inline:hover { background: #20ba57; transform: translateY(-2px); }

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  background: var(--clr-wa);
  color: var(--clr-white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  margin-top: 10px;
  transition: all var(--transition);
}
.btn-wa-sm:hover { background: #20ba57; }

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.logo-power {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--clr-white);
  letter-spacing: 0.04em;
}

.logo-zone {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--clr-accent);
  letter-spacing: 0.04em;
}

.logo-fitness {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  margin-left: 8px;
  align-self: center;
  border-left: 1px solid var(--clr-border);
  padding-left: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--clr-white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--clr-white); }

.nav-cta {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 9px 22px;
  border-radius: var(--radius);
  margin-left: 8px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--clr-accent2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,50,42,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.6) 55%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.line1 {
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}

.line2 {
  color: var(--clr-accent);
  opacity: 0;
  animation: fadeUp 0.7s 0.7s ease forwards;
}

.hero-tagline {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s ease forwards;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,50,42,0.15);
  border: 1px solid rgba(232,50,42,0.4);
  padding: 10px 18px;
  border-radius: 4px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 1.1s ease forwards;
}

.offer-badge {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--clr-accent);
  text-transform: uppercase;
}

.offer-text {
  font-size: 0.95rem;
  color: var(--clr-text);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 1.3s ease forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

.hero-scroll-hint span {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services { background: var(--clr-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.card-accent-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--clr-accent);
  transition: width 0.4s ease;
}

.service-card:hover .card-accent-line { width: 100%; }

/* ── PLANS ─────────────────────────────────────────────────── */
.plans { background: var(--clr-bg2); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.plan-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border-color: var(--clr-accent);
  background: linear-gradient(160deg, #1e0f0f 0%, #181818 100%);
  box-shadow: 0 0 0 1px var(--clr-accent), 0 24px 60px rgba(232,50,42,0.2);
}

.plan-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 6px 6px;
}

.plan-tag {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 6px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: 28px;
  line-height: 1;
}

.plan-price .currency {
  font-size: 1.8rem;
  vertical-align: super;
  color: var(--clr-accent);
}

.plan-price .per {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: 0;
}

.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--clr-text);
}

.plan-features li.muted { color: var(--clr-text-muted); }

.plan-features .check {
  color: var(--clr-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.plan-features .muted span {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery { background: var(--clr-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
}

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--clr-accent);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'JOIN';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  color: rgba(0,0,0,0.12);
  white-space: nowrap;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-eyebrow {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--clr-white);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background: var(--clr-white);
  color: var(--clr-accent);
  border-color: var(--clr-white);
}

.cta-section .btn-primary:hover {
  background: var(--clr-bg);
  border-color: var(--clr-bg);
  color: var(--clr-white);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact { background: var(--clr-bg2); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232,50,42,0.1);
  border: 1px solid rgba(232,50,42,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon.whatsapp {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.25);
  color: var(--clr-wa);
}

.contact-item strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a:not(.btn-wa-inline) {
  font-size: 1rem;
  color: var(--clr-text);
  transition: color var(--transition);
}

.contact-item a:not(.btn-wa-inline):hover { color: var(--clr-accent); }

.contact-hours {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 20px 22px;
}

.contact-hours strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.map-wrapper iframe { display: block; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--clr-bg3);
  border-top: 1px solid var(--clr-border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--clr-white); }

.footer-contact p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}

.footer-contact a:not(.btn-wa-sm) {
  color: var(--clr-text);
  transition: color var(--transition);
}

.footer-contact a:not(.btn-wa-sm):hover { color: var(--clr-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: var(--clr-accent);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--clr-accent2); }

/* ── FLOATING WHATSAPP ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--clr-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  border: 1px solid var(--clr-border);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .hamburger { display: flex; }

  /* Hide the "Join Now" CTA button in the navbar on mobile —
     users can use the hero buttons or floating WhatsApp instead */
  .nav-cta { display: none; }

  /* Hide the scroll hint on mobile to prevent overlap with hero CTA buttons */
  .hero-scroll-hint { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: #0a0a0a;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px 0 40px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-top: 1px solid var(--clr-border);
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-link {
    padding: 14px 24px;
    border-radius: 0;
    color: var(--clr-text);
    font-size: 1.1rem;
  }

  .nav-link::after { display: none; }

  .hero-btns { flex-direction: column; max-width: 280px; }
  .hero-btns .btn { justify-content: center; }

  /* Move floating WhatsApp button up so it clears the hero CTA buttons */
  .whatsapp-float {
    bottom: 80px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: 1; grid-row: auto; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 60px 0; }
  .wa-tooltip { display: none; }
}