/* ==========================================
   SEO Fusion — Custom Design System
   ========================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&display=swap");

:root {
  --primary: hsl(28, 92%, 55%);
  --primary-dark: hsl(28, 88%, 47%);
  --secondary: hsl(43, 96%, 55%);
  --accent: hsl(6, 84%, 58%);
  --foreground: hsl(222, 20%, 12%);
  --foreground-70: hsla(222, 20%, 12%, 0.7);
  --foreground-60: hsla(222, 20%, 12%, 0.6);
  --background: hsl(36, 50%, 98%);
  --card: #fff;
  --card-border: hsl(24, 22%, 88%);
  --border: hsl(24, 18%, 86%);
  --muted: hsl(30, 35%, 95%);
  --muted-fg: hsl(223, 10%, 40%);
  --ring: hsl(28, 92%, 55%);
  --radius: 1rem;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Cinzel", ui-serif, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ---- Backgrounds ---- */
.mystic-sheen {
  background-image:
    radial-gradient(
      800px 380px at 20% 0%,
      rgba(255, 197, 61, 0.35),
      transparent
    ),
    radial-gradient(
      780px 360px at 90% 10%,
      rgba(255, 90, 31, 0.25),
      transparent
    ),
    radial-gradient(
      740px 420px at 50% 100%,
      rgba(220, 38, 38, 0.18),
      transparent
    );
}

.mystic-grid {
  background-image:
    linear-gradient(to right, rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 24, 39, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(
    circle at 40% 20%,
    black 0%,
    transparent 68%
  );
  mask-image: radial-gradient(circle at 40% 20%, black 0%, transparent 68%);
}

/* ---- Typography ---- */
.font-serif {
  font-family: var(--font-serif);
}
.font-sans {
  font-family: var(--font-sans);
}

/* ---- Navbar ---- */
.sf-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.sf-navbar .nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.sf-brand img {
  height: 2.5rem;
  width: auto;
  border-radius: 0.375rem;
}

.sf-brand-text .name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  color: var(--foreground);
}

.sf-brand-text .tagline {
  font-size: 0.75rem;
  color: var(--foreground-60);
  display: block;
}

.sf-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.sf-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(14, 16, 22, 0.8);
  text-decoration: none;
  transition: color 0.15s;
}

.sf-nav-links a:hover {
  color: var(--foreground);
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  height: 2.75rem;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary-dark);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 107, 38, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  height: 2.75rem;
  background: var(--secondary);
  color: var(--foreground);
  border: 1px solid hsl(43, 80%, 47%);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-secondary:hover {
  color: var(--foreground);
  background: hsl(43, 90%, 50%);
  transform: translateY(-1px);
}

.btn-sm {
  height: 2.25rem;
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
}

/* ---- Cards ---- */
.sf-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.03);
}

.sf-card-white {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

/* ---- Section Eyebrow ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--foreground-60);
}

/* ---- Pills ---- */
.sf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sf-pill svg {
  color: var(--accent);
}

/* ---- Icon boxes ---- */
.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: var(--muted);
  border-radius: 0.75rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.icon-box svg {
  color: var(--accent);
}
.icon-box-lg {
  width: 3rem;
  height: 3rem;
}
.icon-box-primary svg {
  color: var(--primary);
}

/* ---- Hero ---- */
.sf-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

/* ---- Form ---- */
.sf-form-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(10px);
}

.sf-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}

.sf-input {
  display: block;
  width: 100%;
  height: 2.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
  outline: none;
}

.sf-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(230, 107, 38, 0.2);
}

.sf-input::placeholder {
  color: var(--muted-fg);
}

.sf-textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
}

.sf-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(230, 107, 38, 0.2);
}

.sf-textarea::placeholder {
  color: var(--muted-fg);
}

/* ---- Custom Dropdown ---- */
.sf-dropdown-wrap {
  position: relative;
}

.sf-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 2.25rem;
  padding: 0 0.75rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  cursor: pointer;
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
}

.sf-dropdown-trigger:focus,
.sf-dropdown-trigger.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(230, 107, 38, 0.2);
  outline: none;
}

.sf-dropdown-trigger .chevron {
  width: 1rem;
  height: 1rem;
  opacity: 0.5;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.sf-dropdown-trigger.open .chevron {
  transform: rotate(180deg);
}

.sf-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.sf-dropdown-menu.show {
  display: block;
}

.sf-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.1s;
  color: var(--foreground);
  user-select: none;
}

.sf-dropdown-item:hover {
  background: var(--muted);
}

.sf-dropdown-item.selected {
  background: var(--accent);
  color: #fff;
  font-weight: 500;
}

.sf-dropdown-item .check-icon {
  width: 1rem;
  height: 1rem;
}

/* ---- Accordion ---- */
.sf-accordion-item {
  border-bottom: 1px solid var(--border);
}

.sf-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.15s;
}

.sf-accordion-btn:hover {
  color: var(--primary);
}

.sf-accordion-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform 0.25s ease;
}

.sf-accordion-btn[aria-expanded="true"] .sf-accordion-icon {
  transform: rotate(180deg);
}

