@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500;700;800&family=Manrope:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600;1,700&display=swap");

:root {
  --mode-toggle-bg: rgba(255, 255, 255, 0.94);
  --mode-toggle-border: rgba(15, 23, 42, 0.14);
  --mode-toggle-text: #0f172a;
  --mode-toggle-shadow: 0 12px 28px rgba(2, 6, 23, 0.14);
  --mode-toggle-dot: linear-gradient(135deg, #0f766e, #38bdf8);
}

.color-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--mode-toggle-border);
  background: var(--mode-toggle-bg);
  color: var(--mode-toggle-text);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  box-shadow: var(--mode-toggle-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.color-mode-toggle::before {
  display: none;
}

.color-mode-toggle i {
  line-height: 1;
}

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

.color-mode-toggle:hover {
  transform: translateY(-2px) scale(1.03);
}

.color-mode-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22), var(--mode-toggle-shadow);
}

.color-mode-toggle.is-dark {
  color: #ffd09b;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
}

body[data-color-mode="light"] .page_header {
  background: linear-gradient(135deg, #0f172a 0%, #0f766e 100%);
  color: #ffffff;
}

body[data-color-mode="light"] .content-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body[data-color-mode="light"] h2 {
  color: #0f172a;
  border-bottom-color: #e2e8f0;
}

body[data-color-mode="light"] h3 {
  color: #334155;
}

body[data-color-mode="light"] .permission-card,
body[data-color-mode="light"] .definition-card,
body[data-color-mode="light"] .contact-info,
body[data-color-mode="light"] .important-note {
  border-left-color: #f97316;
}

body[data-color-mode="dark"] {
  --brand-ink: #f8fafc;
  --brand-ink-soft: #b6c0cf;
  --brand-accent: #f97316;
  --brand-accent-2: #fb923c;
  --brand-accent-3: #fdba74;
  --brand-accent-deep: #fed7aa;
  --brand-bg: #05070b;
  --brand-card: #10141b;
  --brand-border: rgba(148, 163, 184, 0.2);
  --brand-surface-soft: #151a23;
  --brand-section-soft: #06090f;
  --brand-section-alt: #0b0f16;
  --brand-highlight-bg: rgba(249, 115, 22, 0.12);
  --brand-highlight-border: rgba(249, 115, 22, 0.26);
  --brand-gradient-start: #05070b;
  --brand-gradient-mid: #0b0d12;
  --brand-gradient-end: #171012;
  --brand-bg-glow-1: rgba(249, 115, 22, 0.18);
  --brand-bg-glow-2: rgba(249, 115, 22, 0.08);
  --brand-ring: rgba(249, 115, 22, 0.32);
  --brand-hero-panel-bg: linear-gradient(145deg, rgba(5, 7, 11, 0.84), rgba(15, 19, 26, 0.78));
  --brand-hero-panel-border: rgba(255, 255, 255, 0.08);
  --brand-lightbox-frame: #070a10;
  --brand-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  --brand-shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.26);
  --mode-toggle-bg: rgba(15, 19, 26, 0.92);
  --mode-toggle-border: rgba(148, 163, 184, 0.16);
  --mode-toggle-text: #f8fafc;
  --mode-toggle-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  --mode-toggle-dot: linear-gradient(135deg, #f97316, #fb923c);
  background:
    radial-gradient(circle at 84% 18%, rgba(249, 115, 22, 0.18), transparent 20%),
    radial-gradient(circle at 88% 76%, rgba(249, 115, 22, 0.1), transparent 18%),
    linear-gradient(115deg, #05070b 0%, #090c12 42%, #140f10 100%) !important;
  color: var(--brand-ink);
  font-family: "Outfit", "Manrope", sans-serif;
  font-style: italic;
  letter-spacing: -0.01em;
}

body[data-color-mode="dark"] .main-wrapper::before {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.32), rgba(249, 115, 22, 0));
  opacity: 0.18;
}

body[data-color-mode="dark"] .main-wrapper::after {
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), rgba(251, 146, 60, 0));
  opacity: 0.14;
}

body[data-color-mode="dark"] .main-wrapper,
body[data-color-mode="dark"] .section-ptb,
body[data-color-mode="dark"] .product-area,
body[data-color-mode="dark"] .priceing-package-area,
body[data-color-mode="dark"] .testimonials-section,
body[data-color-mode="dark"] .google-section,
body[data-color-mode="dark"] .press-section,
body[data-color-mode="dark"] .faq-area,
body[data-color-mode="dark"] .download-area-two,
body[data-color-mode="dark"] .project-count-area,
body[data-color-mode="dark"] .footer-area,
body[data-color-mode="dark"] .media-strip {
  background: transparent !important;
}

body[data-color-mode="dark"] .section-ptb::before,
body[data-color-mode="dark"] .product-area::before,
body[data-color-mode="dark"] .product-area::after,
body[data-color-mode="dark"] .hero-slider::after {
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.12), transparent 58%) !important;
  opacity: 0.82 !important;
}

