/* ═══════════════════════════════════════════════════════════════
   EDUSYNC – Home Page CSS
   Aesthetic: African EdTech Premium
   Fonts: Playfair Display (display) + DM Sans (body)
   Palette: Deep Navy · Amber Gold · Forest Green · Warm Cream
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ───────────────────────────── CSS Variables ───────────────────────────── */
:root {
  /* Palette */
  --navy:        #0D1B2A;
  --navy-mid:    #1A3A5C;
  --amber:       #F4A261;
  --amber-deep:  #E76F51;
  --green:       #52B788;
  --green-light: #74C69D;
  --cream:       #FAF6EF;
  --cream-dark:  #F0EAE0;
  --white:       #FFFFFF;
  --text:        #1A2332;
  --text-muted:  #5E6E82;
  --border:      rgba(13,27,42,0.10);
  --shadow-sm:   0 2px 12px rgba(13,27,42,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg:   0 24px 64px rgba(13,27,42,0.16);

  /* Theme overrides (from DB settings) */
  --primary-color:            var(--green);
  --secondary-color:          var(--navy);
  --secondary-color1:         var(--navy-mid);
  --primary-background-color: var(--cream);
  --text--secondary-color:    var(--text-muted);

  /* Type scale */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-gap: clamp(2.5rem, 5vw, 4.5rem);
  --radius:      16px;
  --radius-sm:   10px;
}

/* ───────────────────────────── 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-body) !important;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

/* ═══════════════════════════════════════════
   COMMON UTILITIES
═══════════════════════════════════════════ */

.commonMT { margin-top: var(--section-gap); }

.sectionTitle {
  text-align: center;
  margin-bottom: 3rem;
}
.sectionTitle > span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.sectionTitle .greenText {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  display: block;
  margin-bottom: 0.75rem;
}

.commonBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  background: var(--navy);
  color: var(--white) !important;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
}
.commonBtn:hover {
  background: var(--amber);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,0.35);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 0;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar .navbarWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.logo {
  height: 42px;
  width: auto;
}
.navbar .menuListWrapper {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.navbar .listItems {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar .listItems li { list-style: none; }
.navbar .listItems li a,
.navbar .dropdown-toggle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted) !important;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: transparent !important;
  border: none;
  letter-spacing: 0;
}
.navbar .listItems li a:hover,
.navbar .dropdown-toggle:hover {
  color: var(--navy) !important;
  background: var(--cream) !important;
}
.navbar .dropdown-toggle:focus { box-shadow: none !important; }
.navbar hr { margin: 0 !important; }
.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.navbar .dropdown-item {
  border-radius: 6px;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.navbar .dropdown-item:hover {
  background: var(--cream);
  color: var(--navy) !important;
}

/* Login buttons */
.loginBtnsWrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.loginBtnsWrapper .commonBtn:first-child {
  background: transparent;
  border-color: var(--border);
  color: var(--text) !important;
}
.loginBtnsWrapper .commonBtn:first-child:hover {
  background: var(--cream);
  border-color: var(--navy);
  color: var(--navy) !important;
  box-shadow: none;
  transform: none;
}
.loginBtnsWrapper .commonBtn:last-child {
  background: var(--amber);
  color: var(--navy) !important;
  border-color: var(--amber);
}
.loginBtnsWrapper .commonBtn:last-child:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  color: var(--white) !important;
}

/* Hamburg */
.navbar .hamburg {
  display: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.5rem;
  padding: 0.25rem;
  line-height: 1;
}