.sf-accordion-body {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.sf-accordion-body.open {
  max-height: 400px;
}

.sf-accordion-body-inner {
  padding-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--foreground-70);
  line-height: 1.65;
}

/* ---- Stars ---- */
.stars {
  display: flex;
  gap: 0.125rem;
}
.star {
  width: 1rem;
  height: 1rem;
  fill: var(--secondary);
  color: var(--secondary);
}

/* ---- Service Cards ---- */
.sf-service-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  height: 100%;
}

.sf-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ---- Section widths ---- */
.sf-section-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.sf-section-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

/* ---- CTA Banner ---- */
.sf-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #fff;
}

.back-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
  color: var(--foreground);
}

.back-top:hover {
  transform: translateY(-2px);
}

/* ---- Footer ---- */
.sf-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

/* ---- Breadcrumb ---- */
.sf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--foreground-60);
  padding: 0.75rem 0;
}

.sf-breadcrumb a {
  color: var(--foreground-60);
  text-decoration: none;
}
.sf-breadcrumb a:hover {
  color: var(--foreground);
  text-decoration: underline;
}
.sf-breadcrumb .sep {
  color: var(--foreground-60);
}
.sf-breadcrumb .current {
  color: var(--foreground);
}

/* ---- Service article ---- */
.sf-service-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
a[data-testid="button-nav-consult"] {
  color: white;
}
@media (min-width: 768px) {
  .sf-service-article {
    grid-template-columns: 1fr 1fr;
  }
  a[data-testid="button-mobile-book"],
  a[data-testid="button-mobile-consult-services"] {
    display: none;
  }
  .book_contact {
    display: none;
  }
}

/* ---- Contact Info ---- */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}
.custom_banner_width img {
  max-width: 100%;
}
.contact-row:last-child {
  border-bottom: none;
}

.contact-row-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--muted);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ---- Utility ---- */
.text-primary-color {
  color: var(--primary);
}
.text-accent-color {
  color: var(--accent);
}
.text-muted-fg {
  color: var(--muted-fg);
}
.bg-muted {
  background: var(--muted);
}
.border-color {
  border-color: var(--border);
}

/* ---- Testimonial card ---- */
.sf-testimonial {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
#Bookconsultation {
  color: white;
}
/* ---- Responsive tweaks ---- */
@media (max-width: 768px) {
  .sf-nav-links {
    display: none;
  }
  .hero-inner {
    padding: 1.75rem 1rem 2rem;
  }
  /*.sf-section-inner {*/
  /*  padding: 2.5rem 1rem;*/
  /*}*/
}

/* ==========================================
   Hamburger Button
   ========================================== */
.sf-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.sf-hamburger:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sf-hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

/* Animated X when active */
.sf-hamburger.active .sf-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sf-hamburger.active .sf-hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.sf-hamburger.active .sf-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .sf-hamburger {
    display: flex;
  }
}

/* ==========================================
   Mobile Drawer Overlay
   ========================================== */
.sf-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(10, 12, 20, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sf-drawer-overlay.open {
  display: block;
  opacity: 1;
}

/* ==========================================
   Mobile Drawer Panel
   ========================================== */
.sf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: min(85vw, 320px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.sf-drawer.open {
  transform: translateX(0);
}

/* Header row inside drawer */
.sf-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sf-drawer-close {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--foreground);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.sf-drawer-close:hover {
  background: var(--border);
}

/* Nav links inside drawer */
.sf-drawer-nav {
  flex: 1;
  padding: 0.75rem 0;
}

.sf-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground-70);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  position: relative;
}

.sf-drawer-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.sf-drawer-link:hover {
  color: var(--foreground);
  background: var(--muted);
}

.sf-drawer-link:hover svg {
  opacity: 1;
}

.sf-drawer-link--active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(230, 107, 38, 0.06);
  font-weight: 600;
}

.sf-drawer-link--active svg {
  opacity: 1;
  color: var(--primary);
}

/* CTA area at bottom of drawer */
.sf-drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.sf-drawer-footer .btn-primary {
  width: 100%;
  justify-content: center;
  height: 3rem;
  font-size: 0.9375rem;
}

.sf-drawer-note {
  margin: 0.625rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* Hide old mobile elements */
.sf-nav-mobile {
  display: none !important;
}
/* container */
.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* hide checkbox */
.service-pill input {
  display: none;
}

/* pill style */
.service-pill span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover */
.service-pill span:hover {
  border-color: #f97316;
  color: #f97316;
}

/* active */
.service-pill input:checked + span {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}



.serviceSwiper {
  padding-bottom: 40px;
}

.swiper-slide {
  height: auto;
}

.sf-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.sf-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sf-service-card h3 {
  font-size: 0.95rem;
  margin-top: 10px;
}

.sf-service-card p {
  font-size: 0.8rem;
  color: #666;
}

/* spacing */
.gallerySwiper {
  padding: 10px 5px 40px;
}

/* image styling */
.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* hover effect */
.gallery-img:hover {
  transform: scale(1.05);
}