:root {
  --blue: #2b7de9;
  --green: #2fb67c;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
  background: var(--bg);
  color: var(--dark);
}

/* ================= STEP 6B : MOBILE DRAWER ================= */

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mobile-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #2563eb;
}

.mobile-header .logo span span {
  color: #22c55e;
}

.mobile-header img {
  width: 32px;
  height: 32px;
}

/* Hamburger */
.menu-btn {
  width: 34px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn div {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  padding: 30px 24px;
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  z-index: 1100;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.drawer ul {
  list-style: none;
  padding: 60px 0 0;
  margin: 0;
}

.drawer li {
  margin-bottom: 26px;
}

.drawer a {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

/* Close button */
.drawer-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #2563eb;
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1050;
}

/* Toggle Logic */
#drawer-toggle:checked ~ .drawer {
  right: 0;
}

#drawer-toggle:checked ~ .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Hide drawer on desktop */
@media (min-width: 769px) {
  .mobile-header,
  .drawer,
  .drawer-overlay {
    display: none;
  }
}

/* ================= HERO (SNABBIT STYLE) ================= */

.hero {
  padding: 30px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
  color: #0f172a;
}

.hero h1 span {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  color: blue;
}

.hero p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  color: #475569;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.hero .btn {
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

/* Primary (APK) */
.hero .btn.primary {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,0.35);
}

/* Store (Snabbit style) */
.hero .btn.store {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
}

/* Illustration */
.hero-illustration {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.hero-illustration img {
  width: 100%;
  max-width: 420px;
}

/* Mobile polish */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-illustration img {
    max-width: 360px;
  }
}

/* ================= HERO STARS ================= */
.hero {
  position: relative;
  overflow: hidden;
}

/* Container */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Individual stars */
.hero-stars span {
  position: absolute;
  width: 17px;
  height: 17px;
  background: #2563eb; /* GharCare Blue */
  clip-path: polygon(
    50% 0%,
    60% 40%,
    100% 50%,
    60% 60%,
    50% 100%,
    40% 60%,
    0% 50%,
    40% 40%
  );
  opacity: 0.8;
  animation: blinkStar 2.0s ease-in-out infinite;
  box-shadow:
    0 0 10px rgba(37, 99, 235, 0.7),
    0 0 18px rgba(59, 130, 246, 0.5);
}

/* Star positions */
.hero-stars span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-stars span:nth-child(2) { top: 28%; right: 14%; animation-delay: 0.8s; }
.hero-stars span:nth-child(3) { bottom: 32%; left: 20%; animation-delay: 1.6s; }
.hero-stars span:nth-child(4) { bottom: 22%; right: 22%; animation-delay: 2.2s; }

/* Blink animation */
@keyframes blinkStar {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}


/* ================= BUTTONS ================= */

.btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}

.secondary {
  background: #ffffff;
  color: var(--dark);
  border: 1px solid #cbd5e1;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .brand-text {
    font-size: 24px;
  }
}

/* ================= ONE BOOKING MANY TASKS ================= */

.services-slider-section {
  padding: 30px 16px;
  background: linear-gradient(
    180deg,
    #1e40af 0%,   /* Deep Blue */
    #0ea5a4 50%,  /* Teal */
    #22c55e 100%  /* Green */
  );
  text-align: center;
}

/* Title */
.services-title {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 34px;
}

/* Highlight word */
.services-title span {
  color: #34f5a5; /* GharCare Green */
}

/* Slider */
.services-slider {
  overflow: hidden;
  width: 100%;
}

/* Track */
.services-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide-left 22s linear infinite;
}

/* Card */
.service-card {
  width: 170px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.service-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

/* Label */
.service-card span {
  display: block;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* MORE CARD */
.more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #2563eb,
    #22c55e
  );
}

.more-text {
  color: #ffffff;
  text-align: center;
}

.more-text strong {
  font-size: 32px;
  display: block;
}

.more-text span {
  font-size: 14px;
  opacity: 0.95;
}

/* Animation */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= SLIDER ================= */

:root {
  --blue: #2563eb;
  --green: #22c55e;
  --dark: #0f172a;
  --muted: #475569;
}

/* SECTION */
.how-section {
  padding: 20px 16px;
  max-width: 420px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.how-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
}

.how-title span {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SLIDER */
.how-slider {
  position: relative;
  height: 380px;
}

/* SLIDE */
.how-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s ease;
  pointer-events: none;
}

.how-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* CARD */
.how-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* IMAGE */
.how-image {
  height: 180px;
  background: linear-gradient(135deg, #ecfeff, #f0fdf4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.how-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

/* CONTENT */
.how-content {
  text-align: left;
  margin-top: 18px;
}

.step-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.how-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--dark);
}

.how-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* DOTS */
.how-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.dot.active {
  background: linear-gradient(135deg, var(--blue), var(--green));
  width: 18px;
  border-radius: 6px;
} 

/* ================= TRUST SECTION ================= */

.trust-section {
  padding: 10px 10px 40px;   /* 👈 VERY IMPORTANT (less top gap) */
  max-width: 420px;          /* Mobile-friendly width */
  margin: auto;
  text-align: center;
}

/* TITLE */
.trust-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;       /* Less space below title */
}

.trust-title span {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID → ALWAYS 2 x 2 */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 👈 FORCE 2 PER ROW */
  gap: 14px;                              /* Compact gap */
}