body[data-color-mode="dark"] h1,
body[data-color-mode="dark"] h2,
body[data-color-mode="dark"] h3,
body[data-color-mode="dark"] h4,
body[data-color-mode="dark"] h5,
body[data-color-mode="dark"] h6,
body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2 {
  font-family: "Sora", "Manrope", sans-serif !important;
  font-style: italic;
  font-weight: 700 !important;
  letter-spacing: -0.05em;
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2 {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body[data-color-mode="dark"] .testimonials-header-left h2 span,
body[data-color-mode="dark"] .section-header h2 span {
  color: var(--brand-accent-3) !important;
  -webkit-text-fill-color: currentColor !important;
}

body[data-color-mode="dark"] p,
body[data-color-mode="dark"] li,
body[data-color-mode="dark"] td,
body[data-color-mode="dark"] .section-title p,
body[data-color-mode="dark"] .review-text,
body[data-color-mode="dark"] .review-meta,
body[data-color-mode="dark"] .review-card .review-meta,
body[data-color-mode="dark"] .testimonials-badge .badge-text,
body[data-color-mode="dark"] .press-headline,
body[data-color-mode="dark"] .copy_right,
body[data-color-mode="dark"] .last-updated {
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-style: italic;
  color: var(--brand-ink-soft) !important;
}

body[data-color-mode="dark"] .main-menu ul li a,
body[data-color-mode="dark"] .hero-badge,
body[data-color-mode="dark"] .button,
body[data-color-mode="dark"] .slider-btn,
body[data-color-mode="dark"] .choose-button,
body[data-color-mode="dark"] .submit-btn,
body[data-color-mode="dark"] .product-kicker,
body[data-color-mode="dark"] .partner-badge,
body[data-color-mode="dark"] .section-header h3,
body[data-color-mode="dark"] .testimonials-header-left h3,
body[data-color-mode="dark"] .testimonials-badge,
body[data-color-mode="dark"] .meal-tag,
body[data-color-mode="dark"] .press-tag,
body[data-color-mode="dark"] .partner-tags span,
body[data-color-mode="dark"] .color-mode-toggle {
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-style: italic;
}

body[data-color-mode="dark"] .header-top.inner-header {
  background: rgba(7, 10, 16, 0.84) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: none !important;
}

body[data-color-mode="dark"] .main-menu ul li a {
  background: rgba(15, 19, 26, 0.72) !important;
  border: 1px solid rgba(148, 163, 184, 0.12) !important;
  box-shadow: none !important;
  color: rgba(248, 250, 252, 0.86) !important;
  font-size: 13px;
  font-weight: 700 !important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-color-mode="dark"] .main-menu ul li.active a,
body[data-color-mode="dark"] .main-menu ul li a:hover {
  background: rgba(249, 115, 22, 0.14) !important;
  border-color: rgba(249, 115, 22, 0.34) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
}

body[data-color-mode="dark"] .main-menu ul li.menu-dropdown > ul {
  background: #0f131a !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
}

body[data-color-mode="dark"] .main-menu ul li.menu-dropdown > ul li a {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .main-menu ul li.menu-dropdown > ul li:hover > a,
body[data-color-mode="dark"] .main-menu ul li.menu-dropdown > ul li.active > a {
  background: rgba(249, 115, 22, 0.14) !important;
  border-color: rgba(249, 115, 22, 0.3) !important;
  color: #ffffff !important;
}

body[data-color-mode="dark"] .hero-badge,
body[data-color-mode="dark"] .testimonials-badge,
body[data-color-mode="dark"] .meal-tag,
body[data-color-mode="dark"] .partner-tags span,
body[data-color-mode="dark"] .press-tag,
body[data-color-mode="dark"] .hero-badge {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.28) !important;
  color: var(--brand-accent-3) !important;
  box-shadow: none !important;
}

body[data-color-mode="dark"] .hero-slider::before {
  background: linear-gradient(120deg, rgba(11, 18, 32, 0.12), rgba(11, 18, 32, 0.04));
}

body[data-color-mode="dark"] .hero-content-one .slider-text-info {
  background: var(--brand-hero-panel-bg) !important;
  border: 1px solid var(--brand-hero-panel-border) !important;
  box-shadow: var(--brand-shadow) !important;
}

body[data-color-mode="dark"] .hero-slider h1 {
  color: #ffffff !important;
}

body[data-color-mode="dark"] .hero-slider p {
  color: rgba(226, 232, 240, 0.82) !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn,
body[data-color-mode="dark"] .button,
body[data-color-mode="dark"] .choose-button,
body[data-color-mode="dark"] .submit-btn,
body[data-color-mode="dark"] .mobile-how-next,
body[data-color-mode="dark"] .sticky-cta .cta-btn.primary,
body[data-color-mode="dark"] .success-whatsapp-btn {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2)) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.22) !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn:hover,
body[data-color-mode="dark"] .button:hover,
body[data-color-mode="dark"] .choose-button:hover,
body[data-color-mode="dark"] .submit-btn:hover,
body[data-color-mode="dark"] .mobile-how-next:hover,
body[data-color-mode="dark"] .sticky-cta .cta-btn.primary:hover,
body[data-color-mode="dark"] .success-whatsapp-btn:hover {
  background: linear-gradient(135deg, #fb923c, #fdba74) !important;
  color: #ffffff !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn.secondary-btn,
body[data-color-mode="dark"] .download-buttons .button,
body[data-color-mode="dark"] .newspaper-buttons .button,
body[data-color-mode="dark"] .sticky-cta .cta-btn:not(.primary),
body[data-color-mode="dark"] .success-back-btn,
body[data-color-mode="dark"] .pricing-toggle .toggle-btn,
body[data-color-mode="dark"] .contact-tab-btn {
  background: rgba(15, 19, 26, 0.84) !important;
  color: var(--brand-ink) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  box-shadow: none !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn.secondary-btn:hover,
body[data-color-mode="dark"] .download-buttons .button:hover,
body[data-color-mode="dark"] .newspaper-buttons .button:hover,
body[data-color-mode="dark"] .sticky-cta .cta-btn:not(.primary):hover,
body[data-color-mode="dark"] .success-back-btn:hover,
body[data-color-mode="dark"] .pricing-toggle .toggle-btn:hover,
body[data-color-mode="dark"] .pricing-toggle .toggle-btn.active,
body[data-color-mode="dark"] .contact-tab-btn:hover {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.28) !important;
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .contact-tab-btn.is-active {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2)) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.22) !important;
}

body[data-color-mode="dark"] .product-block,
body[data-color-mode="dark"] .meal-card,
body[data-color-mode="dark"] .coverage-panel,
body[data-color-mode="dark"] .location-checker,
body[data-color-mode="dark"] .partner-card,
body[data-color-mode="dark"] .product-cta-panel,
body[data-color-mode="dark"] .single-service,
body[data-color-mode="dark"] .ht-service-box--one,
body[data-color-mode="dark"] .contact-info-container,
body[data-color-mode="dark"] .badge-card,
body[data-color-mode="dark"] .compare-card,
body[data-color-mode="dark"] .team-card,
body[data-color-mode="dark"] .review-card,
body[data-color-mode="dark"] .google-card,
body[data-color-mode="dark"] .press-card,
body[data-color-mode="dark"] .contact-form-block,
body[data-color-mode="dark"] .faq-area .faq-item,
body[data-color-mode="dark"] .priceing-package-area .single-priceing,
body[data-color-mode="dark"] .priceing-package-area .pricing-showcase,
body[data-color-mode="dark"] .priceing-package-area .plan-stat,
body[data-color-mode="dark"] .priceing-package-area .tiffin-lid,
body[data-color-mode="dark"] .priceing-package-area .tiffin-layer,
body[data-color-mode="dark"] .partner-form,
body[data-color-mode="dark"] .partner-highlights,
body[data-color-mode="dark"] #problem-solution .solution-panel,
body[data-color-mode="dark"] .content-wrapper {
  background: linear-gradient(180deg, rgba(15, 19, 26, 0.98) 0%, rgba(11, 14, 20, 0.98) 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.14) !important;
  box-shadow: var(--brand-shadow-soft) !important;
}

body[data-color-mode="dark"] .meal-card:hover,
body[data-color-mode="dark"] .partner-card:hover,
body[data-color-mode="dark"] .badge-card:hover,
body[data-color-mode="dark"] .compare-card:hover,
body[data-color-mode="dark"] .team-card:hover,
body[data-color-mode="dark"] .review-card:hover,
body[data-color-mode="dark"] .press-card:hover,
body[data-color-mode="dark"] .google-card:hover {
  border-color: rgba(249, 115, 22, 0.24) !important;
  box-shadow: var(--brand-shadow) !important;
}

body[data-color-mode="dark"] .coverage-ring,
body[data-color-mode="dark"] .contact-success-icon {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.26) !important;
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .coverage-list li::before,
body[data-color-mode="dark"] .meal-list li::before {
  background: var(--brand-accent-3) !important;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12) !important;
}

