/* ============================================
   Elevate Gym - Marketing Website Styles
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* Brand Colors */
  --gold:          #c8a94e;
  --gold-light:    #d4b85c;
  --gold-dark:     #b08d3a;
  --gold-glow:     rgba(200, 169, 78, 0.25);

  /* Backgrounds */
  --bg-dark:       #0a0a0a;
  --bg-charcoal:   #141414;
  --bg-card:       #1a1a1a;
  --bg-card-hover: #222222;
  --bg-light:      #f8f8f8;

  /* Text */
  --text-white:    #ffffff;
  --text-light:    #e0e0e0;
  --text-muted:    #9ca3af;
  --text-dark:     #1f2937;

  /* Accent */
  --whatsapp:      #25D366;
  --app-blue:      #3b82f6;

  /* Layout */
  --container-max:  1200px;
  --section-pad:    100px;
  --section-pad-sm: 60px;

  /* Font */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.3s var(--ease);
  /* Invert white bg to black, preserve gold hue, lighten hides residual bg */
  filter: invert(1) hue-rotate(180deg) brightness(1.3);
  mix-blend-mode: lighten;
}

.nav.scrolled .nav-logo img {
  height: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 8px 24px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease);
}

.nav-login:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 15%,
    rgba(0, 0, 0, 0.0) 30%,
    rgba(0, 0, 0, 0.0) 55%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.9) 90%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.hero-top {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px 60px;
  margin-top: 0;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 24px;
  white-space: nowrap;
  letter-spacing: -1px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 20px; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

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

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

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* ============================================
   Credentials Bar
   ============================================ */
.credentials {
  background: var(--bg-charcoal);
  border-top: 1px solid rgba(200, 169, 78, 0.15);
  border-bottom: 1px solid rgba(200, 169, 78, 0.15);
  padding: 32px 0;
}

.credentials-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credential-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   Section Headers
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 78, 0.2);
  background: var(--bg-card-hover);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(200, 169, 78, 0.12);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Lifts
   ============================================ */
.lifts {
  padding: var(--section-pad) 0;
  background: var(--bg-charcoal);
}

.lifts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lift-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease);
}

.lift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(200, 169, 78, 0.2);
}

.lift-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.lift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.lift-card:hover .lift-image img {
  transform: scale(1.05);
}

.lift-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    transparent 50%
  );
}

.lift-info {
  padding: 24px;
}

.lift-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.lift-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Coach
   ============================================ */
.coach {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.coach-image-area {
  position: relative;
}

.coach-image-frame {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 78, 0.2);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.coach-image-frame img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.coach-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.coach-badge span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.coach-content .section-tag {
  display: block;
}

.coach-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.coach-title {
  font-size: 16px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.coach-bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.coach-philosophy {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
}

.coach-philosophy h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.coach-philosophy li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.coach-philosophy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.coach-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Why Elevate
   ============================================ */
.why-elevate {
  padding: var(--section-pad) 0;
  background: var(--bg-charcoal);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 78, 0.2);
}

.benefit-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.benefit-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.3s var(--ease);
}

.benefit-link:hover {
  color: var(--gold-light);
}

/* ============================================
   Contact CTA
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.contact-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.contact-content > p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-location svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  filter: invert(1) hue-rotate(180deg) brightness(1.3);
  mix-blend-mode: lighten;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  opacity: 0.7;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  opacity: 1;
  transform: scale(1) translateY(0);
}

.whatsapp-float.hidden {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

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

/* ============================================
   Inner Page Content
   ============================================ */
.page-content {
  padding-top: 80px;
}

.page-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coach-image-area {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s var(--ease);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-login {
    font-size: 16px;
    text-align: center;
    width: 100%;
    display: block;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
  }

  .hero-bg img {
    object-position: center 20%;
  }

  .hero-top {
    top: 70px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  }

  .hero-content {
    padding: 0 16px 24px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Grids mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 28px 24px;
  }

  .lifts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lift-image {
    height: 220px;
  }

  .lift-image img {
    object-position: center top;
  }

  .coach-image-frame {
    padding: 20px;
    aspect-ratio: 1 / 1;
  }

  .coach-image-frame img {
    max-width: 90%;
    max-height: 90%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Credentials mobile */
  .credentials-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .credential-item {
    font-size: 13px;
  }

  /* Coach mobile */
  .coach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coach-ctas {
    flex-direction: column;
  }

  .coach-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact mobile */
  .contact-ctas {
    flex-direction: column;
    align-items: center;
  }

  .contact-ctas .btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 12px;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 15px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .hero-top {
    top: 60px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .lift-image {
    height: 180px;
  }

  .footer-brand img {
    height: 40px;
  }
}