/* CARD */
.trust-card {
  background: #ffffff;
  border-radius: 18px;       /* Slightly smaller radius */
  padding: 20px 12px;        /* Compact padding */
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover (subtle) */
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* NUMBER */
.trust-number {
  font-size: 24px;           /* Smaller for compact look */
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LABEL */
.trust-label {
  margin-top: 6px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  line-height: 1.4;
}



/* ================= SNABBIT STYLE TESTIMONIALS ================= */

.snabbit-testimonials {
  padding: 10px 16px;
  text-align: center;
  background: #f8fafc;
}

/* Title */
.snabbit-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 36px;
  color: #0f172a;
}

.snabbit-title span {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slider viewport */
.snabbit-slider {
  max-width: 380px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

/* Sliding track */
.snabbit-track {
  display: flex;
  transition: transform 0.7s ease;
  will-change: transform;
}

/* Each slide */
.snabbit-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 460px;                /* 🔥 FIXED HEIGHT */
  border-radius: 28px;
  overflow: hidden;
  background: #e5e7eb;
}

/* Background image */
.snabbit-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;  /* 🔥 FACE SAFE */
  display: block;
}

/* Quote card */
.snabbit-quote {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 18px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  text-align: left;
}

/* Quote text */
.snabbit-quote p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 14px;
}

/* User row */
.snabbit-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.snabbit-user strong {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

/* City pill */
.city {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}


/* ================= VIDEO SLIDER ================= */

.video-section {
  padding: 70px 16px;
  text-align: center;
}

.video-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 26px;
  color: #0f172a;
}

.video-title span {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.video-slider {
  position: relative;
  max-width: 360px;
  margin: auto;
  overflow: hidden;
}

.video-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}

.video-slide {
  width: 100%;
  flex-shrink: 0;
}

.video-slide video {
  width: 100%;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Arrows */
.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-size: 26px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.video-arrow.left { left: -12px; }
.video-arrow.right { right: -12px; }

.video-slide {
  position: relative;
}

/* Transparent swipe layer */
.video-swipe-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* Video stays interactive */
.video-slide video {
  position: relative;
  z-index: 1;
}

/* ================= WHY GHARCARE ================= */

.why-section {
  padding: 5px 16px;
  text-align: center;
}

.why-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 28px;
}

.why-title span {
  background: linear-gradient(135deg, #2b7de9, #2fb67c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID: 2 cards per row */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ 2 in line */
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 14px 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  text-align: center;
}

/* Image */
.why-card img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Text */
.why-card p {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
}

/* Desktop polish */
@media (min-width: 768px) {
  .why-grid {
    gap: 22px;
  }

  .why-card {
    padding: 24px 20px 26px;
  }

}
/* ================= FAQs ================= */

.faq-section {
  padding: 4px 16px;
  background: #f8fafc;
}

.faq-title {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #2b7de9, #2fb67c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-list {
  max-width: 720px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Arrow */
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  position: relative;
}

.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #2b7de9;
  border-bottom: 2px solid #2fb67c;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 22px 18px;
}

.faq-item.active .faq-icon::before {
  transform: rotate(-135deg);
}

/* ================= FOOTER CTA – GHARCARE ================= */

.footer-cta {
  padding: 10px 1px;
  background: #eef4ff;
}

/* Main box */
.cta-box {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: linear-gradient(
    180deg,
    #1d4ed8 0%,
    #2563eb 35%,
    #22c55e 100%
  );

  border-radius: 40px 40px 0 0;  /* rounded only on top */
  padding: 56px 22px 48px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;

  box-shadow:
    0 -30px 80px rgba(37, 99, 235, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;                /* 🔥 full width */
  border-radius: 40px 40px 0 0;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
}

/* Glow */
.cta-box {
  box-shadow:
    0 50px 120px rgba(37, 99, 235, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

/* Headings */
.cta-box h3 {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  opacity: 0.9;
}

.cta-box h2 {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.highlight {
  position: relative;
  color: #e0f2fe;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: #22c55e;
  border-radius: 999px;
}

/* Subtitle */
.cta-box p {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ================= STORE BUTTONS ================= */

.store-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.store-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.store-btn img {
  width: 28px;
}

.store-btn span {
  font-size: 11px;
  line-height: 1.2;
}

.store-btn strong {
  font-size: 14px;
}

/* Divider */
.cta-box hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 34px 0;
}

/* ================= POLICY LINKS ================= */

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  font-size: 14px;
  text-align: left;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* ================= COPYRIGHT ================= */

.footer-copy {
  padding-bottom: 1px;
  font-size: 13px;
  opacity: 0.6;
}

/* ================= BIG FLOATING STARS ================= */

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkles span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.95);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  animation: floatSparkle 7s ease-in-out infinite;
}

.sparkles span:nth-child(1) { top: 18%; left: 10%; }
.sparkles span:nth-child(2) { top: 30%; right: 12%; animation-delay: 1.5s; }
.sparkles span:nth-child(3) { bottom: 28%; left: 18%; animation-delay: 3s; }
.sparkles span:nth-child(4) { bottom: 20%; right: 22%; animation-delay: 4.5s; }

/* Animation */
@keyframes floatSparkle {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-18px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.7; }
}

/* ================= MOBILE TUNING ================= */

@media (max-width: 600px) {
  .cta-box h2 {
    font-size: 30px;
  }
}