/* Offcanvas mobile menu */
.offcanvas {
  max-width: 320px;
  border-left: 1px solid var(--border) !important;
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.offcanvas-body { padding: 1.5rem; }
.offcanvas-body .listItems {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.offcanvas-body .listItems li a {
  display: block;
  padding: 0.6rem 0.75rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text) !important;
  border-radius: 8px;
}
.offcanvas-body .listItems li a:hover {
  background: var(--cream);
}
.offcanvas-body .commonBtn {
  width: 100%;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.heroSection {
  position: relative;
  overflow-x: hidden;
  background: var(--navy);
}
.heroSection .linesBg {
  position: relative;
  overflow-x: hidden;
}
/* Geometric mesh background */
.heroSection .linesBg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(82,183,136,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(244,162,97,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 90%, rgba(26,58,92,0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Diagonal stripe accent */
.heroSection .linesBg::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: conic-gradient(from 30deg, rgba(244,162,97,0.07), rgba(82,183,136,0.07), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.heroSection .colorBg {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.heroSection .flex_column_start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  padding-right: 2rem;
  height: 100%;
}
.heroSection .commonTitle {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
}
.heroSection .commonTitle::after {
  content: '';
  display: block;
  height: 4px;
  width: 80px;
  background: var(--amber);
  border-radius: 4px;
  margin-top: 1rem;
}
.heroSection .commonDesc {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--amber);
  line-height: 1.5;
  display: block;
}
.heroSection .commonText {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  display: block;
  max-width: 520px;
}
.heroSection .d-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.heroSection .commonBtn {
  background: var(--amber);
  color: var(--navy) !important;
  border-color: var(--amber);
  font-weight: 700;
}
.heroSection .commonBtn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy) !important;
}
.heroSection .commonBtn.mx-5 {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white) !important;
  margin: 0 !important;
}
.heroSection .commonBtn.mx-5:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Hero Image */
.heroImgWrapper { display: flex; align-items: center; justify-content: center; }
.heroImg {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.4));
  animation: floatHero 6s ease-in-out infinite;
}
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.heroImg img {
  width: 100%;
  border-radius: var(--radius);
}
/* Floating info cards */
.heroImg .topRated.card,
.heroImg .textWrapper {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: none;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: floatCard 4s ease-in-out infinite;
  font-family: var(--font-body);
}
.heroImg .topRated.card {
  top: 12%;
  right: -8%;
  animation-delay: 1s;
}
.heroImg .topRated.card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.heroImg .topRated.card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.heroImg .textWrapper {
  bottom: 12%;
  left: -6%;
  animation-delay: 2s;
}
.heroImg .textWrapper span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.heroImg .textWrapper::before {
  content: '🎓';
  font-size: 1.25rem;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════ */
.features {
  background: var(--white);
}
.features .cardWrapper {
  gap: 1.25rem 0;
  row-gap: 1.25rem;
}
.features .cardWrapper .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.features .cardWrapper .card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.features .cardWrapper .card:hover::before { transform: scaleX(1); }
.features .cardWrapper .card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.features .cardWrapper .card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: hue-rotate(0deg); /* keeps original icon colors */
}
.features .cardWrapper .card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.features .view-more-feature {
  margin-top: 1rem;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
}
.features .view-more-feature:hover {
  background: var(--navy);
  color: var(--white) !important;
}

/* ═══════════════════════════════════════════
   SCHOOL LOGOS CAROUSEL
═══════════════════════════════════════════ */
.school-logo-owl-carousel .card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 0.2s;
  text-align: center;
}
.school-logo-owl-carousel .card:hover { box-shadow: var(--shadow-sm); }
.school-logo-owl-carousel h6 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════
   FEATURE SECTIONS (alternating)
═══════════════════════════════════════════ */
[class^="left-section-"],
[class^="right-section-"] {}

.right-feature-section {
  background: var(--cream);
  padding: var(--section-gap) 0;
}
.right-feature-section .sectionTitle { text-align: center; }