body[data-color-mode="dark"] .compare-before {
  border-left-color: rgba(248, 113, 113, 0.62) !important;
}

body[data-color-mode="dark"] .compare-after {
  border-left-color: rgba(249, 115, 22, 0.62) !important;
}

body[data-color-mode="dark"] .hero-slider {
  min-height: 650px;
  padding: 76px 0 66px;
}

body[data-color-mode="dark"] .hero-slider .single-slide {
  min-height: calc(100vh - 0px);
  align-items: center;
}

body[data-color-mode="dark"] .hero-video-background {
  opacity: 1;
  filter: none;
  transform: scale(1.02);
}

body[data-color-mode="dark"] .hero-slider::after {
  background:
    radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.2) 0%, transparent 50%) !important;
  opacity: 0.92 !important;
}

body[data-color-mode="dark"] .hero-content-one .row {
  justify-content: center !important;
}

body[data-color-mode="dark"] .hero-content-one [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
}

body[data-color-mode="dark"] .hero-content-one .slider-text-info {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 24px;
  background: rgba(9, 12, 18, 0.54) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.38) !important;
  text-align: center;
}

body[data-color-mode="dark"] .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08) !important;
  border: 1px solid rgba(249, 115, 22, 0.28) !important;
  color: #ff8d4d !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 14px 30px rgba(0, 0, 0, 0.18) !important;
  font-size: 13px;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-color-mode="dark"] .hero-badge::before {
  display: none;
}

body[data-color-mode="dark"] .hero-slider h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(44px, 5.8vw, 86px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.045em !important;
  text-transform: none !important;
  text-shadow: none !important;
  font-family: "Sora", "Manrope", sans-serif !important;
  font-weight: 800 !important;
}

body[data-color-mode="dark"] .hero-slider h1 .hero-accent-line {
  color: #ff7a3d !important;
  display: inline-block;
  text-shadow: 0 7px 0 rgba(95, 30, 9, 0.46);
}

body[data-color-mode="dark"] .hero-slider h1 .hero-base-line {
  color: #fffaf3 !important;
  display: inline-block;
  text-shadow: 0 7px 0 rgba(10, 12, 18, 0.82);
}

body[data-color-mode="dark"] .hero-slider p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: clamp(18px, 1.8vw, 22px) !important;
  line-height: 1.7 !important;
  color: rgba(173, 185, 203, 0.86) !important;
  text-shadow: none !important;
  font-family: "Outfit", "Manrope", sans-serif !important;
  font-weight: 500;
}

