/* =========================================================================
   SAFAZI — Design Tokens
   Palette, type and spacing are derived from the brand brief:
   Primary #0A3D91 · Secondary #1E5ED8 · Accent #17A34A
   Background #F8FAFC · Dark #0F172A · White #FFFFFF
   Poppins is the brand face throughout; JetBrains Mono is used only for
   prices, timestamps and code-like data — it gives the pricing a
   "receipt/ticket" honesty that plain Poppins numerals don't have.
   ========================================================================= */

:root{
  /* Brand colors */
  --primary:        #0A3D91;
  --primary-600:     #0D4BAF;
  --primary-800:     #082D6E;
  --secondary:       #1E5ED8;
  --accent:          #17A34A;
  --accent-600:      #128A3E;
  --bg:              #F8FAFC;
  --dark:            #0F172A;
  --dark-800:        #0B1220;
  --white:           #FFFFFF;

  /* Neutrals derived for UI (not new brand hues, just tints/shades) */
  --ink:             #101828;
  --ink-soft:        #4A5568;
  --ink-faint:       #94A3B8;
  --line:            #E6EBF2;
  --card-bg:         #FFFFFF;
  --tint-primary:    rgba(10,61,145,0.07);
  --tint-secondary:  rgba(30,94,216,0.10);
  --tint-accent:     rgba(23,163,74,0.10);

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Shape & motion */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 24px rgba(15,23,42,0.06);
  --shadow-card: 0 12px 32px rgba(10,61,145,0.08);
  --shadow-lift: 0 20px 48px rgba(10,61,145,0.16);
  --ease: cubic-bezier(.22,1,.36,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================================
   Base
   ========================================================================= */
*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; scroll-padding-top: 92px; overscroll-behavior-y: none; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p{ color: var(--ink-soft); }

a{ text-decoration: none; color: inherit; }

img{ max-width: 100%; display: block; }

.text-accent{ color: var(--accent); }

::selection{ background: var(--accent); color: #fff; }

:focus-visible{
  outline: 2.5px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--primary); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus{ left: 0; }

section{ position: relative; }

.section-head{ max-width: 640px; margin-inline: auto; margin-bottom: 3rem; }
.section-head h2{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: .75rem; }
.section-head p{ font-size: 1.05rem; margin-bottom: 0; }
.section-head.text-center h2::after{
  content: ''; display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--secondary); margin: 14px auto 0;
}

.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  background: var(--tint-accent);
  padding: 7px 16px 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.eyebrow-dark{ color: var(--primary); background: var(--tint-primary); }

/* Reveal-on-scroll (vanilla JS + IntersectionObserver, no external lib) */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal="right"]{ transform: translateX(-28px); }
[data-reveal].is-visible{ opacity: 1; transform: none; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn{ font-family: var(--font-display); font-weight: 600; border-radius: var(--radius-pill); position: relative; overflow: hidden; }

.btn-cta-primary{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff; border: none; padding: .85rem 1.9rem;
  box-shadow: 0 10px 24px rgba(10,61,145,0.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-cta-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px rgba(10,61,145,0.36); color:#fff; }

.btn-cta-whatsapp{
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  color: #fff; border: none; padding: .85rem 1.9rem;
  box-shadow: 0 10px 24px rgba(23,163,74,0.30);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-cta-whatsapp:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px rgba(23,163,74,0.38); color:#fff; }

.btn-outline-brand{
  border: 1.5px solid var(--primary); color: var(--primary); padding: .8rem 1.9rem; background: transparent;
  transition: all .3s var(--ease);
}
.btn-outline-brand:hover{ background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-cta-outline{
  border: 1.5px solid var(--secondary); color: var(--secondary); padding: .85rem 1.9rem; background: #fff;
  transition: all .3s var(--ease);
}
.btn-cta-outline:hover{ background: var(--secondary); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(30,94,216,.28); }

.btn-book-now{
  background: var(--accent); color: #fff; padding: .6rem 1.35rem; font-size: .92rem;
  box-shadow: 0 6px 16px rgba(23,163,74,.3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-book-now:hover{ transform: translateY(-2px); box-shadow: 0 10px 22px rgba(23,163,74,.4); color:#fff; }

/* button ripple */
.btn .ripple{
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.55);
  transform: scale(0); animation: ripple .6s var(--ease);
  pointer-events: none;
}
@keyframes ripple{ to{ transform: scale(3); opacity: 0; } }

/* =========================================================================
   Utility top bar
   ========================================================================= */
.utility-bar{
  background: var(--primary-800); color: rgba(255,255,255,.85);
  font-size: .8rem; padding: .5rem 0;
}
.utility-link{
  display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85);
  border: none; background: none; padding: 0; font-size: .8rem; transition: color .2s var(--ease);
}
.utility-link:hover{ color: #fff; }
.utility-link i{ font-size: .82rem; }
.utility-link-btn{ cursor: pointer; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(230,235,242,0.8);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled{ box-shadow: 0 8px 30px rgba(15,23,42,0.08); }

.site-header .navbar{ padding-top: .9rem; padding-bottom: .9rem; }
@media (min-width: 992px){
  .site-header .navbar{ transition: padding .3s var(--ease); }
  .site-header.scrolled .navbar{ padding-top: .55rem; padding-bottom: .55rem; }
}

.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{ object-fit: contain; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-name{ font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--primary); letter-spacing: -0.01em; }
.brand-tag{ font-size: .66rem; color: var(--accent); font-weight: 600; letter-spacing: .03em; }

.navbar-nav .nav-link{
  font-weight: 500; color: var(--ink); padding: .5rem 1rem !important; position: relative;
}
.navbar-nav .nav-link::after{
  content:''; position: absolute; left: 1rem; right: 1rem; bottom: .2rem; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{ transform: scaleX(1); }
.navbar-nav .nav-link.active{ color: var(--primary); font-weight: 600; }

.navbar-toggler{ border: none; padding: 8px; }
.navbar-toggler:focus{ box-shadow: none; }
.toggler-bar{ display:block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; border-radius: 2px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero{
  padding: 6.5rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #F3F7FD 0%, var(--bg) 70%);
}
.hero-backdrop{ position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob{ position: absolute; border-radius: 50%; filter: blur(70px); opacity: .16; }
.blob-a{ width: 480px; height: 480px; background: radial-gradient(circle, var(--secondary), transparent 70%); top: -160px; right: -120px; animation: float-a 14s ease-in-out infinite; }
.blob-b{ width: 380px; height: 380px; background: radial-gradient(circle, var(--accent), transparent 70%); bottom: -140px; left: -100px; animation: float-b 16s ease-in-out infinite; }
@keyframes float-a{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-30px, 30px); } }
@keyframes float-b{ 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(25px, -25px); } }

.dot-grid{
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,61,145,.10) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, black 40%, transparent 75%);
}

.hero .container{ position: relative; z-index: 1; }

.eyebrow-pipe{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  color: var(--secondary); margin-bottom: 1.1rem;
}
.eyebrow-pipe i{ width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); display: inline-block; }

.hero-title{ font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 1.1rem; color: #0F172A; }
.text-secondary-brand{ color: var(--secondary); }
.hero-sub{ font-size: 1.1rem; max-width: 500px; margin-bottom: 1.6rem; }
.hero-cta{ margin-bottom: 1.8rem; }

/* --- Avatar stack + rating row (replaces old icon-list trust row) --- */
.hero-social-proof{ display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.avatar-stack{ display: flex; }
.avatar-stack span{
  width: 42px; height: 42px; border-radius: 50%; border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  margin-left: -12px; box-shadow: var(--shadow-soft);
}
.avatar-stack span:first-child{ margin-left: 0; }
.hero-rating strong{ font-family: var(--font-mono); font-size: 1.05rem; color: var(--ink); }
.hero-stars{ color: #F5A623; letter-spacing: 1px; font-size: .85rem; margin: 0 6px; }
.hero-rating small{ display: block; color: var(--ink-faint); font-size: .78rem; }

/* --- Hero search bar --- */
.hero-search{
  position: relative; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  padding: .55rem .6rem .55rem 1.2rem; margin-bottom: 1.6rem; max-width: 480px;
  box-shadow: var(--shadow-soft); transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.hero-search:focus-within{ border-color: var(--secondary); box-shadow: 0 0 0 4px var(--tint-secondary); }
.hero-search > i{ color: var(--ink-faint); font-size: 1rem; }
.hero-search input{
  flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: .92rem; background: transparent;
  color: var(--ink); min-width: 0;
}
.hero-search input::placeholder{ color: var(--ink-faint); }
.hero-search button{
  border: none; background: var(--primary); color: #fff; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s var(--ease);
}
.hero-search button:hover{ background: var(--secondary); }

.search-suggestions{
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lift); border: 1px solid var(--line);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; z-index: 20;
}
.search-suggestions.is-open{ opacity: 1; visibility: visible; transform: none; }
.search-suggestion{
  width: 100%; display: flex; align-items: center; gap: 10px; text-align: left; border: none; background: none;
  padding: .6rem .7rem; border-radius: 10px; font-size: .87rem; color: var(--ink); transition: background .2s var(--ease);
}
.search-suggestion:hover{ background: var(--tint-primary); }
.search-suggestion i{ color: var(--primary); font-size: 1rem; width: 20px; text-align: center; }
.search-suggestion span{ flex: 1; font-weight: 500; }
.search-suggestion small{ color: var(--accent-600); font-family: var(--font-mono); }
.search-suggestion-empty{ padding: .7rem; font-size: .84rem; color: var(--ink-faint); text-align: center; }

/* --- Hero photo + stacked trust badges --- */
.hero-visual{ position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hero-illustration-wrap{
  position: relative; width: fit-content; margin: 0 auto;
  animation: illustration-in 1s var(--ease);
}
@keyframes illustration-in{ from{ opacity: 0; transform: translateY(24px); } to{ opacity: 1; transform: none; } }

.hero-photo-blob{
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, #E9F0FB 55%, #DCE8FB 100%);
  z-index: 0;
}
.hero-photo{
  position: relative; z-index: 1; display: block; margin: 0 auto;
  height: 440px; max-height: 48vh; width: auto;
  filter: drop-shadow(0 24px 34px rgba(10,61,145,.18));
}

@media (max-width: 575.98px){
  .hero-photo{ height: 340px; }
  .hero-photo-blob{ width: 240px; height: 240px; }
}

.hero-badge-stack{
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; width: 100%;
}
.hero-badge-item{
  display: flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: .8rem 1.1rem; flex: 1 1 180px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge-item:nth-child(2){ animation-delay: .5s; }
.hero-badge-item:nth-child(3){ animation-delay: 1s; }
.hero-badge-item:nth-child(4){ animation-delay: 1.5s; }
.hero-badge-item i{ font-size: 1.15rem; color: var(--primary); background: var(--tint-primary); padding: 9px; border-radius: 10px; flex-shrink: 0; }
.hero-badge-item span{ font-size: .82rem; font-weight: 600; color: var(--ink); }
@keyframes floaty{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }

@media (min-width: 992px){
  .hero-visual{ align-items: center; padding-top: 1rem; }
}

/* =========================================================================
   Booking phone mockup (moved here from hero — WhatsApp preview lives
   naturally next to the "send your booking" form)
   ========================================================================= */
.booking-phone-wrap{ max-width: 400px; }

.phone-frame{
  width: 280px; max-width: 100%;
  background: var(--dark);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lift), 0 0 0 8px rgba(10,61,145,0.05);
  position: relative;
  animation: phone-in 1s var(--ease);
}
@keyframes phone-in{ from{ opacity:0; transform: translateY(30px) rotate(-2deg); } to{ opacity:1; transform: translateY(0) rotate(0); } }

.phone-notch{
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: var(--dark); border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen{
  background: #E8EEF5;
  border-radius: 30px;
  overflow: hidden;
  height: 440px;
  display: flex; flex-direction: column;
}
.wa-header{
  background: var(--primary); color: #fff; padding: 16px 14px 12px; display: flex; align-items: center; gap: 10px;
  padding-top: 30px;
}
.wa-avatar{ width: 30px; height: 26px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; }
.wa-header strong{ display: block; font-size: .82rem; }
.wa-header small{ font-size: .64rem; opacity: .85; display: flex; align-items: center; gap: 4px; }
.wa-dot{ width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; display: inline-block; }
.wa-header i{ font-size: 1.1rem; opacity: .85; }

.wa-body{
  flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden;
  background-image:
    radial-gradient(rgba(10,61,145,0.035) 1px, transparent 1px);
  background-size: 16px 16px;
}
.wa-bubble{
  max-width: 84%; padding: 9px 13px; border-radius: 14px; font-size: .74rem; line-height: 1.45;
  box-shadow: 0 2px 6px rgba(15,23,42,.06);
  animation: bubble-in .45s var(--ease) both;
  white-space: pre-line;
}
@keyframes bubble-in{ from{ opacity:0; transform: translateY(10px) scale(.96); } to{ opacity:1; transform: none; } }
.wa-bubble.in{ background: #fff; color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.wa-bubble.out{ background: #DCF8C6; color: var(--ink); align-self: flex-end; border-bottom-right-radius: 4px; }
.wa-bubble .wa-time{ display:block; text-align:right; font-size: .58rem; color: var(--ink-faint); margin-top: 4px; font-family: var(--font-mono); }
.wa-bubble .wa-time i{ color: var(--secondary); font-size: .68rem; margin-left: 2px; }

.wa-typing{ display:flex; gap:4px; align-self:flex-start; background:#fff; padding: 10px 14px; border-radius: 14px; border-bottom-left-radius: 4px; box-shadow: 0 2px 6px rgba(15,23,42,.06); }
.wa-typing span{ width: 6px; height: 6px; background: var(--ink-faint); border-radius: 50%; animation: typing 1.2s infinite ease-in-out; }
.wa-typing span:nth-child(2){ animation-delay: .15s; }
.wa-typing span:nth-child(3){ animation-delay: .3s; }
@keyframes typing{ 0%,60%,100%{ transform: translateY(0); opacity:.4; } 30%{ transform: translateY(-4px); opacity:1; } }

.wa-input{
  background: #fff; margin: 0 10px 12px; padding: 9px 14px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 10px; color: var(--ink-faint); font-size: .72rem;
}
.wa-input i:first-child{ color: var(--ink-faint); }
.wa-input span{ flex: 1; }
.wa-input i:last-child{ color: #fff; background: var(--accent); padding: 6px; border-radius: 50%; font-size: .8rem; }

/* =========================================================================
   Trust strip
   ========================================================================= */
.trust-strip{ padding: 2.4rem 0; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-badge{ display: flex; align-items: center; gap: 12px; height: 100%; }
.trust-badge i{
  font-size: 1.4rem; color: var(--primary); background: var(--tint-primary);
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-badge strong{ display: block; font-size: .88rem; color: var(--ink); }
.trust-badge span{ font-size: .74rem; color: var(--ink-faint); }

/* =========================================================================
   Services
   ========================================================================= */
.services{
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, var(--tint-secondary), transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 100%, var(--tint-accent), transparent 60%);
}

.category-tabs{ display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 2.6rem; }
.category-tab{
  display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink-soft); font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  padding: .6rem 1.2rem; border-radius: var(--radius-pill); transition: all .3s var(--ease);
}
.category-tab i{ font-size: .95rem; }
.category-tab:hover{ border-color: var(--secondary); color: var(--secondary); }
.category-tab.active{
  background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; border-color: transparent;
  box-shadow: 0 8px 18px rgba(10,61,145,.24);
}

#servicesGrid [data-card-category].is-hidden{ display: none; }

.is-highlighted .service-card{ animation: card-highlight 1.6s var(--ease); }
@keyframes card-highlight{
  0%{ box-shadow: 0 0 0 0 rgba(30,94,216,.45); }
  35%{ box-shadow: 0 0 0 12px rgba(30,94,216,0); }
  100%{ box-shadow: var(--shadow-soft); }
}

.service-card{
  background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem; height: 100%; position: relative; overflow: hidden;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: transparent; }

.service-icon{
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
  font-size: 1.6rem; margin: 0 auto 1.2rem;
  box-shadow: 0 10px 20px rgba(10,61,145,.22);
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon{ transform: scale(1.08); }

.service-card h3{ font-size: 1.1rem; margin-bottom: .4rem; }
.service-card p{ font-size: .86rem; margin-bottom: .9rem; min-height: 40px; }

.service-includes{ margin-bottom: 1.1rem; text-align: left; }
.service-includes summary{
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: .78rem; font-weight: 600; color: var(--secondary);
  padding: .3rem 0; user-select: none;
}
.service-includes summary::-webkit-details-marker{ display: none; }
.service-includes summary i{ font-size: .68rem; transition: transform .3s var(--ease); }
.service-includes[open] summary i{ transform: rotate(180deg); }
.service-includes ul{ list-style: none; padding: .5rem 0 0; margin: 0; }
.service-includes li{ display: flex; align-items: flex-start; gap: 8px; font-size: .8rem; color: var(--ink-soft); padding: .25rem 0; }
.service-includes li i{ color: var(--accent); font-size: .85rem; margin-top: 2px; flex-shrink: 0; }

.service-footer{ padding-top: 1rem; border-top: 1px solid var(--line); }
.service-price{ font-family: var(--font-mono); font-weight: 700; color: var(--accent-600); font-size: 1.3rem; line-height: 1.1; display: block; margin-bottom: .1rem; }
.service-price small{ color: var(--ink-faint); font-weight: 400; font-size: .68rem; display: block; font-family: var(--font-body); margin-bottom: .9rem; }

.btn-service-book{
  display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--secondary); background: #fff; border: 1.5px solid var(--secondary);
  padding: .6rem 1rem; border-radius: var(--radius-pill);
  transition: all .3s var(--ease);
}
.btn-service-book:hover{ background: var(--secondary); color: #fff; }
.btn-service-book i{ font-size: .78rem; }

/* =========================================================================
   How it works
   ========================================================================= */
.how-it-works{ padding: 6rem 0; background: var(--white); }

.steps-track{ display: flex; align-items: stretch; gap: 1.2rem; }
.step-card{
  flex: 1; background: var(--bg); border-radius: var(--radius-md); padding: 2.2rem 1.8rem; text-align: center;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }

.step-icon-wrap{ position: relative; width: 74px; margin: 0 auto 1.3rem; }
.step-number{
  position: absolute; bottom: -6px; right: -8px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark); color: #fff; border: 3px solid var(--bg);
  font-family: var(--font-mono); font-weight: 700; font-size: .78rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(15,23,42,.25);
}
.step-icon{
  width: 74px; height: 74px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 12px 26px rgba(10,61,145,.28);
}
.step-card:nth-child(5) .step-icon{ background: linear-gradient(135deg, var(--accent), var(--accent-600)); box-shadow: 0 12px 26px rgba(23,163,74,.3); }
.step-card h3{ font-size: 1.2rem; margin-bottom: .6rem; }
.step-card p{ font-size: .9rem; margin-bottom: 0; }
.step-connector{ display: flex; align-items: center; justify-content: center; color: var(--ink-faint); font-size: 1.3rem; flex-shrink: 0; }

@media (max-width: 991.98px){
  .steps-track{ flex-direction: column; }
  .step-connector{ transform: rotate(90deg); margin: -.3rem 0; }
}

/* =========================================================================
   Why choose us
   ========================================================================= */
.why-us{ padding: 6rem 0; background: var(--white); border-top: 1px solid var(--line); }

.why-item{
  text-align: center; height: 100%; padding: 1rem;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s var(--ease);
}
.why-item:hover{ transform: translateY(-4px); }
.why-item i{
  font-size: 1.4rem; color: var(--primary); background: var(--tint-primary);
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.why-item strong{ display: block; font-size: .92rem; color: var(--ink); margin-bottom: 4px; }
.why-item span{ font-size: .78rem; color: var(--ink-faint); line-height: 1.4; }

/* =========================================================================
   Booking form
   ========================================================================= */
.booking{ padding: 6.5rem 0; background: var(--bg); }

.booking-card{
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-card); border: 1px solid var(--line); position: relative; overflow: hidden;
}
.booking-card::after{
  content:''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--tint-accent), transparent 70%);
  top: -160px; right: -160px; pointer-events: none;
}
.booking-card-head{ margin-bottom: 2.2rem; max-width: 520px; margin-inline: auto; }

/* --- Form progress indicator --- */
.form-progress{
  display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2.4rem;
  max-width: 420px; margin-inline: auto; position: relative; z-index: 1;
}
.form-progress-step{ display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 0 0 auto; width: 130px; }
.fp-dot{
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 2px solid var(--line); color: var(--ink-faint); font-family: var(--font-mono);
  font-weight: 600; font-size: .85rem; transition: all .35s var(--ease);
}
.fp-text{ font-size: .74rem; font-weight: 600; color: var(--ink-faint); transition: color .35s var(--ease); text-align: center; }
.form-progress-step.is-active .fp-dot{ background: var(--primary); border-color: var(--primary); color: #fff; }
.form-progress-step.is-active .fp-text{ color: var(--primary); }
.form-progress-step.is-done .fp-dot{ background: var(--accent); border-color: var(--accent); color: #fff; }
.form-progress-line{ flex: 1 1 auto; height: 2px; background: var(--line); margin: 0 -8px 22px; max-width: 80px; }

/* --- Step visibility --- */
.form-step{ display: none; animation: step-in .45s var(--ease); }
.form-step.is-active{ display: block; }
@keyframes step-in{ from{ opacity: 0; transform: translateX(14px); } to{ opacity: 1; transform: none; } }

/* --- Address field with geolocation button --- */
.address-field{ display: flex; gap: 8px; }
.address-field .form-control{ flex: 1; }
.locate-me-btn{
  display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--secondary);
  font-family: var(--font-display); font-weight: 600; font-size: .78rem; border-radius: 12px; padding: 0 .9rem;
  transition: all .25s var(--ease);
}
.locate-me-btn:hover{ border-color: var(--secondary); background: var(--tint-secondary); }
.locate-me-btn.is-loading i{ animation: spin 1s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.locate-me-status{ display: block; margin-top: 6px; font-size: .74rem; color: var(--ink-faint); }
.locate-me-status.is-error{ color: #C0392B; }
.locate-me-status.is-success{ color: var(--accent-600); }

@media (max-width: 575.98px){
  .address-field{ flex-direction: column; }
  .locate-me-btn{ justify-content: center; padding: .55rem; }
  .form-progress{ max-width: 100%; }
  .form-progress-step{ width: auto; }
  .fp-text{ font-size: .66rem; }
}

.form-label{ font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-control, .form-select{
  border-radius: 12px; border: 1.5px solid var(--line); padding: .72rem 1rem; font-size: .92rem;
  background: var(--bg); transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-control:focus, .form-select:focus{
  border-color: var(--secondary); box-shadow: 0 0 0 4px var(--tint-secondary); background: #fff;
}
.form-fineprint{ font-size: .78rem; color: var(--ink-faint); margin-top: .9rem; margin-bottom: 0; }

.service-area-badge{
  display: flex; align-items: center; gap: 8px; height: 46px;
  background: var(--tint-accent); border: 1.5px dashed var(--accent);
  border-radius: 12px; padding: 0 1rem; font-size: .88rem; color: var(--accent-600); font-weight: 500;
}
.service-area-badge i{ font-size: 1rem; }
.service-area-badge strong{ color: var(--ink); }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials{ padding: 6rem 0; background: #fff; }

.testimonial-card{
  background: var(--bg); border-radius: var(--radius-md); padding: 1.9rem; height: 100%;
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.testimonial-card i.bi-quote{ font-size: 1.8rem; color: var(--tint-secondary); position: absolute; top: 1.4rem; right: 1.6rem; }
.testimonial-stars{ color: var(--accent); margin-bottom: .9rem; font-size: .85rem; letter-spacing: 2px; }
.testimonial-card p{ font-size: .93rem; color: var(--ink); margin-bottom: 1.4rem; font-style: italic; }
.testimonial-person{ display: flex; align-items: center; gap: 12px; }
.testimonial-avatar{
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #fff; flex-shrink: 0;
}
.testimonial-person strong{ display: block; font-size: .92rem; }
.testimonial-person span{ font-size: .76rem; color: var(--ink-faint); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq{ padding: 6rem 0; background: var(--bg); }

.safazi-accordion .accordion-item{
  border: none; margin-bottom: .9rem; border-radius: var(--radius-md) !important; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.safazi-accordion .accordion-button{
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: 1.2rem 1.5rem; background: #fff;
}
.safazi-accordion .accordion-button:not(.collapsed){ color: var(--primary); background: #fff; box-shadow: none; }
.safazi-accordion .accordion-button:focus{ box-shadow: none; }
.safazi-accordion .accordion-button::after{
  background-image: none; content: '\F282'; font-family: 'bootstrap-icons'; font-size: 1rem; color: var(--accent);
  transition: transform .3s var(--ease);
}
.safazi-accordion .accordion-button:not(.collapsed)::after{ transform: rotate(180deg); }
.safazi-accordion .accordion-body{ padding: 0 1.5rem 1.4rem; font-size: .9rem; color: var(--ink-soft); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer{ background: var(--primary-800); color: rgba(255,255,255,.7); padding: 5rem 0 2rem; }
.site-footer .brand-name{ color: #fff; }
.footer-about{ color: rgba(255,255,255,.55); font-size: .88rem; margin: 1.1rem 0 1.4rem; max-width: 320px; }

.social-row{ display: flex; gap: 10px; }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease);
}
.social-row a:hover{ background: var(--accent); transform: translateY(-3px); }

.site-footer h6{ color: #fff; font-weight: 700; margin-bottom: 1.2rem; font-size: .92rem; letter-spacing: .02em; }
.footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a{ font-size: .88rem; color: rgba(255,255,255,.6); transition: color .25s var(--ease), padding-left .25s var(--ease); }
.footer-links a:hover{ color: var(--accent); padding-left: 4px; }

.footer-contact{ list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: .8rem; font-size: .87rem; }
.footer-contact i{ color: var(--accent); margin-right: 8px; }
.footer-contact a{ color: rgba(255,255,255,.7); }
.footer-contact a:hover{ color: #fff; }

.site-footer hr{ border-color: rgba(255,255,255,.1); margin: 2.5rem 0 1.5rem; }
.footer-bottom{ font-size: .8rem; color: rgba(255,255,255,.45); }

/* =========================================================================
   Floating WhatsApp button
   ========================================================================= */
.whatsapp-fab{
  position: fixed; bottom: 26px; right: 26px; z-index: 1200;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  color: #fff; font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(23,163,74,.4);
  animation: fab-pulse 2.6s infinite;
  transition: transform .3s var(--ease);
  will-change: transform;
}
.whatsapp-fab:hover{ transform: scale(1.08); color: #fff; }
@keyframes fab-pulse{
  0%{ box-shadow: 0 14px 30px rgba(23,163,74,.4), 0 0 0 0 rgba(23,163,74,.5); }
  70%{ box-shadow: 0 14px 30px rgba(23,163,74,.4), 0 0 0 16px rgba(23,163,74,0); }
  100%{ box-shadow: 0 14px 30px rgba(23,163,74,.4), 0 0 0 0 rgba(23,163,74,0); }
}

.back-to-top{
  position: fixed; bottom: 96px; right: 26px; z-index: 1200;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--primary); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  will-change: transform, opacity;
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover{ background: var(--primary); color: #fff; border-color: var(--primary); }

@media (max-width: 575.98px){
  .back-to-top{ width: 38px; height: 38px; font-size: .95rem; bottom: 80px; right: 18px; }
}

/* =========================================================================
   Mobile sticky action bar (replaces the floating WhatsApp button below lg)
   ========================================================================= */
.mobile-sticky-bar{
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1300;
  display: flex; align-items: center; gap: .8rem; background: var(--primary);
  padding: .7rem 1rem; padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -10px 28px rgba(15,23,42,.2);
  will-change: transform;
}
.msb-whatsapp{
  flex: 1; display: flex; align-items: center; gap: 10px; color: #fff; min-width: 0;
}
.msb-whatsapp i{ font-size: 1.4rem; flex-shrink: 0; }
.msb-whatsapp strong{ display: block; font-family: var(--font-display); font-weight: 600; font-size: .88rem; }
.msb-whatsapp small{ display: block; font-size: .68rem; color: rgba(255,255,255,.75); }
.msb-call{
  display: flex; align-items: center; gap: 6px; flex-shrink: 0; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--radius-pill);
  padding: .55rem 1rem; font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  transition: background .25s var(--ease);
}
.msb-call:active{ background: rgba(255,255,255,.12); }

@media (max-width: 991.98px){
  body{ padding-bottom: 74px; }
  .whatsapp-fab{ display: none; }
  .back-to-top{ bottom: 90px; }
}

/* =========================================================================
   Responsive tune-ups
   ========================================================================= */
@media (max-width: 575.98px){
  .hero{ padding: 6.5rem 0 4rem; }
  .services, .how-it-works, .why-us, .booking, .testimonials, .faq{ padding: 4rem 0; }
  .whatsapp-fab{ width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }
  .phone-screen{ height: 420px; }
}