.tabsMainWrapper { display: flex; align-items: center; }
.tabsWrapper { width: 100%; }
.tabs { display: flex; flex-direction: column; gap: 1rem; }
.tab {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}
.tab.active,
.tab:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.tab.active::before,
.tab:hover::before { transform: scaleY(1); }
.tab span:first-child {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.tab span:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}
.contentWrapper { position: relative; }
.content-container { position: relative; }
.content { display: none; }
.content.active,
.content:first-child { display: block; }
.content img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   ABOUT US / WHY BEST
═══════════════════════════════════════════ */
.whyBest { background: var(--white); }
.whyBestTextWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.whyBestTextWrapper p:first-child {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
}
.whyBestTextWrapper p:last-child {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.whyBestPara {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.whyBest .listWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.whyBest .listWrapper span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.whyBest .listWrapper .fa-circle-check {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.whyBest .col-lg-6 > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing { background: var(--cream); padding: var(--section-gap) 0; }

.swiperWrapper {}
.commonSlider {}
.slider-content {}
.swiperDataWrapper { padding: 0 0.5rem; height: 100%; }

/* ── Single-package: fill the pricing section ───────────────── */

/* Remove float so the stage-outer expands to contain the card */
.pricing .owl-item:only-child {
  float: none !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
}
.pricing .owl-item:only-child .swiperDataWrapper {
  display: flex;
  justify-content: center;
  padding: 0;
  height: auto !important;
}
.pricing .owl-item:only-child .pricingBox {
  width: 100%;
  max-width: 720px;
  height: auto !important;
  overflow: visible !important;
}
/* Stage and outer must expand to full card height */
.pricing .owl-stage-outer {
  overflow: visible !important;
  height: auto !important;
}
.pricing .owl-stage {
  width: 100% !important;
  transform: none !important;
  height: auto !important;
  float: none !important;
}
/* Ensure the slider wrapper grows with the card */
.pricing .slider-content,
.pricing .commonSlider,
.pricing .swiperWrapper {
  height: auto !important;
  overflow: visible !important;
}

.pricingBox {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricingBox:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricingBox.premium {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  position: relative;
  overflow: hidden;
}
.pricingBox.premium::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,162,97,0.2), transparent 70%);
  pointer-events: none;
}
.pricingBox.premium:hover { transform: translateY(-12px); }

.startUpWrapper { display: flex; flex-direction: column; gap: 1rem; flex: 1; }

.badge.postpaid,
.badge.prepaid {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.badge.postpaid {
  background: rgba(82,183,136,0.15);
  color: var(--green);
}
.badge.prepaid {
  background: rgba(244,162,97,0.15);
  color: var(--amber-deep);
}
.pricingBox.premium .badge.postpaid {
  background: rgba(82,183,136,0.25);
}

.textDiv { display: flex; flex-direction: column; gap: 0.5rem; }
.textDiv .title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.pricingBox.premium .textDiv .title { color: var(--white); }
.textDiv span:not(.title) {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pricingBox.premium .textDiv span:not(.title) { color: rgba(255,255,255,0.65); }
.textDiv .days {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricingBox .listWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pricingBox .listWrapper span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
}
.pricingBox.premium .listWrapper span { color: rgba(255,255,255,0.8); }
.pricingBox .listWrapper .lineThrough {
  text-decoration: line-through;
  opacity: 0.45;
}
/* Override owl-carousel's .owl-item img { width:100% } which breaks tick icons */
.owl-carousel .owl-item .rightTickImg,
.owl-carousel .owl-item .wrongTickImg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  display: inline-block !important;
}
.rightTickImg, .wrongTickImg { width: 16px; height: 16px; flex-shrink: 0; }

.pricingBtn {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 100px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy) !important;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pricingBtn:hover {
  background: var(--navy);
  color: var(--white) !important;
}
.pricingBox.premium .pricingBtn {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy) !important;
}
.pricingBox.premium .pricingBtn:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  color: var(--white) !important;
}

/* No packages */
.text-danger { color: #dc3545 !important; font-size: 0.95rem; }

/* ═══════════════════════════════════════════
   CUSTOM PACKAGE CTA
═══════════════════════════════════════════ */
.customPack { }
.customPack .wrapper {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  overflow: hidden;
  position: relative;
}
.customPack .wrapper::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(244,162,97,0.15), transparent 70%);
  pointer-events: none;
}
.customPack .wrapper .row { align-items: center; }
.customPack .title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.customPack .desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.customPack .commonBtn {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy) !important;
  font-weight: 700;
  width: auto;
}
.customPack .commonBtn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy) !important;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faqs { background: var(--white); }
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white) !important;
}
.accordion-button {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy) !important;
  background: var(--white) !important;
  padding: 1.25rem 1.5rem;
  border: none !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--cream) !important;
  color: var(--navy) !important;
}
.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230D1B2A'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 1rem 1.5rem 1.25rem;
  background: var(--cream) !important;
}

/* ═══════════════════════════════════════════
   CONTACT / GET IN TOUCH
═══════════════════════════════════════════ */
.getInTouch { background: var(--cream); padding: var(--section-gap) 0; }
.getInTouch .wrapper { padding-top: 1rem; }
.getInTouch .card {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.getInTouch .card .sideImg.dots {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 100px;
  opacity: 0.5;
  pointer-events: none;
}
.getInTouch .card input,
.getInTouch .card textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
  display: block;
  outline: none;
  resize: vertical;
}
.getInTouch .card input:focus,
.getInTouch .card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
  background: var(--white);
}
.getInTouch .card input[type="submit"] {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 0;
}
.getInTouch .card input[type="submit"]:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,0.35);
}