body[data-color-mode="dark"] .hero-slider .slider-button {
  justify-content: center;
  gap: 12px;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn {
  min-height: 0;
  padding: 12px 22px;
  border-radius: 999px !important;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.015em;
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.22) !important;
  font-family: "Outfit", "Manrope", sans-serif !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn.secondary-btn {
  background: rgba(8, 12, 18, 0.68) !important;
  color: #ff8d4d !important;
  border: 1px solid rgba(249, 115, 22, 0.28) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 22px rgba(0, 0, 0, 0.24) !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn.secondary-btn:hover {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.42) !important;
  color: #ffb287 !important;
}

body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2,
body[data-color-mode="dark"] .product-block-head h3,
body[data-color-mode="dark"] .partner-card h4,
body[data-color-mode="dark"] .meal-card h4,
body[data-color-mode="dark"] .coverage-meta strong,
body[data-color-mode="dark"] .about-hero-text h2,
body[data-color-mode="dark"] .contact-copy h3 {
  font-family: "Sora", "Manrope", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
}

body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2 {
  font-size: clamp(36px, 3.8vw, 56px) !important;
  line-height: 1.02 !important;
}

body[data-color-mode="dark"] .product-block-head h3,
body[data-color-mode="dark"] .about-hero-text h2,
body[data-color-mode="dark"] .contact-copy h3 {
  font-size: clamp(32px, 3.1vw, 46px) !important;
  line-height: 1.05 !important;
}

body[data-color-mode="dark"] .partner-card h4,
body[data-color-mode="dark"] .meal-card h4,
body[data-color-mode="dark"] .coverage-meta strong {
  font-size: clamp(22px, 1.95vw, 30px) !important;
  line-height: 1.12 !important;
}

body[data-color-mode="dark"] .section-title p,
body[data-color-mode="dark"] .product-block-head p,
body[data-color-mode="dark"] .partner-card p,
body[data-color-mode="dark"] .review-text,
body[data-color-mode="dark"] .about-lead,
body[data-color-mode="dark"] .contact-copy p {
  font-size: 16px !important;
  line-height: 1.78 !important;
}

body[data-color-mode="dark"] .product-kicker,
body[data-color-mode="dark"] .section-header h3,
body[data-color-mode="dark"] .testimonials-header-left h3,
body[data-color-mode="dark"] .partner-badge {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800 !important;
  font-size: 12px !important;
}

body[data-color-mode="dark"] .compare-after .compare-list li::before,
body[data-color-mode="dark"] .partner-highlights ul li::before,
body[data-color-mode="dark"] .service-text h3,
body[data-color-mode="dark"] .coverage-link,
body[data-color-mode="dark"] .location-help-link,
body[data-color-mode="dark"] .partner-meta,
body[data-color-mode="dark"] .mobile-how-skip,
body[data-color-mode="dark"] .meal-card-foot {
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .google-card img,
body[data-color-mode="dark"] .press-card img {
  background: #ffffff !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
  box-shadow: none !important;
}

body[data-color-mode="dark"] .lightbox-content {
  background-color: #070a10 !important;
  border-color: rgba(148, 163, 184, 0.14) !important;
}

body[data-color-mode="dark"] .lightbox-close {
  border-color: var(--brand-accent-3) !important;
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .lightbox-close:hover {
  background-color: var(--brand-accent-3) !important;
  color: #0b0f16 !important;
}

body[data-color-mode="dark"] .contact-form-area .form-control,
body[data-color-mode="dark"] .contact-form-area textarea,
body[data-color-mode="dark"] .location-checker-form input {
  background: rgba(6, 8, 13, 0.82) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .contact-form-area .form-control::placeholder,
body[data-color-mode="dark"] .contact-form-area textarea::placeholder,
body[data-color-mode="dark"] .location-checker-form input::placeholder {
  color: rgba(148, 163, 184, 0.76) !important;
}

body[data-color-mode="dark"] .contact-form-area .form-control:focus,
body[data-color-mode="dark"] .contact-form-area textarea:focus,
body[data-color-mode="dark"] .location-checker-form input:focus {
  border-color: rgba(249, 115, 22, 0.28) !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14) !important;
}

body[data-color-mode="dark"] .sticky-cta {
  background: rgba(7, 10, 16, 0.92) !important;
  border-top: 1px solid rgba(148, 163, 184, 0.14) !important;
}

body[data-color-mode="dark"] .float-btn.call {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2)) !important;
}

body[data-color-mode="dark"] .project-bg,
body[data-color-mode="dark"] .download-bg,
body[data-color-mode="dark"] .bg-testimonial,
body[data-color-mode="dark"] .footer-content-area.fotter-content-two {
  background: linear-gradient(135deg, #06080d 0%, #0d1118 60%, #1a1312 100%) !important;
}

body[data-color-mode="dark"] .footer-content,
body[data-color-mode="dark"] .footer-content p,
body[data-color-mode="dark"] .footer-content .copy_right,
body[data-color-mode="dark"] .download-rating {
  color: rgba(248, 250, 252, 0.9) !important;
}

body[data-color-mode="dark"] .footer-content .social-link a {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

body[data-color-mode="dark"] .footer-content .social-link a:hover {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.26) !important;
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .mobile-how-dot {
  background: rgba(148, 163, 184, 0.24) !important;
}

body[data-color-mode="dark"] .mobile-how-dot.is-active {
  background: var(--brand-accent) !important;
}

body[data-color-mode="dark"] .page_header {
  background: linear-gradient(135deg, #06080d 0%, #111827 100%) !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

body[data-color-mode="dark"] .content-wrapper {
  border-color: rgba(148, 163, 184, 0.14) !important;
}

body[data-color-mode="dark"] th {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] th,
body[data-color-mode="dark"] td {
  border-bottom-color: rgba(148, 163, 184, 0.14) !important;
}

body[data-color-mode="dark"] .permission-card,
body[data-color-mode="dark"] .definition-card,
body[data-color-mode="dark"] .contact-info,
body[data-color-mode="dark"] .important-note {
  background: linear-gradient(180deg, rgba(15, 19, 26, 0.96) 0%, rgba(11, 14, 20, 0.96) 100%) !important;
  border-left-color: var(--brand-accent) !important;
}

body[data-color-mode="dark"] .permission-title,
body[data-color-mode="dark"] .definition-title,
body[data-color-mode="dark"] strong {
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .partner-tags .tag-non-veg {
  background: rgba(220, 38, 38, 0.18) !important;
  border-color: rgba(248, 113, 113, 0.28) !important;
  color: #fca5a5 !important;
}

body[data-color-mode="dark"] .highlight {
  background: rgba(249, 115, 22, 0.14) !important;
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .bg-grey,
body[data-color-mode="dark"] .how-it-works-area,
body[data-color-mode="dark"] .compare-area,
body[data-color-mode="dark"] .team-area,
body[data-color-mode="dark"] .about-area,
body[data-color-mode="dark"] .trust-badges,
body[data-color-mode="dark"] .contact-area-two,
body[data-color-mode="dark"] .partner-area {
  background: transparent !important;
}

body[data-color-mode="dark"] .about-kicker,
body[data-color-mode="dark"] .how-step-label,
body[data-color-mode="dark"] .media-label {
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .about-kicker {
  background: rgba(249, 115, 22, 0.12) !important;
  border: 1px solid rgba(249, 115, 22, 0.24);
}

body[data-color-mode="dark"] .about-video {
  border-color: rgba(249, 115, 22, 0.18) !important;
  box-shadow: var(--brand-shadow) !important;
}

body[data-color-mode="dark"] .about-pill,
body[data-color-mode="dark"] .about-stat,
body[data-color-mode="dark"] .about-highlight,
body[data-color-mode="dark"] .how-card,
body[data-color-mode="dark"] .feature-area-inner .single-feature,
body[data-color-mode="dark"] .coverage-meta,
body[data-color-mode="dark"] .location-chip,
body[data-color-mode="dark"] .mobile-how-slide,
body[data-color-mode="dark"] .priceing-package-area .pricing-showcase,
body[data-color-mode="dark"] .priceing-package-area .plan-stat,
body[data-color-mode="dark"] .priceing-package-area .tiffin-lid,
body[data-color-mode="dark"] .priceing-package-area .tiffin-layer {
  background: linear-gradient(180deg, rgba(15, 19, 26, 0.98) 0%, rgba(10, 14, 20, 0.96) 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.14) !important;
  box-shadow: var(--brand-shadow-soft) !important;
}

body[data-color-mode="dark"] .mobile-how-frame {
  background: linear-gradient(160deg, #090c12 0%, #131922 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  box-shadow: var(--brand-shadow) !important;
}

body[data-color-mode="dark"] .mobile-how-frame::before {
  background: #05070b !important;
}

body[data-color-mode="dark"] .mobile-how-frame::after {
  background: rgba(248, 250, 252, 0.18) !important;
}

body[data-color-mode="dark"] .mobile-how-slide,
body[data-color-mode="dark"] .mobile-how-slide img {
  background: #0b0f16 !important;
}

body[data-color-mode="dark"] .mobile-how-slide.mask-footer .mobile-how-illustration::after {
  background: linear-gradient(
    180deg,
    rgba(11, 15, 22, 0) 0%,
    rgba(11, 15, 22, 0.72) 35%,
    #0b0f16 72%,
    #0b0f16 100%
  ) !important;
}

body[data-color-mode="dark"] .mobile-how-slide.mask-footer::after {
  background: #0b0f16 !important;
}

body[data-color-mode="dark"] .about-highlight:hover,
body[data-color-mode="dark"] .about-stat:hover,
body[data-color-mode="dark"] .how-card:hover,
body[data-color-mode="dark"] .feature-area-inner .single-feature:hover {
  border-color: rgba(249, 115, 22, 0.24) !important;
  box-shadow: var(--brand-shadow) !important;
}

body[data-color-mode="dark"] .about-subtitle,
body[data-color-mode="dark"] .about-lead,
body[data-color-mode="dark"] .about-stat .stat-value,
body[data-color-mode="dark"] .about-highlight h4,
body[data-color-mode="dark"] .how-card h3,
body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-content h4,
body[data-color-mode="dark"] .coverage-meta strong,
body[data-color-mode="dark"] .location-checker-head h4,
body[data-color-mode="dark"] .priceing-package-area .plan-stat strong,
body[data-color-mode="dark"] .contact-success-state h4 {
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .about-stat .stat-label,
body[data-color-mode="dark"] .about-highlight p,
body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-content p,
body[data-color-mode="dark"] .how-card p,
body[data-color-mode="dark"] .coverage-meta span,
body[data-color-mode="dark"] .location-checker-head p,
body[data-color-mode="dark"] .location-chip,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header h5,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .plan-caption,
body[data-color-mode="dark"] .priceing-package-area .plan-perks li,
body[data-color-mode="dark"] .priceing-package-area .plan-stat span,
body[data-color-mode="dark"] .priceing-package-area .tiffin-layer,
body[data-color-mode="dark"] .contact-success-state p {
  color: var(--brand-ink-soft) !important;
}

body[data-color-mode="dark"] .how-icon,
body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-icon i {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2)) !important;
  border-color: rgba(249, 115, 22, 0.24) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.18) !important;
}

body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-icon i::after {
  border-color: rgba(249, 115, 22, 0.34) !important;
}

body[data-color-mode="dark"] .about-content-two .about-social-link a {
  background: rgba(15, 19, 26, 0.86) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  color: var(--brand-ink) !important;
}

body[data-color-mode="dark"] .about-content-two .about-social-link a:hover {
  background: rgba(249, 115, 22, 0.14) !important;
  border-color: rgba(249, 115, 22, 0.3) !important;
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .location-chip:hover {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.28) !important;
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .location-checker-result {
  background: rgba(8, 12, 18, 0.92) !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  color: var(--brand-ink-soft) !important;
}

body[data-color-mode="dark"] .location-checker-result.is-available {
  background: rgba(21, 128, 61, 0.14) !important;
  border-color: rgba(34, 197, 94, 0.28) !important;
  color: #86efac !important;
}

body[data-color-mode="dark"] .location-checker-result.is-unavailable {
  background: rgba(249, 115, 22, 0.12) !important;
  border-color: rgba(249, 115, 22, 0.24) !important;
  color: #fdba74 !important;
}

body[data-color-mode="dark"] .location-checker-result.is-empty {
  background: rgba(14, 165, 233, 0.12) !important;
  border-color: rgba(14, 165, 233, 0.24) !important;
  color: #7dd3fc !important;
}

body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .chose-btn {
  border-color: rgba(148, 163, 184, 0.14) !important;
}

body[data-color-mode="dark"] .priceing-package-area .tiffin-handle {
  border-color: rgba(248, 250, 252, 0.34) !important;
}

body[data-color-mode="dark"] .priceing-package-area .tiffin-lid,
body[data-color-mode="dark"] .priceing-package-area .plan-perks i {
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .priceing-package-area .single-priceing.plan-daily .plan-perks i,
body[data-color-mode="dark"] .priceing-package-area .single-priceing.plan-compact .plan-perks i {
  color: var(--brand-accent-3) !important;
}

body[data-color-mode="dark"] .project-count-area .project-count-inner {
  border: 1px solid rgba(148, 163, 184, 0.14) !important;
  box-shadow: var(--brand-shadow) !important;
}

body[data-color-mode="dark"] .project-count-area .project-count-inner .counter::after {
  background: rgba(248, 250, 252, 0.12) !important;
}

body[data-color-mode="dark"] {
  --brand-hero-panel-bg: linear-gradient(145deg, rgba(7, 10, 16, 0.8), rgba(17, 22, 30, 0.72));
  --brand-hero-panel-border: rgba(255, 255, 255, 0.14);
  --brand-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  --brand-shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.3);
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.12), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(249, 115, 22, 0.22), transparent 22%),
    radial-gradient(circle at 74% 82%, rgba(249, 115, 22, 0.12), transparent 20%),
    linear-gradient(120deg, #05070b 0%, #090c12 46%, #160f10 100%) !important;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-style: normal;
  letter-spacing: -0.012em;
}

body[data-color-mode="dark"] h1,
body[data-color-mode="dark"] h2,
body[data-color-mode="dark"] h3,
body[data-color-mode="dark"] h4,
body[data-color-mode="dark"] h5,
body[data-color-mode="dark"] h6,
body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2,
body[data-color-mode="dark"] .product-block-head h3,
body[data-color-mode="dark"] .partner-card h4,
body[data-color-mode="dark"] .meal-card h4,
body[data-color-mode="dark"] .coverage-meta strong,
body[data-color-mode="dark"] .about-hero-text h2,
body[data-color-mode="dark"] .contact-copy h3,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header h3,
body[data-color-mode="dark"] .project-count-area .counter h3 {
  font-family: "Cormorant Garamond", "Fraunces", serif !important;
  font-style: italic;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
}

body[data-color-mode="dark"] p,
body[data-color-mode="dark"] li,
body[data-color-mode="dark"] td,
body[data-color-mode="dark"] .section-title p,
body[data-color-mode="dark"] .review-text,
body[data-color-mode="dark"] .review-meta,
body[data-color-mode="dark"] .review-card .review-meta,
body[data-color-mode="dark"] .testimonials-badge .badge-text,
body[data-color-mode="dark"] .press-headline,
body[data-color-mode="dark"] .copy_right,
body[data-color-mode="dark"] .last-updated,
body[data-color-mode="dark"] .about-highlight p,
body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-content p,
body[data-color-mode="dark"] .how-card p,
body[data-color-mode="dark"] .location-chip,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .plan-caption,
body[data-color-mode="dark"] .priceing-package-area .plan-perks li,
body[data-color-mode="dark"] .priceing-package-area .plan-stat span,
body[data-color-mode="dark"] .contact-success-state p {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif !important;
  font-style: normal;
  color: rgba(217, 225, 236, 0.82) !important;
}

body[data-color-mode="dark"] .main-menu ul li a,
body[data-color-mode="dark"] .hero-badge,
body[data-color-mode="dark"] .button,
body[data-color-mode="dark"] .slider-btn,
body[data-color-mode="dark"] .choose-button,
body[data-color-mode="dark"] .submit-btn,
body[data-color-mode="dark"] .product-kicker,
body[data-color-mode="dark"] .partner-badge,
body[data-color-mode="dark"] .section-header h3,
body[data-color-mode="dark"] .testimonials-header-left h3,
body[data-color-mode="dark"] .testimonials-badge,
body[data-color-mode="dark"] .meal-tag,
body[data-color-mode="dark"] .press-tag,
body[data-color-mode="dark"] .partner-tags span,
body[data-color-mode="dark"] .color-mode-toggle,
body[data-color-mode="dark"] .plan-ribbon,
body[data-color-mode="dark"] .faq-area .faq-item summary {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif !important;
}

body[data-color-mode="dark"] .main-menu ul li a {
  font-style: normal;
  background: rgba(9, 12, 18, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-color-mode="dark"] .header-top.inner-header {
  background: rgba(6, 9, 14, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body[data-color-mode="dark"] .hero-slider::before {
  background:
    linear-gradient(120deg, rgba(6, 8, 12, 0.28), rgba(6, 8, 12, 0.08)),
    radial-gradient(circle at 24% 34%, rgba(255, 255, 255, 0.08), transparent 30%);
}

body[data-color-mode="dark"] .hero-slider::after {
  background:
    radial-gradient(circle at 18% 24%, rgba(45, 212, 191, 0.22) 0%, transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.26) 0%, transparent 30%),
    radial-gradient(circle at 68% 74%, rgba(255, 153, 102, 0.18) 0%, transparent 28%) !important;
  opacity: 0.94 !important;
}

body[data-color-mode="dark"] .hero-content-one .slider-text-info {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(7, 10, 16, 0.74), rgba(17, 22, 30, 0.56)) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 34px 90px rgba(2, 6, 23, 0.46) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

body[data-color-mode="dark"] .hero-content-one .slider-text-info::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.82;
  pointer-events: none;
  z-index: -1;
}

body[data-color-mode="dark"] .hero-content-one .slider-text-info::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0));
  pointer-events: none;
  z-index: -1;
}

body[data-color-mode="dark"] .hero-badge {
  background: rgba(10, 13, 19, 0.68) !important;
  border: 1px solid rgba(255, 153, 102, 0.28) !important;
  color: #ffd6ba !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.18) !important;
  font-style: italic;
}

body[data-color-mode="dark"] .hero-badge::before {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #fdba74);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

body[data-color-mode="dark"] .hero-slider h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 6.2vw, 96px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.05em !important;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.34) !important;
}

body[data-color-mode="dark"] .hero-slider h1 .hero-accent-line {
  color: #ff7b3d !important;
  text-shadow: 0 9px 0 rgba(95, 30, 9, 0.34), 0 10px 34px rgba(249, 115, 22, 0.14);
}

body[data-color-mode="dark"] .hero-slider h1 .hero-base-line {
  color: #fffaf2 !important;
  text-shadow: 0 9px 0 rgba(10, 12, 18, 0.88), 0 10px 34px rgba(255, 255, 255, 0.08);
}

body[data-color-mode="dark"] .hero-slider p {
  max-width: 680px;
  color: rgba(221, 229, 239, 0.84) !important;
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn,
body[data-color-mode="dark"] .button,
body[data-color-mode="dark"] .choose-button,
body[data-color-mode="dark"] .submit-btn,
body[data-color-mode="dark"] .mobile-how-next,
body[data-color-mode="dark"] .sticky-cta .cta-btn.primary,
body[data-color-mode="dark"] .success-whatsapp-btn,
body[data-color-mode="dark"] .download-buttons .button,
body[data-color-mode="dark"] .newspaper-buttons .button,
body[data-color-mode="dark"] .sticky-cta .cta-btn:not(.primary),
body[data-color-mode="dark"] .success-back-btn,
body[data-color-mode="dark"] .pricing-toggle .toggle-btn,
body[data-color-mode="dark"] .contact-tab-btn {
  font-style: italic;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn:hover,
body[data-color-mode="dark"] .button:hover,
body[data-color-mode="dark"] .choose-button:hover,
body[data-color-mode="dark"] .submit-btn:hover,
body[data-color-mode="dark"] .mobile-how-next:hover,
body[data-color-mode="dark"] .sticky-cta .cta-btn.primary:hover,
body[data-color-mode="dark"] .success-whatsapp-btn:hover,
body[data-color-mode="dark"] .download-buttons .button:hover,
body[data-color-mode="dark"] .newspaper-buttons .button:hover,
body[data-color-mode="dark"] .sticky-cta .cta-btn:not(.primary):hover,
body[data-color-mode="dark"] .success-back-btn:hover,
body[data-color-mode="dark"] .pricing-toggle .toggle-btn:hover,
body[data-color-mode="dark"] .contact-tab-btn:hover {
  transform: translateY(-3px);
}

body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn.secondary-btn {
  background: rgba(8, 12, 18, 0.56) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffb284 !important;
}

body[data-color-mode="dark"] .section-title,
body[data-color-mode="dark"] .product-block-head,
body[data-color-mode="dark"] .section-header,
body[data-color-mode="dark"] .testimonials-header-left {
  position: relative;
}

body[data-color-mode="dark"] .section-title::after {
  content: "";
  display: block;
  width: 104px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0.92), rgba(253, 186, 116, 0.44), rgba(249, 115, 22, 0));
}

body[data-color-mode="dark"] .product-block-head::after,
body[data-color-mode="dark"] .section-header::after,
body[data-color-mode="dark"] .testimonials-header-left::after {
  content: "";
  display: block;
  width: 104px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.96), rgba(253, 186, 116, 0.42), rgba(249, 115, 22, 0));
}

body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2,
body[data-color-mode="dark"] .product-block-head h3 {
  color: #fffaf2 !important;
  background: linear-gradient(180deg, #fffaf2 0%, #ffd8b0 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}

body[data-color-mode="dark"] .meal-card,
body[data-color-mode="dark"] .partner-card,
body[data-color-mode="dark"] .badge-card,
body[data-color-mode="dark"] .compare-card,
body[data-color-mode="dark"] .team-card,
body[data-color-mode="dark"] .review-card,
body[data-color-mode="dark"] .google-card,
body[data-color-mode="dark"] .press-card,
body[data-color-mode="dark"] .faq-area .faq-item,
body[data-color-mode="dark"] .single-priceing,
body[data-color-mode="dark"] .feature-area-inner .single-feature,
body[data-color-mode="dark"] .about-stat,
body[data-color-mode="dark"] .about-highlight,
body[data-color-mode="dark"] .how-card,
body[data-color-mode="dark"] .project-count-area .project-count-inner,
body[data-color-mode="dark"] .download-rating {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

body[data-color-mode="dark"] .meal-card::before,
body[data-color-mode="dark"] .partner-card::before,
body[data-color-mode="dark"] .badge-card::before,
body[data-color-mode="dark"] .compare-card::before,
body[data-color-mode="dark"] .team-card::before,
body[data-color-mode="dark"] .review-card::before,
body[data-color-mode="dark"] .google-card::before,
body[data-color-mode="dark"] .press-card::before,
body[data-color-mode="dark"] .faq-area .faq-item::before,
body[data-color-mode="dark"] .single-priceing::before,
body[data-color-mode="dark"] .feature-area-inner .single-feature::before,
body[data-color-mode="dark"] .about-stat::before,
body[data-color-mode="dark"] .about-highlight::before,
body[data-color-mode="dark"] .how-card::before,
body[data-color-mode="dark"] .project-count-area .project-count-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  opacity: 0.72;
  pointer-events: none;
}

body[data-color-mode="dark"] .meal-card:hover,
body[data-color-mode="dark"] .partner-card:hover,
body[data-color-mode="dark"] .badge-card:hover,
body[data-color-mode="dark"] .compare-card:hover,
body[data-color-mode="dark"] .team-card:hover,
body[data-color-mode="dark"] .review-card:hover,
body[data-color-mode="dark"] .google-card:hover,
body[data-color-mode="dark"] .press-card:hover,
body[data-color-mode="dark"] .faq-area .faq-item:hover,
body[data-color-mode="dark"] .single-priceing:hover,
body[data-color-mode="dark"] .feature-area-inner .single-feature:hover,
body[data-color-mode="dark"] .about-stat:hover,
body[data-color-mode="dark"] .about-highlight:hover,
body[data-color-mode="dark"] .how-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 153, 102, 0.26) !important;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 153, 102, 0.08) !important;
}

body[data-color-mode="dark"] .feature-image img {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

body[data-color-mode="dark"] .google-card img,
body[data-color-mode="dark"] .press-card img {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26) !important;
  transition: transform 0.38s ease, filter 0.38s ease, box-shadow 0.38s ease;
}

body[data-color-mode="dark"] .google-card:hover img,
body[data-color-mode="dark"] .press-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

body[data-color-mode="dark"] .press-overlay,
body[data-color-mode="dark"] .google-overlay {
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.02) 0%, rgba(5, 7, 11, 0.84) 100%) !important;
}

