/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --primary-color: #f7931e;
  --background-color: #fffaf5;
  --text-color: #1a1a1a;
  --dark-text: #333;
  --heading-color: #26235c;
  --light-text: #666;
  --white: #fff;
  --black: #000;
  --shapeColor1: #ff8600;
  --shapeColor2: #ffc380;
  --gradient: linear-gradient(40deg, #e9983e1f, #ddfe5229);
  --gradient2: linear-gradient(272deg, #ff8600, #ffc380);
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --orange: #f5883a;
}

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

body {
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}


/* ============================================================
   HEADER & NAV
   ============================================================ */
#mainHeader {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  min-height: 120px;
  transition: all 0.3s ease;
}

header {
  padding-top: 40px !important;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 100px;
  padding: 20px 40px;
}

.container {
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
  padding: 20px 40px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
}

nav, #nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a, #nav a {
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  line-height: 19px;
  transition: 0.4s ease-in-out;
}

nav a:hover, #nav a:hover {
  background: var(--primary-color);
  color: var(--white);
}

#nav a { color: #1c2a4a; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 10001;
  flex: 0 0 auto;
}

.hamburger div {
  width: 30px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover div { opacity: 0.7; }

/* Mobile Menu Panel */
#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#mobileMenu.active { transform: translateX(0); }

.mobileMenuHeader {
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 16px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}

.mobileMenuLogo {
  position: absolute;
  left: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mobileMenuLogo img { height: 54px; width: auto; display: block; }

.mobileMenuHeader button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: #f3f4f6;
  color: #1f2937;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mobileMenuLinks {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 10px;
  box-sizing: border-box;
  flex: 1 0 auto;
}

.mobileMenuLinks a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px 0 32px;
  text-decoration: none;
  color: #1f2937;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}

.mobileMenuLinks a:hover { background: #f9fafb; }
.mobileMenuLinks a:active { background: #f3f4f6; }

.mobileMenuCTA {
  padding: 16px 20px 24px;
  width: 100%;
  box-sizing: border-box;
}

.mobileMenuCTA a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(90deg, #f2bd6d 0%, #ff9800 100%);
  color: #1f2438;
  letter-spacing: 0.3px;
}


/* ============================================================
   BUTTONS & LINKS
   ============================================================ */
.commonBtn {
  background: var(--gradient2);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.commonBtn:hover { opacity: 0.7; }

.secondaryBtn {
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid #ff8c00;
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.secondaryBtn:hover { opacity: 0.7; }

.play-btn {
  text-decoration: none;
  margin-left: 20px;
  color: var(--primary-color);
}

.play-btn i {
  padding: 10px 12px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 26px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.servicesBtn {
  display: block;
  margin: 40px auto 0;
  text-align: center;
  width: max-content;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: url(../images/background.png);
  background-size: 100%;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 100px 0;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  color: var(--light-text);
}

.tag {
  background: var(--gradient2);
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--white);
  font-size: 12px;
}

.hero-image {
  padding-top: 70px;
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.heroImageWrapper {
  position: absolute;
  right: -10px;
  bottom: 180px;
  z-index: 2;
}

.heroImage {
  display: block;
  width: 640px;
  max-width: none;
  height: auto;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: -45px;
}

/* Shape blob */
.shape {
  position: absolute;
  background: linear-gradient(45deg, var(--shapeColor1) 0, var(--shapeColor2) 100%);
  animation: morph 8s ease-in-out infinite;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  width: 520px;
  height: 520px;
  right: 20px;
  top: 120px;
  z-index: 1;
  transition: all 1s ease-in-out;
  transform: scale(0.82);
  transform-origin: center right;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--shapeColor1) 0, var(--shapeColor2) 100%);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    background: linear-gradient(45deg, var(--shapeColor2) 0, var(--shapeColor1) 100%);
  }
}

/* Hero floating icons */
.heroIcon1, .heroIcon2, .heroIcon3 {
  position: absolute;
  z-index: 99;
}

.heroIcon1 { left: 50px; top: 100px; animation: slideDown 1s ease-in-out infinite alternate; }
.heroIcon2 { right: 0; bottom: 50px; animation: slideRight1 1s ease-in-out infinite alternate; }
.heroIcon3 { left: 0; bottom: 0; animation: slideDown1 1s ease-in-out infinite alternate; }

@keyframes slideDown  { from { top: 100px; }   to { top: 120px; } }
@keyframes slideDown1 { from { bottom: 0; }     to { bottom: 20px; } }
@keyframes slideRight1{ from { right: 0; }      to { right: 20px; } }

@keyframes fadeIn {
  from { opacity: 0.4; transform: translateY(4px); }
  to   { opacity: 1;   transform: none; }
}


/* ============================================================
   BRANDS / MARQUEE
   ============================================================ */
.brands {
  overflow: hidden;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.brands h3 { font-size: 30px; margin-bottom: 50px; color: var(--dark-text); }
.brands h3 span { color: var(--primary-color); }

.marquee-container {
  overflow: hidden;
  position: relative;
  padding: 25px;
  background: var(--white);
  width: 100%;
}

.marquee-wrapper, .marquee {
  display: flex;
  width: fit-content;
}

.marquee { animation: scroll 20s linear infinite; }
.marquee img { margin: 0 30px; height: 40px; }
.marquee img:hover { filter: brightness(0.1); }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   ABOUT / CONTENT SECTIONS
   ============================================================ */
.left {
  position: relative;
  flex: 1 1 300px;
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
}

.right { flex: 1 1 300px; max-width: 600px; }

.experience-badge {
  position: absolute;
  top: 34%;
  left: 23px;
  background-color: #fff;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: var(--shadow);
  z-index: 10;
  transform: translate(-30%, -30%);
}

.experience-badge span { font-size: 2.5rem; }

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* Typography helpers */
.title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.section-text {
  font-size: 16px;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
}

/* About section */
.about-section { margin-top: 120px; }

.about-summary { padding: 60px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-media img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 20px;
}

.about-content {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 12px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.bullets li {
  margin-bottom: 10px;
  color: #444;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullets i { color: #f6a623; margin-top: 3px; }


/* ============================================================
   SERVICES (general)
   ============================================================ */
.services { display: flex; flex-direction: column; gap: 20px; }

.service { display: flex; align-items: flex-start; gap: 15px; }

.service-icon { font-size: 24px; color: var(--primary-color); }
.service-icon img { width: 40px; }

.service-content { font-size: 16px; }
.service-title { font-weight: 700; color: var(--heading-color); margin-bottom: 5px; }
.service-text { color: var(--text-color); font-size: 14px; }


/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counterSection {
  margin-top: 100px;
  background: url(../images/counterback.jpg) no-repeat center center / cover;
  position: relative;
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
}

.section-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

.section-content h1 { font-size: 3rem; color: var(--white); font-weight: 700; margin-bottom: 20px; }
.section-content p  { font-size: 1rem; margin-bottom: 50px; color: #ddd; }

.counter-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }

.counter-box { flex: 1 1 150px; min-width: 150px; }
.counter-box h2 { font-size: 2rem; color: var(--primary-color); margin-bottom: -10px; }
.counterTitle { font-size: 11px; letter-spacing: 1px; color: var(--white); }


/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-choose-section { padding: 100px 0; background: var(--gradient); }
.why-choose-left  { flex: 1 1 400px; }
.why-choose-right { flex: 1 1 500px; display: flex; flex-direction: column; gap: 20px; }
.why-description  { color: var(--gray); margin-bottom: 25px; line-height: 1.6; }

.card-custom {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  gap: 20px;
}

.card-icon {
  padding: 15px;
  border-radius: 10px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  padding: 10px;
  font-size: 35px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
}

.card-info h3 { margin: 20px 0 -2px; color: var(--heading-color); font-size: 1.1rem; }
.card-info p  { color: var(--light-text); font-size: 0.9rem; }


/* ============================================================
   SERVICES SECTION (cards)
   ============================================================ */
.services-section {
  padding: 48px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-section .title {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-section .heading {
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
  font-weight: 800;
  color: #171821;
  margin-bottom: 28px;
}

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

.services-section .services-cards {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 12px;
}

/* Card base */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Services section card overrides */
.services-section .card { background: #fff; border-radius: 20px; padding: 28px 24px; }

.services-section .card:hover {
  color: inherit !important;
  background: #fff !important;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 18, 35, 0.08);
}

/* Icon box */
.icon-box {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
  background-color: #fff;
}

.services-section .icon-box {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: transparent !important;
  color: #111;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease;
  display: grid;
}

.services-section .card:hover .icon-box { filter: brightness(0.98); }

/* Card text */
.card-title { font-size: 20px; font-weight: 600; color: #1C1C2E; margin-bottom: 10px; }
.card-text  { font-size: 15px; line-height: 1.6; color: #6b7280; }

.services-section .card-title { font-size: 24px; font-weight: 800; color: #171821; }
.services-section .card-text  { color: #5b5e6b; line-height: 1.55; }

/* Keep colours locked during hover */
.services-section .services-cards .card .card-title { color: #101223 !important; }
.services-section .services-cards .card .card-text  { color: #6b7280 !important; }
.services-section .services-cards .card:hover .card-title,
.services-section .services-cards .card:hover .card-text { color: inherit !important; }

/* Gradient card variant */
.card.gradient, .card:hover { background: var(--gradient2); color: #fff; }
.card:hover .icon-box        { background: var(--white) !important; }
.card:hover .icon-box i      { color: var(--primary-color); }
.card:hover .card-text       { color: var(--white); }
.card.gradient .icon-box     { background-color: rgba(255, 255, 255, 0.2); }
.card.gradient .card-title,
.card.gradient .card-text    { color: #fff; }
.icon-box i { font-size: 30px; }

/* Per-card brand colours (nth-child) */
.services-section .services-cards .card:nth-child(1) { --c: #3B82F6; --bg: rgba(59,130,246,.16); --bgH: rgba(59,130,246,.24); --shadow: rgba(59,130,246,.22); }
.services-section .services-cards .card:nth-child(2) { --c: #22C55E; --bg: rgba(34,197,94,.16);  --bgH: rgba(34,197,94,.24);  --shadow: rgba(34,197,94,.22); }
.services-section .services-cards .card:nth-child(3) { --c: #EF4444; --bg: rgba(239,68,68,.16);  --bgH: rgba(239,68,68,.24);  --shadow: rgba(239,68,68,.22); }
.services-section .services-cards .card:nth-child(4) { --c: #A855F7; --bg: rgba(168,85,247,.16); --bgH: rgba(168,85,247,.24); --shadow: rgba(168,85,247,.22); }

.services-section .services-cards .card:nth-child(1) { --brand: #3b6cff; }
.services-section .services-cards .card:nth-child(2) { --brand: #2fb344; }
.services-section .services-cards .card:nth-child(3) { --brand: #e03131; }
.services-section .services-cards .card:nth-child(4) { --brand: #8b5cf6; }

.services-section .services-cards .card .icon-box { background: rgba(59,108,255,.10); color: var(--brand) !important; }
.services-section .services-cards .card:nth-child(1) .icon-box { background: rgba(59,108,255,.10); }
.services-section .services-cards .card:nth-child(2) .icon-box { background: rgba(47,179,68,.12);  }
.services-section .services-cards .card:nth-child(3) .icon-box { background: rgba(224,49,49,.12);  }
.services-section .services-cards .card:nth-child(4) .icon-box { background: rgba(139,92,246,.12); }

.services-section .services-cards .card:nth-child(n) .icon-box { color: var(--c, var(--brand)) !important; }
.services-section .services-cards .card:nth-child(n):hover      { box-shadow: 0 16px 42px var(--shadow, rgba(0,0,0,.1)); }
.services-section .services-cards .card:nth-child(n):hover .icon-box { background: var(--bgH) !important; color: var(--c) !important; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: var(--gradient);
  gap: 40px;
}

.testimonial-left  { flex: 1 1 500px; max-width: 630px; }
.testimonial-right { flex: 1 1 400px; max-width: 500px; }
.testimonial-right img { width: 100%; height: auto; }
.testimonial-left p { font-size: 16px; color: #666; margin-bottom: 30px; max-width: 500px; }

.testimonial-slider-wrapper { overflow: hidden; position: relative; max-width: 100%; }
.testimonial-slider { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; will-change: transform; }

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 20px;
  min-width: 300px;
  width: 200px;
  flex: 0 0 auto;
}

.testimonial-card p { font-style: italic; color: #555; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; margin-right: 10px; }
.testimonial-author .name     { font-weight: 600; color: #1c1c3c; }
.testimonial-author .location { font-size: 12px; color: #f07c3b; text-transform: uppercase; }


/* ============================================================
   PRICING
   ============================================================ */
.priceSection { text-align: center; padding: 100px 0; }
.priceSection .pricing-container { align-items: stretch; }

.pricing-container {
  width: min(1200px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.pricecard {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.pricecard h3    { font-size: 20px; color: var(--heading-color); margin-bottom: 10px; }
.pricecard p     { font-size: 14px; color: var(--light-text); margin-bottom: 20px; }
.pricecard .monthly { font-size: 14px; margin: 5px 0 10px; color: var(--dark-text); font-weight: 600; }
.pricecard .pkg-meta { margin: 6px 0 10px; font-weight: 600; color: #1c1c1c; }
.pricecard .note { margin-top: 10px; }

.pricecard h3, .pricecard p, .pricecard .monthly { text-align: center; }

.pricecard ul { text-align: left; width: 100%; max-width: 520px; margin: 20px auto 0; }
.pricecard ul li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.06); line-height: 1.6; }
.pricecard ul li:last-child { border-bottom: 0; }

.price-circle {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 auto 5px;
  font-family: fantasy;
}

.price-circle span { font-size: 17px; font-family: Inter; padding-right: 5px; }

.popular { transform: scale(1.05); z-index: 1; }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  white-space: nowrap;
}


/* ============================================================
   LISTS & SHARED COMPONENTS
   ============================================================ */
ul { text-align: left; width: 100%; font-size: 15px; margin: 20px 0; padding: 0; list-style: none; }

ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  color: var(--light-text);
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

ul li .check-icon {
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.btn {
  padding: 12px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  background: transparent;
  color: #f07c3b;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto;
}

.btn:hover { background: var(--primary-color); color: #fff; }

.note { font-size: 12px; color: #aaa; margin-top: 15px; }

.center { text-align: center; }


/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: url(../images/contact.jpg);
  background-size: 100%;
}

.form-container {
  position: relative;
  background: url(../images/contact1.png);
  max-width: 700px;
  background-size: 100%;
  width: 100%;
  padding: 12px;
  text-align: center;
}

.form-content {
  position: relative;
  padding: 60px 40px;
  z-index: 2;
}

.form-content p { color: var(--light-text); margin-bottom: 30px; font-size: 16px; }

form { padding: 40px; }

.form-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.form-grid input { flex: 1 1 40%; min-width: 200px; padding: 12px; border: none; border-radius: 6px; font-size: 14px; }


/* Contact Quick */
.contact-quick { padding: 80px 0; }

.contact-quick .container { display: block !important; max-width: 1100px; margin: 0 auto; padding: 0 16px; }

.contact-quick .title {
  position: static !important; inset: auto !important; transform: none !important;
  writing-mode: initial !important; rotate: 0deg !important;
  text-align: center !important; margin: 0 auto 10px !important;
  letter-spacing: normal !important; color: var(--orange);
}

.contact-quick .heading { text-align: center !important; max-width: 780px; margin: 0 auto 38px !important; line-height: 1.3; }

.contact-quick .services-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 30px !important; align-items: stretch !important;
  justify-content: center !important; margin-top: 8px !important;
}

.contact-quick .services-cards .card {
  background: #fff; border-radius: 20px; padding: 28px;
  text-align: left; box-shadow: 0 10px 24px rgba(0,0,0,.06); transition: 0.25s ease;
}

.contact-quick .services-cards .card:hover { transform: translateY(-6px); color: inherit !important; }

.contact-quick .services-cards .icon-box {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--gradient2) !important;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}

.contact-quick .services-cards .icon-box i { font-size: 26px; color: #fff !important; opacity: 1 !important; }
.contact-quick .services-cards .icon-box,
.contact-quick .services-cards .card:hover .icon-box { background: var(--gradient2) !important; transform: none !important; }
.contact-quick .services-cards .card .card-title  { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #1c1c2e !important; }
.contact-quick .services-cards .card:hover .card-title { color: #1c1c2e !important; }
.contact-quick .services-cards .card .card-text   { color: #555; line-height: 1.6; margin-bottom: 18px; }
.contact-quick .commonBtn { display: inline-block; width: auto; }

/* Social-specific icon colours */
.card.whatsapp  .icon-box, .contact-quick .services-cards .card.whatsapp  .icon-box,
.contact-quick .services-cards .card.whatsapp:hover  .icon-box { background: linear-gradient(135deg, #25d366, #128c7e) !important; }
.card.mail      .icon-box, .contact-quick .services-cards .card.mail      .icon-box,
.contact-quick .services-cards .card.mail:hover      .icon-box { background: linear-gradient(135deg, #1d9bf0, #1877d4) !important; }
.card.instagram .icon-box, .contact-quick .services-cards .card.instagram .icon-box,
.contact-quick .services-cards .card.instagram:hover .icon-box { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4) !important; }

.card.instagram .icon-box i,
.card.mail      .icon-box i,
.card.whatsapp  .icon-box i { color: #fff !important; }

.contact-quick .card.whatsapp  .commonBtn { background: linear-gradient(135deg, #25d366, #128c7e) !important; }
.contact-quick .card.mail      .commonBtn { background: linear-gradient(135deg, #1d9bf0, #1877d4) !important; }
.contact-quick .card.instagram .commonBtn { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4) !important; }
.contact-quick .card.whatsapp .commonBtn:hover,
.contact-quick .card.mail     .commonBtn:hover,
.contact-quick .card.instagram.commonBtn:hover { opacity: 0.9; }

/* Contact form section */
.contact-form-section { padding: 80px 0; background: linear-gradient(180deg, #fff, #fff6ed); }
.contact-form-grid { display: grid; grid-template-columns: 1.1fr 1.2fr; gap: 48px; align-items: start; }

.form-info .title    { color: #ff8a2b; font-size: 14px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.form-info .heading  { font-size: clamp(28px, 3.3vw, 40px); line-height: 1.15; color: #211b3a; margin-bottom: 12px; }
.form-info .subtext  { color: #666; margin-bottom: 20px; }

.mini-contacts { list-style: none; padding: 0; margin: 0; }
.mini-contacts li { display: flex; align-items: center; gap: 10px; color: #433f58; margin: 10px 0; }
.mini-contacts i   { color: #ff8a2b; }
.mini-contacts a   { color: inherit; text-decoration: underline; }

.form-card { background: #fff; border-radius: 18px; box-shadow: 0 20px 40px rgba(28,24,47,.08); padding: 28px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }

.form-field label { display: inline-block; font-weight: 600; margin-bottom: 8px; color: #2b2742; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 14px; border-radius: 12px;
  border: 1.5px solid #e7e6f0; background: #fff;
  font: inherit; color: #2b2742;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0; border-color: #ff8a2b;
  box-shadow: 0 0 0 3px rgba(255,138,43,.18);
}

.checkbox { display: flex; align-items: flex-start; gap: 10px; color: #555; margin: 6px 0 12px; user-select: none; }
.checkbox input { margin-top: 2px; }

.error      { color: #d13b3b; font-size: 13px; min-height: 18px; margin: 6px 0 0; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.form-status  { font-size: 14px; color: #2b2742; }

.hp { position: absolute !important; left: -9999px !important; height: 0 !important; width: 0 !important; opacity: 0 !important; pointer-events: none !important; }

.contact-map { margin-top: 24px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.contact-map iframe { width: 100%; height: 280px; border: 0; }


/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  background-color: var(--primary-color); color: var(--white);
  border: 3px solid var(--primary-color); padding: 10px 14px;
  font-size: 16px; border-radius: 50px; cursor: pointer;
  display: none; box-shadow: 0 4px 10px rgba(0,0,0,.2); transition: all 0.3s ease;
}

#backToTop:hover { background: var(--white); color: var(--primary-color); }


/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--white); padding: 60px 20px 20px; color: #333; }

footer a { color: #333; text-decoration: none; transition: 0.2s ease; font-weight: 500; }
footer a:hover { color: #f6a623; }

.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.footer-section   { flex: 1 1 200px; margin: 20px; }

.footer-logo { font-size: 24px; font-weight: 700; color: #2e2751; display: flex; align-items: center; gap: 10px; }
.footer-section p  { font-size: 14px; margin: 15px 0; color: #666; }
.footer-section h4 { margin-bottom: 10px; color: var(--dark-text); }

.social-icons a {
  display: inline-block; margin-right: 10px; background: var(--primary-color);
  padding: 8px; border-radius: 4px; width: 40px; height: 40px;
  text-align: center; color: var(--white);
}

.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 8px; font-size: 14px; border: none; color: #444; cursor: pointer; }
.footer-section ul li:hover { color: var(--primary-color); }

.newsletter input[type="email"] { padding: 10px; width: 100%; border-radius: 4px; border: 1px solid #ddd; margin-bottom: 20px; }

.footer-bottom { text-align: center; padding-top: 20px; font-size: 13px; color: var(--light-text); }
.footer-bottom span { margin: 0 8px; color: var(--primary-color); }


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: #f8f8f8 !important;
  background-image: none !important;
  position: relative; overflow: hidden;
  padding: 84px 20px; text-align: center;
}

.cta-section::after,
.cta-section::before        { content: none !important; display: none !important; }
.cta-section [class*=blob],
.cta-section [class*=shape],
.cta-section img[alt*=shape]{ display: none !important; }

.cta-wrap { max-width: 760px; margin: 0 auto; }
.cta-section p { margin: 0 0 28px; font-size: 18px; color: #444; }

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cta-secondary {
  display: inline-block; padding: 12px 18px;
  border: 1px solid rgba(0,0,0,.15); border-radius: 999px;
  font-weight: 600; text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta-secondary:hover { transform: translateY(-1px); background: #fff; }
.cta-note { display: block; margin-top: 14px; font-size: 14px; color: #777; }

/* CTA Banner */
.cta-banner { background: var(--gradient2); color: #fff; padding: 70px 0; text-align: center; }

.cta-banner .cta-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 16px; display: block; text-align: center; }
.cta-banner .cta-heading  { font-size: 32px; line-height: 1.2; margin: 0 0 10px; }
.cta-banner .cta-text     { max-width: 760px; margin: 0 auto 22px; opacity: 0.95; }
.cta-banner .cta-btn      { display: inline-block; padding: 14px 32px; background: #fff; color: #1c1c2e; border-radius: 12px; font-weight: 700; }
.cta-banner .cta-btn:hover{ filter: brightness(0.92); }


/* ============================================================
   ABOUT HERO
   ============================================================ */
.about-hero-section { padding: 80px 0 60px; background: #f8f8f8; }

.about-hero-section .about-hero-wrap { display: block !important; max-width: 960px; margin: 0 auto; text-align: center; }

.about-hero-section .breadcrumb {
  display: flex !important; justify-content: center; align-items: center;
  gap: 8px; margin: 0 auto 12px; font-size: 14px; color: #666;
}

.about-hero-section .breadcrumb a     { color: #4b3f72; text-decoration: none; font-weight: 500; }
.about-hero-section .breadcrumb a:hover { text-decoration: underline; }
.about-hero-section .breadcrumb .sep  { color: #aaa; }
.about-hero-section .breadcrumb .current { color: #999; }

.about-hero-section .heading { font-size: 42px; font-weight: 700; margin: 8px 0 12px; color: #1c1c1c; }
.about-hero-section .subtext { font-size: 18px; color: #555; max-width: 680px; margin: 0 auto; line-height: 1.5; }


/* ============================================================
   COACH SECTION
   ============================================================ */
.coach-section { padding: 90px 0; background: #fff; }

.coach-wrapper { display: flex; align-items: center; gap: 60px; }
.coach-image img { width: 100%; max-width: 420px; border-radius: 12px; }

.coach-content .sub-title { color: #f5883a; font-weight: 600; margin-bottom: 12px; }
.coach-content .heading   { font-size: 32px; margin-bottom: 18px; color: #1c1c1c; }
.coach-content .coach-text{ color: #555; line-height: 1.6; margin-bottom: 25px; }

.coach-highlights { list-style: none; padding: 0; margin: 0 0 30px; }
.coach-highlights li { margin-bottom: 10px; font-size: 15px; color: #333; }
.coach-highlights i  { color: #f5883a; margin-right: 8px; }


/* ============================================================
   APPROACH SECTION
   ============================================================ */
.approach-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #fff7ee 0, #ffe8cc 100%);
  text-align: center;
}

.approach-section .container { display: block !important; max-width: 1140px; }

.approach-section .title,
.approach-section .heading { display: block; text-align: center; max-width: 780px; margin: 0 auto; }

.approach-section .title   { margin-bottom: 6px; color: #f5883a; font-weight: 600; letter-spacing: 0.3px; }
.approach-section .heading { font-size: 32px; color: #1c1c1c; margin-bottom: 22px; }

.approach-grid {
  margin-top: 10px; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px; align-items: stretch;
}

.approach-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px; padding: 24px; text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.approach-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,.08); }

.approach-card .icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,136,58,.14);
  display: grid; place-items: center; margin-bottom: 14px;
}

.approach-card .icon-box i { font-size: 22px; color: #f5883a; }
.approach-card h3 { font-size: 20px; line-height: 1.3; margin: 6px 0 10px; color: #1c1c1c; }
.approach-card p  { color: #5a5a5a; line-height: 1.7; }


/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { padding: 80px 0; background: #fff; text-align: center; }
.process-section .container { display: block !important; max-width: 1140px; margin: 0 auto; text-align: center; }

.process-section .title,
.process-section .heading { display: block; margin: 0 auto; text-align: center; max-width: 780px; }

.process-section .title   { margin-bottom: 6px; color: #f5883a; font-weight: 600; letter-spacing: 0.3px; }
.process-section .heading { font-size: 28px; color: #1c1c1c; margin-bottom: 22px; }

.process-grid {
  margin-top: 8px; display: grid; gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: left;
}

.process-card {
  height: 100%; background: #fff; border-radius: 16px; padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.process-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.08); }
.process-card h3 { font-size: 18px; margin: 4px 0 8px; color: #1c1c1c; }
.process-card p  { color: #555; line-height: 1.7; }

.step-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(245,136,58,.12); color: #f5883a;
  font-weight: 700; display: grid; place-items: center; margin-bottom: 12px;
}

.process-cta { margin-top: 24px; text-align: center !important; }


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 70px 0; background: #fff; }
.faq-inner   { max-width: 900px; margin: 0 auto; }

/* Shared FAQ overrides */
.faq-section .container { display: block !important; max-width: 980px; margin: 0 auto; text-align: center; }

.faq-section .title,
.faq-section .heading { display: block !important; text-align: center !important; margin: 0 auto; max-width: 760px; }

.faq-section .title   { margin-bottom: 6px !important; color: #f5883a; font-weight: 600; letter-spacing: 0.3px; }
.faq-section .heading { font-size: 28px; color: #1c1c1c; margin-bottom: 22px !important; }

.faq-sub  { color: #555; margin: 0 auto 22px; max-width: 720px; }
.faq-intro{ max-width: 760px; margin: 0 auto 24px; color: #555; line-height: 1.7; text-align: center; }

.faq-list {
  max-width: 880px; margin: 10px auto 0 !important;
  display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; text-align: left;
}

.faq-item {
  background: #fff; border: 1px solid #eee; border-radius: 14px;
  overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.faq-item[open]    { border-color: #f3c49b; box-shadow: 0 10px 24px rgba(245,136,58,.12); }

.faq-item > summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  font-weight: 600; color: #1c1c1c; position: relative;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
  content: "+"; position: absolute; right: 18px; top: 18px;
  font-size: 20px; color: #f5883a; transition: transform 0.2s ease;
}

.faq-item[open] > summary::after { content: "–"; transform: scale(1.1); }
.faq-item .answer { padding: 0 20px 18px; color: #555; line-height: 1.7; }

/* JS-less accordion */
.jsless-accordion { max-width: 880px; margin: 10px auto 0; display: grid; gap: 12px; text-align: left; }

.faq-toggle { position: absolute; opacity: 0; pointer-events: none; }

.faq-summary {
  display: block; padding: 18px 52px 18px 20px;
  font-weight: 600; color: #1c1c1c; cursor: pointer; position: relative;
}

.faq-summary::after { content: "+"; position: absolute; right: 18px; top: 18px; font-size: 20px; color: #f5883a; transition: transform 0.2s ease; }
.faq-toggle:checked + .faq-summary::after { content: "–"; transform: scale(1.1); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.2s ease; padding: 0 20px; color: #555; line-height: 1.7; }
.faq-toggle:checked ~ .faq-answer { padding: 0 20px 18px; max-height: 500px; }

.faq-cta { margin-top: 40px !important; text-align: center; }
.faq-cta .commonBtn { display: inline-block; padding: 14px 28px; }


/* ============================================================
   FIT SECTION
   ============================================================ */
.fit-section { padding: 70px 0; background: #f9f7f4; }
.fit-inner   { max-width: 1100px; margin: 0 auto; }
.fit-section .heading { text-align: center; font-size: 28px; margin-bottom: 8px; }
.fit-sub     { text-align: center; color: #555; margin: 0 auto 26px; max-width: 720px; }

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

.fit-card {
  position: relative; background: #fff; border-radius: 16px; padding: 24px 22px 20px;
  box-shadow: 0 12px 26px rgba(0,0,0,.06); transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.fit-popular    { outline: 2px solid rgba(245,136,58,.25); }

.fit-badge { position: absolute; top: 14px; right: 14px; font-size: 12px; padding: 4px 8px; border-radius: 999px; background: rgba(245,136,58,.12); color: #f5883a; font-weight: 700; }
.fit-icon  { font-size: 28px; line-height: 1; margin-bottom: 8px; }

.fit-card h3 { font-size: 20px; margin: 6px 0 10px; color: #1c1c2e; }
.fit-card ul { margin: 0 0 16px; padding-left: 18px; }
.fit-card li { margin: 6px 0; color: #333; }

.fit-btn { display: inline-block; padding: 12px 18px; border-radius: 10px; background: #f3f3f6; color: #1c1c2e; font-weight: 600; }
.fit-btn:hover { filter: brightness(0.97); }
.fit-btn-primary { background: var(--gradient2); color: #fff; border: none; }


/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-section { padding: 70px 0; background: #fff; }
.compare-inner   { max-width: 1100px; margin: 0 auto; }
.compare-head    { text-align: center; margin-bottom: 22px; }
.compare-head .heading { font-size: 28px; margin-bottom: 8px; }
.compare-sub { color: #555; margin: 0 auto; max-width: 720px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.06);
  border-radius: 14px; overflow: hidden;
}

.compare-table td,
.compare-table th { padding: 16px 14px; text-align: center; border-bottom: 1px solid #eee; font-size: 15px; }
.compare-table thead th    { background: #f8f8fa; font-weight: 700; color: #1c1c1c; }
.compare-table .feature-col{ text-align: left; width: 38%; }
.compare-table .feature    { text-align: left; color: #333; font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .is-popular { position: relative; color: #1c1c1c; }
.compare-table .badge { display: inline-block; margin-left: 6px; font-size: 12px; padding: 4px 8px; border-radius: 999px; background: rgba(245,136,58,.14); color: #f5883a; font-weight: 700; }

.compare-cta { text-align: center; margin-top: 32px; }
.compare-cta .commonBtn { display: inline-block; padding: 14px 32px; }


/* ============================================================
   SERVICE PAGE SECTIONS
   ============================================================ */
.service-section { padding: 80px 0; background: #fff; }
.service-section.alt { background: linear-gradient(180deg, #fff7ee 0, #ffebd3 100%); }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.service-media { display: flex; align-items: center; justify-content: center; }
.service-media img { max-width: 100%; height: 420px; object-fit: contain; display: block; }

.service-content .title   { color: #f5883a; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 8px; }
.service-content .heading { font-size: 28px; color: #1c1c1c; margin-bottom: 12px; }
.service-content .section-text { color: #555; line-height: 1.7; margin-bottom: 16px; }

.service-list { list-style: none; padding: 0; margin: 0 0 20px; }
.service-list li { display: flex; gap: 10px; align-items: flex-start; color: #444; margin-bottom: 10px; }
.service-list i  { color: #f5883a; margin-top: 3px; }


/* ============================================================
   BOOKING
   ============================================================ */
.booking-hero {
  background: linear-gradient(90deg, #f8c988 0, #ff8f1f 100%);
  color: #fff; border-radius: 0 0 36px 36px;
}

.booking-hero__inner {
  max-width: 1200px; margin: 0 auto; padding: 72px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.booking-hero h1 { margin: 0; font-size: 48px; line-height: 1.15; font-weight: 800; }
.booking-hero p  { margin: 0; font-size: 22px; line-height: 1.5; max-width: 560px; text-align: right; }

.booking-form { padding: 48px 16px; background: #fff7ef; }

.booking-form__wrapper {
  max-width: 1100px; margin: 0 auto; padding: 40px 36px;
  background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.booking-form__title { margin: 0 0 24px; font-size: 28px; font-weight: 700; }
.booking-form__grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.booking-form__group--full { grid-column: 1 / -1; }
.booking-form__label { display: block; font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #222; }
.req { color: #ff7b1f; }

.booking-form__control,
.booking-form__wrapper input,
.booking-form__wrapper select,
.booking-form__wrapper textarea {
  display: block !important; width: 100% !important; box-sizing: border-box;
  background: #fafafa; border: 1px solid #e6e6e6; border-radius: 12px;
  font-size: 16px; padding: 14px; outline: 0; transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form__control:focus { border-color: #ff8f1f; box-shadow: 0 0 0 3px rgba(255,143,31,.15); }

.package-options { display: flex; gap: 18px; flex-wrap: wrap; }

.package-option {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px;
  background: #fafafa; border: 1px solid #ececec; border-radius: 12px; cursor: pointer; user-select: none;
}

.package-option input { accent-color: #ff8f1f; }
.booking-form__actions { text-align: right; }

.booking-btn {
  background: linear-gradient(90deg, #ffa54a, #ff7b1f); color: #fff;
  border: 0; border-radius: 12px; padding: 15px 28px; font-size: 17px;
  font-weight: 700; cursor: pointer; transition: transform 0.05s ease, opacity 0.2s ease;
}

.booking-btn:hover  { opacity: 0.92; }
.booking-btn:active { transform: translateY(1px); }

.booking-form .checkbox {
  display: inline-flex !important; align-items: flex-start !important;
  justify-content: flex-start !important; gap: 12px !important;
  width: 100% !important; max-width: 720px !important;
  margin-top: 8px !important; text-align: left !important;
}

.booking-form .checkbox input[type="checkbox"] { width: 18px !important; height: 18px !important; margin: 3px 0 0 !important; flex: 0 0 18px !important; }
.booking-form .checkbox span { display: block !important; flex: 1 1 auto !important; width: auto !important; max-width: none !important; margin: 0 !important; line-height: 1.6 !important; text-align: left !important; }

/* Step indicator */
.step { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.45; transition: 0.3s ease; }
.step-label { font-weight: 700; font-size: 20px; color: #9a9aa1; transition: color 0.2s ease; }


/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-section {
  min-height: 100vh; padding: 10px 20px 60px;
  display: flex; align-items: flex-start; justify-content: center;
}

.checkout-wrap { width: 100%; display: flex; justify-content: center; padding: 80px 20px; }

.checkout-card {
  max-width: 680px; width: 100%; background: #fff;
  border-radius: 20px; padding: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08); margin-top: 0 !important;
}

.checkout-badge  { font-size: 14px; color: #777; display: block; margin-bottom: 10px; }
.checkout-title  { font-size: 28px; margin-bottom: 10px; }
.checkout-price  { font-size: 24px; font-weight: 700; margin-bottom: 15px; }
.checkout-desc   { margin-bottom: 25px; color: #555; }

.checkout-list { list-style: none; padding: 0; margin-bottom: 30px; }
.checkout-list li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 15px; }

.checkout-actions { margin-top: 20px; }
.checkout-btn { background: #ff7a00; color: #fff; border: none; padding: 14px 24px; border-radius: 8px; font-size: 16px; cursor: pointer; margin-right: 15px; }
.checkout-btn:hover { opacity: 0.9; }

.checkout-back  { font-size: 14px; color: #666; }
.checkout-note  { margin-top: 25px; font-size: 13px; color: #777; }
.checkout-links { margin-top: 15px; font-size: 13px; }

.payment-badges { margin-top: 24px; text-align: center; }
.payment-badges-title { display: block; font-size: 14px; color: #ddd; margin-bottom: 12px; }
.payment-badges-row { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.payment-badge-logo { height: 28px; width: auto; object-fit: contain; }


/* ============================================================
   TERMS PAGE
   ============================================================ */
.terms-section { padding: 80px 0; }
.terms-section .container { display: block !important; max-width: 980px; margin: 0 auto; }
.terms-section .heading { text-align: center; margin-bottom: 12px !important; }
.terms-section > .container > .section-text { text-align: center; max-width: 820px; margin: 0 auto 28px !important; }

.terms-content {
  background: rgba(255,255,255,.55); border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px; padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06); backdrop-filter: blur(6px);
}

.terms-title { margin: 26px 0 10px; font-size: 22px; line-height: 1.25; }
.terms-section .section-text { line-height: 1.85; margin-bottom: 14px; }

.terms-section .service-list { list-style: none; padding-left: 0; margin: 10px 0 18px !important; }
.terms-section .service-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.terms-section .service-list li:last-child { border-bottom: 0; }
.terms-section .service-list i { margin-top: 2px; color: #f5883a; }

.terms-note { background: rgba(245,245,245,.9) !important; border: 1px solid rgba(0,0,0,.06); }


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed; right: 28px; bottom: 28px;
  width: 72px; height: 72px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn img { width: 38px; height: 38px; display: block; }
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 34px rgba(0,0,0,.22); }

.desktopCTA { /* toggled via media query below */ }


/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* ---- ≥ 1400px ---- */
@media (min-width: 1400px) {
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---- ≥ 1024px (desktop pricing) ---- */
@media (min-width: 1024px) {
  .pricing-container { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .pricecard { max-width: none; }
}

/* ---- ≥ 992px (desktop nav) ---- */
@media (min-width: 992px) {
  #mobileMenu { display: none !important; }
}

/* ---- ≥ 768px (tablet pricing) ---- */
@media (min-width: 768px) {
  .pricing-container { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* ---- ≤ 1200px ---- */
@media (max-width: 1200px) {
  .services-section .services-cards { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}

/* ---- ≤ 1024px ---- */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---- ≤ 992px (mobile nav) ---- */
@media (max-width: 992px) {
  #nav { display: none !important; }

  .hamburger {
    display: inline-flex;
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(255,255,255,0.7); box-shadow: 0 8px 20px rgba(0,0,0,.06);
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    cursor: pointer; flex: 0 0 auto;
  }

  .hamburger div { width: 20px; height: 2.5px; background: #1f2937; border-radius: 2px; }
}

/* ---- ≤ 980px ---- */
@media (max-width: 980px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ---- ≤ 900px ---- */
@media (max-width: 900px) {
  .about-grid, .service-grid { grid-template-columns: 1fr; }
  .coach-wrapper { flex-direction: column; text-align: center; }
  .coach-image img { max-width: 350px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-section { text-align: left; }
  .compare-table td, .compare-table th { padding: 12px 10px; font-size: 14px; }
  .compare-table .feature-col { width: auto; }
}

/* ---- ≤ 992px ---- */
@media (max-width: 992px) {
  .booking-hero__inner { flex-direction: column; text-align: center; }
  .booking-hero p { text-align: center; }
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* ---- ≤ 768px (main mobile breakpoint) ---- */
@media (max-width: 768px) {

  /* Header */
  #mainHeader { padding: 10px 18px; min-height: 70px !important; padding-top: 0 !important; padding-bottom: 0 !important; }
  .logo img   { height: 70px !important; padding-left: 14px; }
  .desktopCTA { display: none; }

  header { padding: 20px; }

  /* Container */
  .container { flex-direction: column; width: 100%; max-width: 100%; overflow-x: hidden; align-items: flex-start; gap: 18px; }

  /* Hero */
.hero {
  padding-top: 35px !important;
  margin-top: 0 !important;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

  .hero-text { order: 1; padding: 30px 0; padding-right: 0; }
  .hero-text .tag { display: inline-block; max-width: 100%; font-size: 14px; line-height: 1.3; padding: 8px 12px; border-radius: 999px; word-break: break-word; }
  .hero-text h1 { font-size: clamp(30px, 7.2vw, 44px); line-height: 1.12; letter-spacing: -0.02em; margin: 14px 0 10px; overflow-wrap: anywhere; }
  .hero-text p  { font-size: 16px; line-height: 1.55; margin-bottom: 14px; }
  .hero-text .commonBtn { margin-bottom: 10px; }
  .hero-text .play-btn  { margin-left: 0 !important; text-align: center; }

  .hero-image {
  padding-top: 70px;
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
  min-height: 620px;
}

  .hero-image .shape {
    position: absolute; width: 290px; height: 290px;
    left: 50%; bottom: 10px; transform: translateX(-50%); z-index: 1;
  }

  .heroImageWrapper {
  position: absolute;
  right: -10px;
  top: 70px;
  z-index: 2;
}

  .heroImage { position: relative !important; width: min(420px, 92vw) !important; max-width: none !important; height: auto !important; display: block; margin: 0 auto; min-height: 260px; margin-top: -20px; }

  .hero-buttons { display: flex !important; flex-direction: column !important; align-items: stretch !important; gap: 12px !important; width: 100% !important; }

  .hero-buttons a,
  .hero-buttons .commonBtn,
  .hero-buttons .secondaryBtn {
    display: flex !important; width: 100% !important; min-width: 100% !important;
    max-width: 100% !important; box-sizing: border-box !important;
    justify-content: center !important; align-items: center !important; text-align: center !important;
  }

  /* Icons */
  .heroIcon1, .heroIcon2, .heroIcon3 { width: 100px; }

  /* Layout helpers */
  .left, .right { max-width: 100%; }
  .heading { font-size: 25px; }
  .service { justify-content: center; }

  /* Cards */
  .services-cards { flex-direction: column; align-items: center; }
  .card { max-width: 90%; }

  /* Sections */
  .why-choose-section, .testimonial-section { flex-direction: column; align-items: flex-start; }
  .testimonial-left, .testimonial-right { max-width: 100%; }

  /* Pricing */
  .pricing-container { grid-template-columns: 1fr; gap: 20px; }
  .pricecard { width: 100%; max-width: 520px; margin-inline: auto; padding: 22px 18px; }
  .pricecard h3 { font-size: 22px; line-height: 1.2; }
  .pricecard .price-circle { transform: scale(0.95); }
  .priceSection .heading, .priceSection .title { text-align: center; }

  /* Form */
  .form-container { background-size: cover; background-position: center; }
  .form-content   { padding: 30px 20px; }
  form { padding: 0; }
  .form-grid { flex-direction: column; gap: 15px; }

  /* Footer */
  .footer-container { flex-direction: column; align-items: left; }

  /* Service media */
  .service-media img { height: 260px; }

  /* Booking */
  .booking-form__grid { grid-template-columns: 1fr; }
  .booking-form__group--full { grid-column: 1; }

  .package-options { display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; }
  .package-option { width: 100% !important; padding: 14px 16px !important; box-sizing: border-box !important; display: flex !important; align-items: center !important; gap: 10px !important; overflow: hidden !important; }
  .package-option input { flex: 0 0 18px !important; margin: 0 !important; }
  .package-option span  { flex: 1 !important; white-space: normal !important; word-break: break-word !important; font-size: 15px; line-height: 1.3; }

  /* About hero */
  .about-hero-section .about-hero-wrap {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    text-align: center !important; padding: 48px 16px 32px !important; gap: 10px !important;
  }

  .about-hero-section .breadcrumb {
    position: static !important; float: none !important; width: 100% !important;
    margin: 0 0 12px !important; padding: 0 !important;
    background: transparent !important; box-shadow: none !important; border: 0 !important;
    display: flex !important; flex-wrap: wrap !important; justify-content: center !important;
    font-size: 13px !important; line-height: 1.4 !important; text-align: center !important;
  }

  .about-hero-section .heading { margin: 0 0 8px !important; font-size: clamp(28px, 7vw, 36px) !important; line-height: 1.15 !important; text-align: center !important; }
  .about-hero-section .subtext { margin: 0 auto !important; padding: 0 4px !important; max-width: 90ch !important; font-size: 15.5px !important; line-height: 1.6 !important; text-align: center !important; color: #4B5563 !important; }

  /* About grid */
  .about-content .bullets { text-align: left; display: inline-block; }

  /* Terms */
  .terms-section { padding: 56px 0; }
  .terms-content  { padding: 18px; border-radius: 14px; }
  .terms-title    { font-size: 18px; }

  /* Whatsapp btn */
  .whatsapp-btn       { right: 18px; bottom: 18px; width: 64px; height: 64px; }
  .whatsapp-btn img   { width: 34px; height: 34px; }

  /* Step label */
  .step-label { font-size: 14px; }
}

/* ---- ≤ 640px ---- */
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-section { text-align: left; }
  .process-cta { text-align: center; }

  .about-hero-section { padding: 64px 0 48px; }
  .about-hero-section .heading { font-size: 34px; }

  .services-section .services-cards { grid-template-columns: 1fr; max-width: 600px; }
  .step-label { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-container { grid-template-columns: 1fr; }
}

/* ---- ≤ 420px ---- */
@media (max-width: 420px) {
  .about-hero-section .about-hero-wrap { padding: 40px 14px 28px !important; }
  .about-hero-section .breadcrumb { font-size: 12.5px !important; gap: 6px !important; }
  .about-hero-section .heading { font-size: clamp(26px, 8vw, 32px) !important; }
  .about-hero-section .subtext { font-size: 15px !important; }
}

/* ---- ≤ 380px ---- */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 28px; }
  .heroImage    { max-height: 300px; }
}

/* ACIL HERO FIX */
.hero {
  position: relative;
  overflow: hidden;
}

.hero > .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  position: relative !important;
  z-index: 2;
}

.hero-text {
  flex: 1 1 50% !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-image {
  flex: 1 1 50% !important;
  position: relative !important;
  min-height: 560px !important;
}

.heroImageWrapper {
  position: absolute !important;
  right: -10px !important;
  top: 40px !important;
  bottom: auto !important;
  z-index: 2 !important;
}

.shape {
  position: absolute !important;
  right: 20px !important;
  top: 120px !important;
  z-index: 1 !important;
}

@media (max-width: 768px) {
  .hero > .container {
    flex-direction: column !important;
  }

  .hero-text {
    order: 1 !important;
    padding: 40px 0 20px !important;
  }

  .hero-image {
    order: 2 !important;
    min-height: 420px !important;
    width: 100% !important;
  }

  .heroImageWrapper {
    top: 20px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  .heroImage {
    width: 420px !important;
    max-width: 100% !important;
  }

  .shape {
    top: 80px !important;
    right: 50% !important;
    transform: translateX(50%) scale(0.75) !important;
  }
}
@media (max-width: 768px) {
  .heroImage {
    width: 360px !important;
    max-width: 90vw !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .heroImageWrapper {
    width: auto !important;
  }
}
@media (max-width: 768px) {
  .shape {
    left: 50% !important;
    right: auto !important;
    top: 95px !important;
    transform: translateX(-50%) scale(0.75) !important;
  }
}
.priceSection .pricing-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

.priceSection .pricecard {
  width: 100% !important;
}

@media (max-width: 992px) {
  .priceSection .pricing-container {
    grid-template-columns: 1fr !important;
  }
}