/* Info boxes */
.infoBox { padding-left: 2rem; }
.infoWrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.infoWrapper:hover { box-shadow: var(--shadow-md); }
.infoWrapper .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 12px;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.infoWrapper > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.infoWrapper > div:last-child > span:first-child {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.infoWrapper > div:last-child > span:last-child {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.sideImg.lineCircle {
  width: 80px;
  opacity: 0.3;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════
   APP DOWNLOAD SECTION
═══════════════════════════════════════════ */
.ourApp {
  background: var(--white);
}
.ourApp .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 2rem 3rem;
}
.ourApp .text { display: flex; flex-direction: column; gap: 0.75rem; }
.ourApp .title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.ourApp .text span:not(.title) {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.storeImgs {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.storeImgs img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.storeImgs img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ourAppImg {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 4rem 0 0;
  margin-top: var(--section-gap);
}
footer .logo { height: 40px; filter: brightness(0) invert(1); }
.companyInfoWrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.companyInfoWrapper .commonDesc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  display: block;
  max-width: 300px;
}
.linksWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.linksWrapper .title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.linksWrapper span:not(.title) {
  font-size: 0.875rem;
}
.linksWrapper span a {
  color: rgba(255,255,255,0.65) !important;
  transition: color 0.2s;
}
.linksWrapper span a:hover { color: var(--amber) !important; }
.iconsWrapper a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.iconsWrapper a:hover { color: var(--amber) !important; }
.iconsWrapper img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) opacity(0.65);
}
footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 2.5rem 0 1.25rem;
}
.copyright {
  padding-bottom: 1.75rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.copyright .footer-text { color: rgba(255,255,255,0.35) !important; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   OWL CAROUSEL CUSTOM STYLE
═══════════════════════════════════════════ */
.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: var(--shadow-sm) !important;
  color: var(--navy) !important;
  font-size: 1.1rem !important;
  transition: all 0.2s !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
}
.owl-dots .owl-dot span {
  background: var(--border) !important;
  transition: background 0.2s !important;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: var(--navy) !important;
}

/* ═══════════════════════════════════════════
   MODALS & FORMS (registration)
═══════════════════════════════════════════ */
.modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
}
.modal-header {
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: none;
  padding: 1.5rem 2rem;
}
.modal-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}
.modal-header .btn-close { filter: brightness(0) invert(1); }
.modal-body { padding: 2rem; }
.modal-body label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.modal-body .form-control,
.modal-body .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  background: var(--cream);
}
.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
  background: var(--white);
}
.modal-body .btn-primary,
.modal-body .commonBtn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 100px;
  font-weight: 700;
}
.modal-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE – TABLET (≤ 992px)
═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .navbar .menuListWrapper {
    display: none; /* hide nav on tablet/mobile */
  }
  .navbar .hamburg { display: block; }
  .loginBtnsWrapper { gap: 0.5rem; }
  .loginBtnsWrapper .commonBtn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

  .heroSection .flex_column_start { padding-right: 0; }
  .heroImgWrapper { margin-top: 2.5rem; }
  .heroImg .topRated.card { right: 0; }
  .heroImg .textWrapper { left: 0; }

  .infoBox { padding-left: 0; margin-top: 1.5rem; }

  .ourApp .content { padding: 2rem 0 0; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 767px)
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --section-gap: clamp(2rem, 5vw, 3.5rem); }

  /* navbar */
  .navbar .navbarWrapper { height: 62px; }
  .loginBtnsWrapper .commonBtn:first-child { display: none; }

  /* hero */
  .heroSection .colorBg { padding: 2rem 0 1.75rem; }
  .heroSection .commonTitle::after { width: 56px; }
  .heroImg {
    max-width: 340px;
    margin: 0 auto;
  }
  .heroImg .topRated.card,
  .heroImg .textWrapper {
    display: none; /* hide floating cards on small screens */
  }

  /* features */
  .features .cardWrapper .card { padding: 1.25rem; }

  /* pricing */
  .pricingBox.premium { transform: none; }
  .pricingBox.premium:hover { transform: translateY(-4px); }
  .swiperDataWrapper { padding: 0 0.25rem; }

  /* custom pack */
  .customPack .wrapper { padding: 2rem 1.5rem; text-align: center; }
  .customPack .commonBtn { width: 100%; margin-top: 1.5rem; }

  /* contact */
  .getInTouch .card { padding: 1.75rem 1.25rem; }
  .infoBox { padding-left: 0; }

  /* app */
  .ourApp .content { padding: 2rem 0 0; }
  .storeImgs { justify-content: center; }

  /* footer */
  footer .col-sm-6 { margin-bottom: 2rem; }

  /* tabs */
  .tabs { gap: 0.75rem; }
  .tab { padding: 1rem 1.25rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .heroSection .commonTitle {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
  .heroSection .d-flex { flex-direction: column; }
  .heroSection .d-flex .commonBtn { width: 100%; text-align: center; }
  .loginBtnsWrapper { display: none; }
  .navbar .hamburg { display: block; }
}

/* ═══════════════════════════════════════════
   UTILITY: reverseWrapper (feature sections)
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .reverseWrapper {
    flex-direction: column-reverse;
  }
  .reverseWrapper .contentWrapper {
    margin-bottom: 2rem;
  }
  .tabsMainWrapper,
  .contentWrapper {
    width: 100%;
    max-width: 100%;
  }
}