body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header h3,
body[data-color-mode="dark"] .project-count-area .counter h3 {
  background: linear-gradient(180deg, #fffaf2 4%, #ffbe84 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

body[data-color-mode="dark"] .plan-ribbon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(251, 146, 60, 0.9)) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.22) !important;
  font-style: italic;
  letter-spacing: 0.08em;
}

body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header h5,
body[data-color-mode="dark"] .project-count-area .counter p,
body[data-color-mode="dark"] .download-rating span {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif !important;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-color-mode="dark"] .project-count-area .project-count-inner {
  background: linear-gradient(145deg, rgba(7, 10, 16, 0.78), rgba(18, 23, 31, 0.82)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body[data-color-mode="dark"] .project-count-area .counter p {
  color: rgba(224, 231, 241, 0.72) !important;
  font-size: 12px;
}

body[data-color-mode="dark"] .download-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.58) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-color-mode="dark"] .download-rating .stars {
  color: #ffb15d !important;
}

body[data-color-mode="dark"] .faq-area .faq-item summary {
  color: var(--brand-ink) !important;
  font-style: italic;
  font-weight: 700;
}

body[data-color-mode="dark"] .faq-area .faq-item summary::marker {
  color: var(--brand-accent-2);
}

body[data-color-mode="dark"] .faq-area .faq-item[open] summary {
  color: #fff3e4 !important;
}

