/* ==========================================================================
   AMRIT FITNESS - Exact Theme & Layout Matching Original amritfitness.com
   Primary Accent Color: Vibrant Red (#d8322e / #e33833)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-red: #d8322e;
  --primary-red-hover: #b82522;
  --dark-bg: #0a0a0a;
  --dark-card: #141414;
  --light-bg: #ffffff;
  --gray-bg: #f4f4f5;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --text-light: #ffffff;
  --border-light: #e2e8f0;
  
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-red {
  color: var(--primary-red) !important;
}

/* Header & Nav - Exact Match to amritfitness.com */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.6rem 0;
  background: transparent;
  border-bottom: none;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(10, 10, 10, 0.95);
  padding: 0.9rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--primary-red);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-red:hover {
  background-color: var(--primary-red-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(216, 50, 46, 0.4);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-white:hover {
  background-color: #e5e5e5;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
              url('/assets/images/D12117C2-5B04-4A1C-A1B0-5E6026F79F3A.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  color: var(--text-light);
}

.hero-content {
  max-width: 750px;
  padding: 3rem 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #dddddd;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Red Download Our App Bar */
.red-app-bar {
  background-color: var(--primary-red);
  padding: 1.5rem 0;
  color: var(--text-light);
}

.app-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.app-bar-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.app-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--light-bg);
  border-radius: 8px;
  color: var(--primary-red);
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.app-store-badge:hover {
  transform: scale(1.08);
}

/* Welcome Section */
.welcome-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* 6-Photo Grid */
.photo-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.photo-grid-6 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.photo-grid-6 img:hover {
  transform: scale(1.03);
}

.welcome-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.welcome-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* 4 Icon Badges Row */
.badges-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.badge-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.6rem;
}

.badge-item span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Solid Red Slogan Banner */
.slogan-red-banner {
  background-color: var(--primary-red);
  padding: 2.2rem 0;
  text-align: center;
  color: var(--text-light);
}

.slogan-red-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* Before / After Section */
.before-after-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.ba-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.ba-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.2rem;
}

/* Progress Bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.progress-item label {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.progress-track {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary-red);
  border-radius: 999px;
  transition: width 1s ease-in-out;
}

/* Interactive Before / After Image Split Slider */
.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  user-select: none;
  margin: 0 auto;
}

.ba-slider-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid var(--primary-red);
}

.ba-slider-after img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--primary-red);
  color: var(--text-light);
  border: 3px solid var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: ew-resize;
  z-index: 3;
}

/* Range input control overlay */
.ba-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

/* Start Your Transformation Banner */
.start-trans-banner {
  background-color: var(--primary-red);
  padding: 3.5rem 0;
  color: var(--text-light);
}

.start-trans-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.start-trans-flex h2 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.start-trans-flex p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  max-width: 650px;
}

/* Testimonials Section */
.testimonials-light-section {
  padding: 5rem 0;
  background-color: var(--gray-bg);
  text-align: center;
}

.testimonials-light-section .tag {
  color: var(--primary-red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.testimonial-box {
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.testimonial-country {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.testimonial-quote-text {
  font-size: 1rem;
  color: #444444;
  line-height: 1.8;
  font-style: italic;
}

/* Footer Section */
.main-footer {
  background: var(--light-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-4col-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* 3x3 Transformation Thumbnails in Footer */
.footer-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.footer-thumb-grid img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: 2px;
}

.footer-store-badges {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-store-badges img {
  max-width: 160px;
  height: auto;
  border-radius: 4px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links-list a:hover {
  color: var(--primary-red);
}

.copyright-bar {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .welcome-grid,
  .before-after-grid,
  .start-trans-flex,
  .footer-4col-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .badges-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-bg);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }

  .main-nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.2rem;
  }
}

/* Enforce Single-Line Labels for Application Form */
.form-field-item label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}


/* Floating WhatsApp CTA Pill Widget (Matching Uploaded Reference Screenshot) */
.whatsapp-float-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  background: #25d366;
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-float-widget:hover {
  background: #20bd5a;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.whatsapp-float-widget .wa-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.whatsapp-float-widget .wa-icon-wrap {
  width: 32px;
  height: 32px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
}

@media (max-width: 576px) {
  .whatsapp-float-widget {
    bottom: 15px;
    right: 15px;
    padding: 9px 16px;
    gap: 8px;
  }
  .whatsapp-float-widget .wa-text {
    font-size: 0.9rem;
  }
  .whatsapp-float-widget .wa-icon-wrap {
    font-size: 1.5rem;
    width: 26px;
    height: 26px;
  }
}

/* Inline Form Response UI Styling (Matching EKDDUAE_COM_LATEST_HTML) */
.form-response {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.form-response.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1.5px solid #a7f3d0;
}

.form-response.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1.5px solid #fca5a5;
}