body[data-color-mode="dark"] .hero-content-one .slider-text-info {
  background: linear-gradient(145deg, rgba(7, 10, 16, 0.86), rgba(16, 20, 28, 0.8)) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

body[data-color-mode="dark"] .product-block,
body[data-color-mode="dark"] .meal-card,
body[data-color-mode="dark"] .coverage-panel,
body[data-color-mode="dark"] .location-checker,
body[data-color-mode="dark"] .partner-card,
body[data-color-mode="dark"] .product-cta-panel,
body[data-color-mode="dark"] .single-service,
body[data-color-mode="dark"] .ht-service-box--one,
body[data-color-mode="dark"] .contact-info-container,
body[data-color-mode="dark"] .badge-card,
body[data-color-mode="dark"] .compare-card,
body[data-color-mode="dark"] .team-card,
body[data-color-mode="dark"] .review-card,
body[data-color-mode="dark"] .google-card,
body[data-color-mode="dark"] .press-card,
body[data-color-mode="dark"] .contact-form-block,
body[data-color-mode="dark"] .faq-area .faq-item,
body[data-color-mode="dark"] .priceing-package-area .single-priceing,
body[data-color-mode="dark"] .priceing-package-area .pricing-showcase,
body[data-color-mode="dark"] .priceing-package-area .plan-stat,
body[data-color-mode="dark"] .priceing-package-area .tiffin-lid,
body[data-color-mode="dark"] .priceing-package-area .tiffin-layer,
body[data-color-mode="dark"] .partner-form,
body[data-color-mode="dark"] .partner-highlights,
body[data-color-mode="dark"] #problem-solution .solution-panel,
body[data-color-mode="dark"] .content-wrapper,
body[data-color-mode="dark"] .project-count-area .project-count-inner,
body[data-color-mode="dark"] .download-rating {
  background: linear-gradient(180deg, rgba(10, 13, 19, 0.96) 0%, rgba(6, 9, 14, 0.98) 100%) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body[data-color-mode="dark"] p,
body[data-color-mode="dark"] li,
body[data-color-mode="dark"] td,
body[data-color-mode="dark"] .section-title p,
body[data-color-mode="dark"] .review-text,
body[data-color-mode="dark"] .review-meta,
body[data-color-mode="dark"] .review-card .review-meta,
body[data-color-mode="dark"] .testimonials-badge .badge-text,
body[data-color-mode="dark"] .press-headline,
body[data-color-mode="dark"] .copy_right,
body[data-color-mode="dark"] .last-updated,
body[data-color-mode="dark"] .about-highlight p,
body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-content p,
body[data-color-mode="dark"] .how-card p,
body[data-color-mode="dark"] .location-chip,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .plan-caption,
body[data-color-mode="dark"] .priceing-package-area .plan-perks li,
body[data-color-mode="dark"] .priceing-package-area .plan-stat span,
body[data-color-mode="dark"] .contact-success-state p,
body[data-color-mode="dark"] .contact-title p,
body[data-color-mode="dark"] .contact-address p,
body[data-color-mode="dark"] .contact-address li,
body[data-color-mode="dark"] .download-rating span {
  color: rgba(236, 242, 249, 0.9) !important;
}

body[data-color-mode="dark"] .section-title h2,
body[data-color-mode="dark"] .testimonials-header-left h2,
body[data-color-mode="dark"] .section-header h2,
body[data-color-mode="dark"] .product-block-head h3,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header h3,
body[data-color-mode="dark"] .project-count-area .counter h3 {
  color: #fff6ec !important;
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24) !important;
}

body[data-color-mode="dark"] .hero-slider h1 {
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.32) !important;
}

body[data-color-mode="dark"] .hero-slider p {
  color: rgba(238, 243, 249, 0.9) !important;
}

body[data-color-mode="dark"] .feature-area-inner .single-feature .feature-content h4,
body[data-color-mode="dark"] .contact-title h2,
body[data-color-mode="dark"] .test-author h3,
body[data-color-mode="dark"] .priceing-package-area .single-priceing .table-header h5,
body[data-color-mode="dark"] .press-name,
body[data-color-mode="dark"] .faq-area .faq-item summary,
body[data-color-mode="dark"] .about-highlight h4,
body[data-color-mode="dark"] .how-card h3,
body[data-color-mode="dark"] .location-checker-head h4,
body[data-color-mode="dark"] .contact-address a,
body[data-color-mode="dark"] .contact-title a {
  color: #f8fafc !important;
}

body[data-color-mode="dark"] .main-menu ul li a,
body[data-color-mode="dark"] .button,
body[data-color-mode="dark"] .slider-btn,
body[data-color-mode="dark"] .choose-button,
body[data-color-mode="dark"] .submit-btn,
body[data-color-mode="dark"] .product-kicker,
body[data-color-mode="dark"] .partner-badge,
body[data-color-mode="dark"] .section-header h3,
body[data-color-mode="dark"] .testimonials-header-left h3,
body[data-color-mode="dark"] .testimonials-badge,
body[data-color-mode="dark"] .meal-tag,
body[data-color-mode="dark"] .press-tag,
body[data-color-mode="dark"] .partner-tags span,
body[data-color-mode="dark"] .plan-ribbon,
body[data-color-mode="dark"] .faq-area .faq-item summary {
  font-style: normal;
}

body[data-color-mode="dark"] .press-overlay,
body[data-color-mode="dark"] .google-overlay {
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.1) 0%, rgba(5, 7, 11, 0.94) 100%) !important;
}

@media only screen and (max-width: 991px) {
  body[data-color-mode="dark"] .hero-slider {
    min-height: auto;
    padding: 72px 0 58px;
  }

  body[data-color-mode="dark"] .hero-slider h1 {
    font-size: clamp(40px, 7.5vw, 68px) !important;
  }

  body[data-color-mode="dark"] .hero-slider p {
    max-width: 620px;
    font-size: 18px !important;
  }

  .color-mode-toggle {
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

@media only screen and (max-width: 767px) {
  body[data-color-mode="dark"] .hero-slider {
    padding: 66px 0 52px;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(4, 7, 12, 0.28) 0%, rgba(4, 7, 12, 0.58) 44%, rgba(4, 7, 12, 0.9) 100%),
      radial-gradient(circle at 18% 16%, rgba(56, 189, 248, 0.22) 0%, transparent 36%),
      radial-gradient(circle at 82% 12%, rgba(249, 115, 22, 0.18) 0%, transparent 34%),
      url("../images/slider/banner.jpg") center center / cover no-repeat !important;
    background-color: #05070b !important;
  }

  body[data-color-mode="dark"] .hero-slider .single-slide {
    min-height: auto;
  }

  body[data-color-mode="dark"] .hero-video-background {
    display: none;
  }

  body[data-color-mode="dark"] .hero-slider::before {
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.16) 0%, rgba(5, 7, 11, 0.1) 28%, rgba(5, 7, 11, 0.78) 100%) !important;
    opacity: 1 !important;
  }

  body[data-color-mode="dark"] .hero-slider::after {
    opacity: 0.82 !important;
  }

  body[data-color-mode="dark"] .hero-slider h1 {
    font-size: clamp(36px, 11.5vw, 54px) !important;
    line-height: 1 !important;
  }

  body[data-color-mode="dark"] .hero-slider p {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 16px !important;
    line-height: 1.68 !important;
  }

  body[data-color-mode="dark"] .hero-slider .slider-button {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  body[data-color-mode="dark"] .hero-slider .slider-button .slider-btn {
    width: auto;
    justify-content: center;
  }

  body[data-color-mode="dark"] .hero-badge {
    padding: 8px 14px;
    font-size: 12px;
  }

  body[data-color-mode="dark"] .hero-content-one .slider-text-info {
    background: linear-gradient(180deg, rgba(9, 12, 18, 0.46) 0%, rgba(9, 12, 18, 0.74) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.34) !important;
  }

  .color-mode-toggle {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  body[data-color-mode="dark"] .sticky-cta {
    background: linear-gradient(135deg, rgba(5, 7, 11, 0.96), rgba(17, 24, 39, 0.94)) !important;
    border: 1px solid rgba(148, 163, 184, 0.16) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36) !important;
  }

  body[data-color-mode="dark"] .sticky-cta .cta-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(148, 163, 184, 0.16) !important;
    color: #f8fafc !important;
  }

  body[data-color-mode="dark"] .sticky-cta .cta-btn.primary {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-2)) !important;
    border-color: transparent !important;
    color: #ffffff !important;
  }

  body[data-color-mode="dark"] .sticky-cta .cta-btn.call {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #f8fafc !important;
  }

  body[data-color-mode="dark"] .sticky-cta .cta-btn.whatsapp {
    background: #1faa59 !important;
    border-color: transparent !important;
    color: #ffffff !important;
  }
}

@media only screen and (max-width: 479px) {
  .color-mode-toggle {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
