/* ============================================================
   styles.css — PflegePlus
   ============================================================
   INDEX
   ─────────────────────────────────────────────────────────────
   00. Google Fonts Import
   01. CSS Variables (Design Tokens)
   02. Reset & Base
   03. Typography
   04. Utilities & Helpers
   05. Buttons
   06. Animations & Keyframes
   07. Background Patterns & Themes
   08. Layout — Container & Section
   09. Components
       09a. News Ticker
       09b. Header & Navigation
       09c. Mobile Navigation
       09d. Hero Section
       09e. Service Cards (Overview Grid)
       09f. Split Intro Sections
       09g. Booking & Form
       09h. Contact Section
       09i. FAQ Section
       09j. Social Media
       09k. Cookie Modal
       09l. Floating Actions
       09m. WhatsApp Modal & Toast
       09n. banner-2
       09o. cta-block_2
       09p. BASE NOTICE STYLES 
   10. Pages
       10a. Sub-pages: Impressum / Datenschutz / About / 404 / FAQ
       10b. Servicedetails 
   11. Footer
   12. Responsive — Breakpoints
   ============================================================ */


/* ============================================================
   00. Google Fonts Import
   ============================================================ */

/* ============================================================
      01. CSS Variables (Design Tokens)
      ============================================================ */
:root {
  /* ── Brand Colors ── */
  --primary: #059669;
  --primary-light: #d1fae5;
  --primary-dark: #047857;
  --secondary: #0f172a;

  /* ── Text ── */
  --text: #334155;
  --text-light: #64748b;
  --text-dark: #212529;
  --text-muted: #6c757d;

  /* ── Backgrounds ── */
  --bg: #f8fafc;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --white: #ffffff;

  /* ── Borders & Shadows ── */
  --border: #e2e8f0;
  --border-color: #dee2e6;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);

  /* ── Accent / Highlight ── */
  --accent-color: #ffc107;
  --gold-color: #EFBF04;
  --highlight-bg: #fef08a;
  --highlight-text: #854d0e;

  /* ── Legacy / Extended Palette ── */
  --primary-color: #7c7c7c;
  /* overridden per context */
  --primary-color-opy: #c2af864f;
  --secondary-color: #06D6A0;
  --secondary-color-opacity: #06d69e0f;
  --whatsapp: #25d366;
  --clean-blue: #00b4d8;
  --soft-blue: #e6f7ff;
  --eco-green: #4caf50;

  /* ── Layout ── */
  --header-h: 80px;
  --header-height: 8rem;
  --radius: 14px;
  --radius-small: 8px;
  --radius-medium: 12px;

  /* ── Typography ── */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --transition-speed: 0.3s ease-in-out;

  /* ── Photo URLs ── */
  --foto-url-1: url("https://cdn.pixabay.com/photo/2017/02/24/02/37/classroom-2093744_1280.jpg");
  --foto-url-2: url("https://img.freepik.com/fotos-kostenlos/untersuchungsbett-in-der-trockennadelklinik_107420-65816.jpg?t=st=1767778421~exp=1767782021~hmac=4eaaa358baf4fe2965bc2d6e28d97d0963db2bffa0026d5005733d4a26193e61&w=1480");
  --foto-url-3: url("https://images.unsplash.com/photo-1585637071663-799845ad5212?q=80&w=1170&auto=format&fit=crop");
  --foto-url-4: url("https://images.unsplash.com/photo-1763310225230-6e15b125935a?q=80&w=1171&auto=format&fit=crop");


  --dark: #0f172a;
  --bg: #f8fafc;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-md: rgba(0, 0, 0, 0.15);
  --text: #334155;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;


}


/* ============================================================
      02. Reset & Base
      ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: 'Inter', system-ui, -apple-system, sans-serif; */
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-family: var(--font-secondary);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}


/* Custom Scrollbar */
/* ::-webkit-scrollbar {
     width: 10px;
   }
   
   ::-webkit-scrollbar-track {
     background: var(--bg);
   }
   
   ::-webkit-scrollbar-thumb {
     background: var(--primary);
     border-radius: 5px;
   }
   
   ::-webkit-scrollbar-thumb:hover {
     background: var(--primary-dark);
   } */

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-track,
body::-webkit-scrollbar {
  display: none;
}


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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

a:hover {
  /* color: var(--secondary-color); */
}

ul {
  list-style: none;
}

small {
  font-weight: 700;
}

i {
  margin-left: 0;
}

/*  */


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* scroll-margin-top  */
header {
  height: var(--header-height);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

section:first-of-type {
  padding: 4rem 0;
}

section {
  padding-top: 6rem;
}

/* ============================================================
      03. Typography
      ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-primary); */
}

/* Section titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  /* color: var(--secondary); */
  margin-bottom: 12px;
}

header {
  position: fixed;
  z-index: 99999;
  width: 100%;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 16px;
}

/* Highlighted text within copy */
.highlight {
  color: var(--secondary-color);
}

.highlight-strong {
  /* optional: extend per context */
}

/* h2 decorative variant */
.h2_style {
  background: #e6e6e6 !important;
  color: #25d366 !important;
  display: inline-block !important;
  padding: 7px 32px !important;
  border-radius: 20px 0 !important;
  margin: 0 0 10px 0 !important;
}


/* ============================================================
      04. Utilities & Helpers
      ============================================================ */

/* Hide scrollbar */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.relative {
  position: relative !important;
}

/* HTMX scroll behaviour */
.htmx-request {
  scroll-behavior: auto;
}

.htmx-settling {
  scroll-behavior: smooth;
}

/* Highlight box */
.highlight-box {
  display: flex;
  background: var(--highlight-bg);
  border-left: 4px solid var(--highlight-text);
  padding: 8px 10px;
  border-radius: 0 10px 10px 0;
  margin: 2px 0;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;


}

.highlight-box strong {
  display: block;
  color: var(--highlight-text);
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.highlight-box strong::before {
  margin-right: 8px;
}

.highlight-box i {
  margin-right: 10px;
}

.highlight-box h3 {
  /* color:red; */
}



/* Legal note */
.legal-note {
  margin-top: 40px;
  text-align: center;
  font-weight: 600;
  background: var(--highlight-bg);
  color: var(--highlight-text);
  border-left: 5px solid #eab308;
}

/* Info / detail boxes */
.info-box {
  border-top: 1px dashed var(--border-color);
  padding-top: 25px;
  margin-top: 25px;
}

.detail-box {
  display: flex;
  flex-direction: column;
}

/* Ordered feature list */
.ul {
  padding-left: 0;
  margin: 15px 0;
}

.ul li {
  padding: 12px 0 12px 40px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  border-radius: 8px;
  font-weight: 700;
  background:
    radial-gradient(circle at 20% 80%, rgb(6 214 160 / 6%) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 245, 238, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgb(6 214 160 / 4%) 0%, transparent 50%),
    repeating-linear-gradient(45deg, #f6f6f6 0, #f6f6f6 1px, transparent 0, transparent 50%) #ffffff;
  background-size: 100% 100%, 100% 100%, 100% 100%, 10px 10px;
}

.ul li i {
  font-weight: 900;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1em;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

[data-href] {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* إضافة تأثير عند تمرير الماوس */
[data-href]:hover {
  opacity: 0.8;
  color: var(--primary-color);
}

/* ============================================================
      05. Buttons
      ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 10px;
  border-radius: var(--radius-small);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all var(--transition-speed);
  background: var(--secondary-color);
  color: white;
}

.btn-primary {
  background: var(--secondary-color);
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 10px var(--shadow-light);
}

.btn-secondary {
  background: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 10px var(--shadow-light);
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--gold-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 4px 10px var(--shadow-light);
  transform: translateY(-2px);
}

/* CTA hero button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #059669;
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 25px rgba(5, 150, 105, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  /* background: #047857; */
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(5, 150, 105, 0.4);
}

/* Call button (reusable) */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(5, 150, 105, .3);
}

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, .35);
}

/* Header CTA button */
.cta-button-header {
  background: #059669;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.cta-button-header:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Form submit button */
.btn-form {
  width: 100%;
  margin-top: 15px;
}

.btn-form:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form buttons in large contexts */
.btn-lg {
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-lg:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Danger / delete */
.btn-delete {
  background: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
  padding: 10px 20px;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-delete:hover {
  background: #dc3545;
  color: white;
}

/* FAQ feedback buttons */
.faq-feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}

.faq-feedback-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

.faq-feedback-btn.voted-yes {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.faq-feedback-btn.voted-no {
  border-color: #f87171;
  background: #fef2f2;
  color: #b91c1c;
}

.faq-feedback-btn:disabled {
  opacity: .55;
  cursor: default;
  pointer-events: none;
}

.faq-feedback-btn.heart-anim {
  animation: heartbeat .6s ease;
  border-color: #f43f5e;
  background: #fff1f2;
  color: #f43f5e;
  pointer-events: none;
}


/* ============================================================
      06. Animations & Keyframes
      ============================================================ */
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes _pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 161, 105, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(56, 161, 105, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 161, 105, 0);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveLine {
  0% {
    transform: translateX(-50px);
  }

  50% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(-50px);
  }
}

@keyframes moveLine_2 {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(75px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  20% {
    transform: translateX(1.25);
  }

  40% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.18);
  }

  80% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Utility class — animated underline */
.animated-underLine::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
  animation: moveLine 5s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}


/* ============================================================
      07. Background Patterns & Themes
      ============================================================ */

/* Diagonal lines */
.pattern-diagonal-lines {
  background-image: repeating-linear-gradient(45deg, #f6f6f6 0, #f6f6f6 1px, transparent 0, transparent 50%) !important;
  background-size: 10px 10px !important;
  background-color: #ffffff !important;
}

/* Fences pattern */
.pattern-fences {
  background:
    radial-gradient(27% 29% at right, #0000 83%, #ffffff 85% 99%, #0000 101%) calc(13px / 2) 13px,
    radial-gradient(27% 29% at left, #0000 83%, #ffffff 85% 99%, #0000 101%) calc(13px / -2) 13px,
    radial-gradient(29% 27% at top, #0000 83%, #ffffff 85% 99%, #0000 101%) 0 calc(13px / 2),
    radial-gradient(29% 27% at bottom, #0000 83%, #ffffff 85% 99%, #0000 101%) 0 calc(13px / -2) #fdfdfd;
  background-size: 26px 26px;
}

/* Wave lines */
.pattern-lines-wave {
  background-image: repeating-linear-gradient(445deg, #ffffff, #ffffff 10px, #fafafa 10px, #fafafa 11px);
  background-size: 14px 14px;
  background-color: #ffffff;
}

/* Named background themes */
.bg-1 {
  background:
    radial-gradient(circle at 20% 80%, #ffdcbe4d 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #fff5ee59 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, #ffd2b426 0%, transparent 50%) #008a2e30;
}

.bg-2 {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--golden-5) 100%);
  background-size: 200% 200%;
}

.bg-4 {
  background:
    radial-gradient(circle at 20% 80%, rgb(6 214 160 / 6%) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 245, 238, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgb(6 214 160 / 4%) 0%, transparent 50%),
    repeating-linear-gradient(45deg, #f6f6f6 0, #f6f6f6 1px, transparent 0, transparent 50%) #ffffff;
  background-size: 100% 100%, 100% 100%, 100% 100%, 10px 10px;
}

/* Footer background */
.bg-3,
.footer-background {
  background:
    radial-gradient(27% 29% at right, #0000 83%, rgba(255, 193, 8, 0.1) 85% 99%, #0000 101%) calc(13px / 2) 13px,
    radial-gradient(27% 29% at left, #0000 83%, rgba(255, 193, 8, 0.1) 85% 99%, #0000 101%) calc(13px / -2) 13px,
    radial-gradient(29% 27% at top, #0000 83%, rgba(255, 193, 8, 0.1) 85% 99%, #0000 101%) 0 calc(13px / 2),
    radial-gradient(29% 27% at bottom, #0000 83%, rgba(255, 193, 8, 0.1) 85% 99%, #0000 101%) 0 calc(13px / -2) #212529;
  background-size: 26px 26px;
}

/* Generic brand gradient */
.background_1 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* SVG background pattern (testimonial cards) */
.bgi-1 {
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='53.101' height='79.65' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%23ffffff'/><path d='M57.589 69.148 45.16 81.466M55.4 65.24 41.735 78.784M50.49 64.03 38.873 75.544m5.424-11.453L37 71.324m20.642-1.662-.006.002a5.979 5.979 0 0 0-1.747-3.985 6.006 6.006 0 0 0-8.495 0l-.125.125-.125-.125a6.006 6.006 0 0 0-8.495 0 5.98 5.98 0 0 0-1.747 3.985l-.006-.002s-1.022 6.436 10.362 13.126l.009.009.003-.002.003.002.009-.01c11.382-6.689 10.36-13.125 10.36-13.125Z' stroke-width='1' stroke='%23f4433610' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}


/* ============================================================
      08. Layout — Container & Section
      ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 2.5rem 0; */
  padding: 20px;


}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  /* background: var(--white); */
  /* color: var(--primary); */
  transition: transform 0.3s ease;

}

.section-header h1 {
  color: #000000;
  color: var(--primary);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 10px rgb(255, 255, 255);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
}

.section-header p {
  color: var(--text-muted);
  color: black;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 1rem auto 0;
  text-shadow: 2px 2px 2px rgb(255, 255, 255);

}

.section-header-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(5, 150, 105, .15);
}

.section-header img {
  object-fit: cover;
  max-height: 350px;
  width: 100%;
  transition: all 0.5s ease;
}

.section-header img:hover {
  transform: scale(1.02);
}

/* Content header (inside cards) */
.content-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

/* Feature / Service / Testimonial grids */
.features-grid,
.services-grid,
.testimonial-grid {
  display: grid;
  gap: 30px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* RTL fix for contact headings */
[dir="ltr"] .contact-info h2::after {
  left: 0;
}

[dir="rtl"] .contact-info h2::after {
  right: 0;
}





@media (max-width: 480px) {
  .container {
    padding: 20px;
  }
}

/* ============================================================
      09a. News Ticker
      ============================================================ */
.news-ticker {
  background: linear-gradient(90deg, #059669 0%, #047857 100%);
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.news-ticker-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-label {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  animation: tickerScroll 20s linear infinite;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item::before {
  content: '•';
  color: #86efac;
}

.ticker-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  flex-shrink: 0;
}


/* ============================================================
      09b. Header & Navigation (Desktop)
      ============================================================ */
.top-header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1002;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.logo-img {
  width: 170px;
  height: 60px;
  border-radius: 10px;


}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 500;
  margin-top: 2px;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
}

/* Header right area */
.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #059669;
}

/* Hamburger icon */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #475569;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
}

.menu-icon {
  font-size: 1.4rem;
  background: none;
  color: white;
  border-radius: 10px;
  padding: 6px;
}



/* ============================================================
      09c. Mobile Navigation
      ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  flex-direction: column;
  padding: 70px 30px 30px;
  transition: right 0.4s ease;
}

.mobile-nav.active {
  right: 0;
}


.mobile-nav a:hover {
  color: #059669;
}

.mobile-nav .header-cta {
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
}

/* Overlay behind mobile menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}




.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #334155;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  background: var(--primary-light, #f1f5f9);
  color: var(--primary, #059669);
}

.mobile-nav a i {
  width: 24px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary, #059669);
  opacity: 0.85;
}


/* ============================================================
      09d. Hero Section
      ============================================================ */
.hero-section {
  background:
    linear-gradient(220deg, rgb(209 250 229 / 85%) 0%, #ffffff 100%),
    /* url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    url('/assets/img/hero-background.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 5%;
}

/* Badge row above title */
.hero-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  margin-bottom: 35px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-services-badge span {
  color: #059669;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Headings */
.hero-title {
  font-size: 3.2rem;
  /* margin-bottom: 20px; */
  margin: 50px 0 20px 0;
  font-weight: 300;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-title strong {
  font-weight: 700;
  color: #059669;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #475569;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* 4-column service cards inside hero */
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid rgba(5, 150, 105, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hero-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.3);
}

.hero-service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.hero-service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.hero-service-target {
  font-size: 0.85rem;
  color: #059669;
  font-weight: 500;
}

.hero-service-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 10px;
  line-height: 1.4;
}

/* Quick tag pills */
.quick-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.quick-tag {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Stats row */
.trust-stats {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(5, 150, 105, 0.15);
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 5px;
}


/* ============================================================
      09e. Service Cards (Overview Grid)
      ============================================================ */
.feature-card,
.service-card,
.testimonial-card {
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

/* Feature card */
.feature-card {
  padding: 30px;
  background: var(--bg-white);
  text-align: center;
}

.feature-card i {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Service card */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 25px;
  padding: 35px 25px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-title {
  padding-top: 10px;
  font-size: 1.4rem;
  color: #1a202c;
  margin-bottom: 10px;
}

.service-card-title i {
  margin: 0 10px;

}

.service-card p {
  font-size: 0.95rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 1em;
}

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

.service-card-buttons {}


/* Price badge */
.top-right-price {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 15px;
  color: white;
  font-weight: 800;
  border-bottom-left-radius: 25px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Service info area inside card */
.service-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.service-info p {
  flex: 1 1 auto;
  margin: 0 0 1rem;
}

.service-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-info .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Minimal features list inside card */
.service-features-minimal {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-features-minimal li {
  font-size: 0.88rem;
  color: #4a5568;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.service-features-minimal li i {
  margin-right: 12px;
  font-size: 1rem;
}

/* Card footer */
.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  border-top: 1px dashed #eee;
}

.min-order {
  font-size: 0.8rem;
  color: #a0aec0;
  font-weight: 500;
}

.btn-more {
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 12px;
  border: 2px solid;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-more:hover {
  filter: brightness(0.9);
  background: #f8f9fa;
}

/* Testimonial card */
.testimonial-card {
  padding: 30px;
  border: 1px solid var(--border-color);
}

.testimonial-card .quote {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.testimonial-card p {
  font-style: italic;
  margin: 15px 0;
  color: var(--text-dark);
}

.testimonial-card .stars i {
  color: var(--accent-color);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.client-info span {
  color: var(--text-muted);
  font-weight: 500;
}

/* Service preview (form sidebar) */
.service-preview {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: slideIn 0.4s ease;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.preview-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.preview-info strong {
  display: block;
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.preview-link {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
}

.preview-link:hover {
  opacity: 0.8;
  color: white !important;
}

.preview-price {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
}

.preview-desc {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .service-card-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 5px;
  }
}

/* ============================================================
      09f. Split Intro Sections
      ============================================================ */
.intro-section {
  padding: 100px 30px;
  /* max-width: 1400px; */
  margin: 0 auto;
}

.intro-section:nth-child(even) {
  background: #f0fdf4;
}

.intro-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-section:nth-child(even) .intro-section-container {
  direction: rtl;
}

.intro-section:nth-child(even) .intro-service-content {
  direction: ltr;
}

/* Image column */
.intro-service-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.intro-service-image-wrapper:hover .service-image {
  transform: scale(1.05);
}

.intro-service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 150, 105, 0.3), transparent);
}

.intro-service-badge-on-image {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: #059669;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  direction: ltr;

}

/* Text column */
.intro-service-content {
  padding: 20px 0;
}

.intro-service-header {
  display: flex;
  /* gap: 40px; */
  align-items: center;
}

.intro-section-icon {
  width: 50px;
  height: 55px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  /* margin-bottom: 25px; */
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
  margin-right: 20px;
}

.intro-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.intro-section-subtitle {
  font-size: 1.1rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-service-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 30px;
}

.intro-service-features-list {
  list-style: none;
  margin-bottom: 35px;
}

.intro-service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #334155;
  font-size: 1rem;
}

/* .intro-service-features-list li::before {
     content: '✓';
     width: 24px;
     height: 24px;
     background: rgba(5, 150, 105, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #059669;
     font-weight: 700;
     flex-shrink: 0;
     font-size: 0.8rem;
   } */

.intro-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #059669;
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.intro-service-cta:hover {
  background: #047857;
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.intro-service-cta-arrow {
  transition: transform 0.3s;
}

.intro-service-cta:hover .intro-service-cta-arrow {
  transform: translateX(5px);
}


/* ============================================================
      09g. Booking & Form
      ============================================================ */


/* ═══════════════════════════════════════════════════════════════
      BOOKING SECTION — CSS
      Palette: --primary #059669 · --bg #f8fafc · --dark #0f172a
      ═══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.booking {
  padding: 80px 0;
  background: #eef3ee;
  position: relative;
}



.booking-content {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: start;
}

/* ════════════════════════════════
      LEFT COLUMN — TEXT
      ════════════════════════════════ */
.booking-text {
  padding-top: 8px;
}

/*  */
/*  */

/* Badge */
.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #d1fae5;
  color: #065f46;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.booking-badge i {
  font-size: 10px;
}

/* Heading */
.booking-text h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 300;
  color: #132213;
  line-height: 1.28;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.booking-text h2 strong {
  font-weight: 600;
  color: #059669;
  font-style: italic;
  display: block;
}

/* Subtext */
.booking-text>p {
  font-size: 14.5px;
  color: #4a5e4a;
  line-height: 1.85;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 380px;
}

/* Advantages list */
.booking-advantages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.booking-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #d8e8d8;
  font-size: 13.5px;
  color: #2d4a2d;
  font-weight: 400;
  line-height: 1.55;
}

.booking-advantages li:last-child {
  border-bottom: none;
}

.booking-advantages-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-advantages-ico i {
  color: #059669;
  font-size: 13px;
}

.booking-advantages-txt strong {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #132213;
  margin-bottom: 2px;
}

.booking-advantages-txt span {
  font-size: 12.5px;
  color: #5a7a5a;
  font-weight: 300;
}

/* Trust badge */
.booking-trust {
  margin-top: 28px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d8e8d8;
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-trust-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0faf5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-trust-ico i {
  color: #059669;
  font-size: 20px;
}

.booking-trust-stars {
  color: #EFBF04;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}

.booking-trust-txt strong {
  font-size: 14px;
  color: #132213;
  font-weight: 500;
}

.booking-trust-txt span {
  font-size: 12px;
  color: #5a7a5a;
}

/* ════════════════════════════════
      RIGHT COLUMN — FORM CARD
      ════════════════════════════════ */
.booking-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #cfe0cf;
  box-shadow: 0 2px 0 #b6d4b6;
  position: relative;
}

.booking-form::after {
  content: "";
  position: absolute;
  background: #f36c00;
  z-index: -1;
}


/* Card top */
.booking-form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eaf1ea;
}

.booking-form-top h3 {
  font-weight: 700;
  color: #059669;
  /* font-style: italic; */
  display: block;
  font-size: 23px;
}

.booking-form-top-secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #5a7a5a;
  font-weight: 400;
}

.booking-form-top-secure i {
  color: #059669;
  font-size: 11px;
}

/* ════════════════════════════════
      FORM GROUPS — BASE
      ════════════════════════════════ */
.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #5a7a5a;
  margin-bottom: 7px;
}


.required-mark {
  color: #059669;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

/* ── Text / Tel / Email / Number inputs ── */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d4e4d4;
  border-radius: 9px;
  font-family: var(--font-secondary, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  color: #132213;
  background: #f8fbf8;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8c0a8;
  font-weight: 300;
}

.form-group textarea {
  height: 88px;
  resize: vertical;
}

.form-group small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 11.5px;
  color: #25d366;
  font-weight: 500;
}

.form-group .form-group-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 11.5px;
  color: #5a7a5a;
  font-weight: 500;
}



/*  */

/* ── Number stepper ── */
/* .num-wrap {
     position: relative;
     display: flex;
     align-items: center;
   }
   
   .num-wrap input[type="number"] {
     padding-right: 48px;
     -moz-appearance: textfield;
   }
   
   .num-wrap input[type="number"]::-webkit-inner-spin-button,
   .num-wrap input[type="number"]::-webkit-outer-spin-button {
     display: none;
   }
   
   .num-btns {
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     display: flex;
     flex-direction: column;
     width: 36px;
     border-left: 1px solid #d4e4d4;
     border-radius: 0 9px 9px 0;
     overflow: hidden;
   }
   
   .num-btns button {
     flex: 1;
     border: none;
     background: #f0faf5;
     color: #059669;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.15s;
     line-height: 1;
   }
   
   .num-btns button:hover {
     background: #d1fae5;
   }
   
   .num-btns button:first-child {
     border-bottom: 1px solid #d4e4d4;
   } */

/* ── Select ── */
.select-wrapper,
.sel-wrap {
  position: relative;
}

.modern-select,
.sel-wrap select {
  width: 100%;
  padding: 10px 38px 10px 14px;
  border: 1px solid #d4e4d4;
  border-radius: 9px;
  font-family: var(--font-secondary, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  color: #132213;
  background: #f8fbf8;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.modern-select:focus,
.sel-wrap select:focus {
  border-color: #00ff80;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.09);
}

.modern-select option[value=""],
.sel-wrap select option[value=""] {
  color: #a8c0a8;
}

.modern-select option.popular-option {
  font-weight: 600;
  color: #065f46;
}

.select-arrow,
.sel-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #5a7a5a;
  font-size: 11px;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.modern-select:focus+.select-arrow,
.sel-wrap select:focus~.sel-arrow {
  transform: translateY(-50%) rotate(180deg);
}



@keyframes fd {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PLZ Dropdown */
.plz-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #d4e4d4;
  border-radius: 10px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.plz-item {
  padding: 10px 14px;
  font-size: 13.5px;
  color: #2d4a2d;
  cursor: pointer;
  transition: background 0.15s;
}

.plz-item:hover {
  background: #f0faf5;
  color: #059669;
}

/* ── Divider ── */
.divider,
.sec-div {
  height: 1px;
  background: #eaf1ea;
  margin: 18px 0;
}

/* ── Row 2-col ── */
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Wrap (multi-field grid) ── */
.form-group.warp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ════════════════════════════════
      RADIO CARDS
      ════════════════════════════════ */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.radio-group.stacked {
  flex-direction: column;
  gap: 7px;
}

.radio-card {
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1.5px solid #d4e4d4;
  border-radius: 9px;
  font-size: 13.5px;
  color: #2d4a2d;
  background: #f8fbf8;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-weight: 400;
  /* override the global uppercase label */
  text-transform: none;
  letter-spacing: 0;
}

.radio-card label i {
  color: #5a7a5a;
  font-size: 13px;
}

.radio-card input:checked~label {
  border-color: #059669;
  background: #f0faf5;
  color: #065f46;
  font-weight: 500;
}

.radio-card input:checked~label i {
  color: #059669;
}

.radio-card label:hover {
  border-color: #059669;
  background: #f0faf5;
}

/* ════════════════════════════════
      CHECKBOX ITEMS (addon cards)
      ════════════════════════════════ */
.check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid #d4e4d4;
  border-radius: 9px;
  background: #f8fbf8;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.check-item:hover,
.check-item.checked {
  border-color: #059669;
  background: #f0faf5;
}

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #059669;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.check-item-body {
  flex: 1;
}

.check-item-body strong {
  display: block;
  font-size: 13.5px;
  color: #132213;
  font-weight: 500;
  margin-bottom: 2px;
}

.check-item-body span {
  font-size: 12px;
  color: #5a7a5a;
  font-weight: 300;
}

.check-item-price {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* ════════════════════════════════
      BOOLEAN (Ja / Nein)
      ════════════════════════════════ */
.bool-wrap {
  display: flex;
  gap: 10px;
}

.bool-btn {
  flex: 1;
  padding: 10px;
  border: 1.5px solid #d4e4d4;
  border-radius: 9px;
  background: #f8fbf8;
  font-family: var(--font-secondary, 'Plus Jakarta Sans', sans-serif);
  font-size: 13.5px;
  color: #4a5e4a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-weight: 400;
}

.bool-btn:hover {
  border-color: #059669;
  background: #f0faf5;
}

.bool-btn.active-yes {
  border-color: #059669;
  background: #f0faf5;
  color: #065f46;
  font-weight: 500;
}

.bool-btn.active-yes i {
  color: #059669;
}

.bool-btn.active-no {
  border-color: #dc2626;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 500;
}

.bool-btn.active-no i {
  color: #dc2626;
}

/* ════════════════════════════════
      FILE UPLOAD
      ════════════════════════════════ */
.file-drop {
  border: 2px dashed #d4e4d4;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  background: #f8fbf8;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.file-drop:hover,
.file-drop.drag {
  border-color: #059669;
  background: #f0faf5;
}

.file-drop i {
  font-size: 28px;
  color: #a8c0a8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.18s;
}

.file-drop:hover i,
.file-drop.drag i {
  color: #059669;
}

.file-drop p {
  font-size: 13px;
  color: #5a7a5a;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.file-drop p strong {
  color: #059669;
  font-weight: 500;
}

.file-drop small {
  font-size: 11.5px;
  color: #a8c0a8;
  display: block;
  margin-top: 4px;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #d4e4d4;
  border-radius: 8px;
  font-size: 12.5px;
  color: #2d4a2d;
}

.file-item i {
  color: #059669;
  font-size: 13px;
}

.file-item-remove {
  margin-left: auto;
  color: #94a3b8;
  cursor: pointer;
  font-size: 11px;
  transition: color 0.15s;
}

.file-item-remove:hover {
  color: #dc2626;
}

/* ════════════════════════════════
      DSGVO CHECKBOXES
      ════════════════════════════════ */
.form-group_checks {
  padding: 14px 16px;
  background: #f8fbf8;
  border: 1px solid #d4e4d4;
  border-radius: 10px;
  margin: 18px 0 18px;

}

.form-group_checks p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #4a5e4a;
  line-height: 1.7;
}

.form-group_checks p+p {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid #e4eee4;
}

.form-group_checks input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #059669;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-group_checks label {
  font-size: 12px;
  color: #4a5e4a;
  cursor: pointer;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.form-group_checks a {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
}

/* ════════════════════════════════
      SUBMIT BUTTON
      ════════════════════════════════ */
.btn-form {
  width: 100%;
  padding: 13px 20px;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-secondary, 'Plus Jakarta Sans', sans-serif);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.1px;
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-form:hover:not(:disabled) {
  background: #047857;
  transform: translateY(-1px);
}

.btn-form:active:not(:disabled) {
  transform: translateY(0);
}

.btn-form:disabled {
  background: #c8d9c8;
  color: #8a9e8a;
  cursor: not-allowed;
}

/* ════════════════════════════════
      DETAILS QUESTIONS (dynamic)
      ════════════════════════════════ */
.details-questions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 17px;
}

.details-questions-item {
  background: #f8fbf8;
  border: 1px solid #d4e4d4;
  border-radius: 10px;
  padding: 14px 16px;
}

.details-question-text {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #5a7a5a;
  margin-bottom: 10px;
}

.details-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ════════════════════════════════
      RANGE SLIDER
      ════════════════════════════════ */
.range-wrap {
  padding: 4px 0;
}

.range-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(to right,
      #059669 0%,
      #059669 var(--pct, 50%),
      #d4e4d4 var(--pct, 50%),
      #d4e4d4 100%);
  outline: none;
  cursor: pointer;
}

.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #059669;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #7a9a7a;
  margin-top: 6px;
}

.range-val {
  font-size: 13.5px;
  font-weight: 500;
  color: #132213;
  margin-top: 4px;
}

/* ════════════════════════════════
      RESPONSIVE
      ════════════════════════════════ */
@media (max-width: 968px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 740px) {
  .booking {
    padding: 48px 0;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .row2,
  .form-group.warp {
    grid-template-columns: 1fr;
  }

  .bool-wrap {
    flex-direction: column;
  }
}

/* ════════════════════════════════
      EXCLUDED SERVICES NOTICE
      ════════════════════════════════ */

.details-feature-card.excluded {
  border-left: 4px solid red;

}

.details-feature-card.excluded i {
  color: red;

}

.details-feature-card.excluded span.details-feature-text {
  font-weight: 700;
  color: red;

}




















/* ════════════════════════════════
      ADDITIONAL DETAILS — question wrapper
      ════════════════════════════════ */
.additional-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 17px;
  padding: 16px;
  background: #f8fbf8;
  border: 1px solid #d4e4d4;
  border-radius: 12px;
}

/* ════════════════════════════════
      ADDITIONAL SERVICES — addon wrapper
      ════════════════════════════════ */
.additional-services {
  margin-bottom: 17px;
}

.fg-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #5a7a5a;
  margin-bottom: 9px;
}

/* ════════════════════════════════
      TOOLTIP / WARNHINWEIS
      ════════════════════════════════ */
.booking-tooltip-notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 9px;
  padding: 11px 14px;
  margin-bottom: 16px;
}

.booking-tooltip-notice i {
  color: #d97706;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

.booking-tooltip-notice p {
  font-size: 12.5px;
  color: #92400e;
  line-height: 1.6;
  font-weight: 300;
}



/*  */
/* ── PLZ dropdown ── */
/*  */
.plz-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #d4e4d4;
  border-radius: 10px;
  margin-top: 0;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.plz-item {
  padding: 10px 14px;
  font-size: 13.5px;
  color: #2d4a2d;
  cursor: pointer;
  transition: background 0.15s;
}

.plz-item:hover {
  background: #f0faf5;
  color: #059669;
}



/*  */


/* addons */
/*  */
.additional-information {
  background: #EEF3EE;
  padding: 12px;
  border-radius: 10px;
  margin: 10px 0 10px 0;
}

.additional-information .bq-header,
.booking-addons-header {

  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #5a7a5a;
  /* margin-bottom: 7px; */
  /* padding-bottom: 20px; */
  padding: 10px 0 20px 0;

}


.booking-addons-total {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  /* letter-spacing: 0.55px; */
  text-transform: uppercase;
  color: #5a7a5a;
  /* margin-bottom: 7px; */
  padding: 20px 0;
  flex-direction: row;

}

.booking-addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-addon-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* مسافة بين العناصر */
  /* max-width: 600px; */
  margin: 20px 0;
}

.booking-addon-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition);
  cursor: pointer;
}

.booking-addon-item:hover {
  border-color: var(--primary);
}

.booking-addon-item.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.booking-addon-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.booking-addon-item.selected .booking-addon-check {
  background: var(--primary);
  border-color: var(--primary);
}

.booking-addon-item.selected .booking-addon-check::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}


.booking-addon-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}





/* ne */

/* .addon-checkbox {
                   display: none;
               } */
/* تنسيق المعلومات */
.booking-addon-info {
  flex-grow: 1;
  /* تجعل النصوص تأخذ المساحة المتبقية */
}

.booking-addon-info strong {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.booking-addon-price {
  font-size: 0.85rem;
  color: #666;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}


/* تنسيق العنصر الرئيسي */
label.booking-addon-item {
  display: flex;
  align-items: center;
  /* محاذاة الأيقونة مع النص عمودياً */
  padding: 15px 20px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 15px;
  /* مسافة بين الأيقونة والنص */
}

/* إخفاء الـ Checkbox */


/* إعداد الأيقونة (قبل التفعيل - رمادية) */
label.booking-addon-item::before {
  content: '\f058';
  /* رمز الدائرة */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  /* وزن خفيف للدائرة غير المعبأة أو العادية */
  color: #ccc;
  /* لون رمادي عند الإلغاء */
  font-size: 1.4rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* منع انكماش الأيقونة */
}

/* التنسيق عند التفعيل (اللون الأخضر) */
label.booking-addon-item:has(.addon-checkbox:checked) {
  border-color: #2e7d32;
  background-color: #f1f8e9;
}

/* تغيير الأيقونة عند التفعيل */
label.booking-addon-item:has(.addon-checkbox:checked)::before {
  content: '\f058';
  font-weight: 900;
  /* جعلها معبأة (Solid) إذا كان FontAwesome يدعم ذلك */
  color: #2e7d32;
  /* لون أخضر */
}



/* تغيير لون السعر أيضاً عند التفعيل ليناسب التصميم */
label.booking-addon-item:has(.addon-checkbox:checked) .booking-addon-price {
  background: #e8f5e9;
  color: #2e7d32;
}


/* ============================================================
      09h. Contact Section
      ============================================================ */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}

/* Opening hours card */
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 20px;
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.hours-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-title i {
  color: var(--primary);
  font-size: 1.4rem;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge.open {
  background: #dcfce7;
  color: #166534;
}

.status-badge.closed {
  background: #fee2e2;
  color: #991b1b;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-badge.open .status-dot {
  background: #22c55e;
}

.status-badge.closed .status-dot {
  background: #ef4444;
  animation: none;
}

/* Day list */
.days-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.day-item:hover {
  background: #f8fafc;
  border-color: var(--border);
}

.day-item.today {
  background: linear-gradient(135deg, var(--primary-light) 0%, #dcfce7 100%);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
  transform: scale(1.02);
}

.day-name {
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-hours {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.95rem;
}

.day-item.today .day-name {
  color: var(--primary-dark);
  font-weight: 700;
}

.day-item.today .day-hours {
  color: var(--primary-dark);
  font-weight: 600;
}

.closed-text {
  color: #ef4444;
  font-style: italic;
}

/* Info cards */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.info-block:hover {
  transform: translateY(-4px);
}

.info-item {
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item:first-child {
  padding-top: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.info-value:hover {
  color: var(--primary);
}

.info-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Social block */
.social-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.social-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-icon,
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.x {
  background: #000000;
}

.social-link.linkedin {
  background: #0a66c2;
}

/* CTA band */
.cta-block {
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
  background: var(--primary);

  border-radius: var(--radius);
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/*  */


/* Reusable contact components */
.banner-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* background: linear-gradient(135deg, var(--primary) 0%, #047857a6 100%); */
  background: var(--primary);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 3rem 0;
}

.banner-1 h2 {
  font-size: 30px;
  color: white;
}

.component-contact-2 {
  background: linear-gradient(135deg, var(--primary-light), #ecfdf5);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.component-contact-2 h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.component-contact-2 p {
  font-size: .87rem;
  color: var(--text-light);
  margin: 0;
}


@media (max-width: 768px) {



  .info-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* ============================================================
      09i. FAQ Section
      ============================================================ */
.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--primary-light);
}

/* Search */
.search-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-light);
  pointer-events: none;
  line-height: 1;
}

.search-input {
  width: 100%;
  padding: 15px 48px 15px 50px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--secondary);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: var(--border);
  color: var(--text-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
}

.search-clear.visible {
  display: flex;
}

.search-clear:hover {
  background: #cbd5e1;
  color: var(--secondary);
}

/* Category pills */
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  user-select: none;
  font-family: inherit;
}

.category-pill:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

.category-pill.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.pill-icon {
  font-size: 14px;
  line-height: 1;
}

.pill-count {
  background: #449eff;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: bold;
}

/* Search result info */
.search-info {
  display: none;
  font-size: 13px;
  color: var(--text-light);
  background: var(--primary-light);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
}

.search-info.visible {
  display: block;
}

/* Empty state */
.no-results {
  display: none;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-light);
}

.no-results-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.no-results h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.no-results p {
  font-size: .9rem;
}

/* FAQ item */
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(5, 150, 105, .12);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
  border-radius: var(--radius);
}

.faq-item.active .faq-question {
  border-radius: var(--radius) var(--radius) 0 0;
  background: #f0fdf8;
}

.faq-question-text {
  font-weight: 600;
  font-size: .97rem;
  color: var(--secondary);
  line-height: 1.45;
}

.faq-question-text .highlight-match {
  background: var(--highlight-bg);
  color: var(--highlight-text);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), background .2s;
}

.faq-chevron::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: rotate(45deg) translate(-1px, -2px);
  display: block;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary);
}

.faq-item.active .faq-chevron::after {
  border-color: #fff;
}

.faq-answer {
  display: none;
  border-top: 1px solid var(--border);
  background: #fafcfb;
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq-answer-inner {
  padding: 16px 20px 20px;
  color: var(--text);
  font-size: .94rem;
  line-height: 1.8;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.faq-answer-inner ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: .92rem;
}

.faq-answer-inner ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.faq-answer-inner .highlight-match {
  background: var(--highlight-bg);
  color: var(--highlight-text);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
  border-bottom: 2px solid #eab308;
}

/* Feedback row */
.faq-feedback {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq-feedback-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.faq-feedback-label {
  font-weight: 500;
  flex-shrink: 0;
}

/* Comment form */
.faq-comment-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-comment-wrap.open {
  max-height: 440px;
}

.faq-comment-form {
  padding-top: 14px;
}

.faq-comment-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.faq-comment-textarea {
  width: 100%;
  min-height: 100px;
  max-height: 240px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--secondary);
  background: var(--white);
  resize: vertical;
  line-height: 1.6;
  transition: border-color .2s, box-shadow .2s;
}

.faq-comment-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.faq-comment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.faq-comment-cancel {
  padding: 6px 14px;
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.faq-comment-cancel:hover {
  border-color: #94a3b8;
  color: var(--secondary);
}

.faq-comment-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-comment-count {
  font-size: 11px;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.faq-comment-count.over {
  color: #dc2626;
  font-weight: 700;
}

.faq-comment-submit {
  padding: 6px 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  white-space: nowrap;
}

.faq-comment-submit:hover {
  background: var(--primary-dark);
}

.faq-comment-submit:disabled {
  opacity: .45;
  cursor: default;
}

.faq-comment-submit.htmx-request {
  opacity: .6;
  cursor: wait;
}


/* ============================================================
      09j. Social Media (Floating & Inline)
      ============================================================ */
.social-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  transition: background var(--transition-speed);
  color: #fff;
}

.social-icon:hover {
  opacity: 0.95;
  color: #fff !important;
}


/* ============================================================
      09k. Cookie Modal
      ============================================================ */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cookie-modal {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-medium);
  box-shadow: 0 8px 30px var(--shadow-medium);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cookie-modal>p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Category rows */
.cookie-category {
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
  padding: 12px 0;
  color: var(--text-dark);
  transition: background-color 0.2s ease;
  user-select: none;
}

.cookie-category:hover {
  background-color: rgba(0, 123, 255, 0.03);
}

.cookie-category.active {
  background-color: rgba(0, 123, 255, 0.05);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  cursor: default;
}

.category-header input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--primary-color);
}

.category-header input[type="checkbox"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.category-header label {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-category .essential {
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Toggle arrow */
.toggle-icon {
  color: var(--secondary-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer !important;
  padding: 8px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto !important;
  flex-shrink: 0;
}

.toggle-icon:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.cookie-category.active .toggle-icon {
  transform: rotate(180deg);
}

/* Accordion detail */
.cookie-category-info {
  background: #f8f9fa;
  padding: 0 20px;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  margin: 0;
  border-left: 3px solid transparent;
}

.cookie-category-info.active {
  max-height: 400px;
  padding: 20px;
  margin-bottom: 10px;
}

/* Info grid inside detail */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.info-label {
  color: #6c757d;
  font-weight: 500;
  /* min-width: 120px; */
  flex-shrink: 0;
}

.info-value {
  color: #212529;
  flex: 1;
}

.info-value.highlight {
  color: var(--primary-color);
  font-weight: 700;
  background: rgba(0, 123, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.info-value.code {
  font-family: 'Courier New', monospace;
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Actions */
.cookie-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions-group {
  display: flex;
  gap: 10px;
  justify-content: stretch;
}

.cookie-actions .btn {
  padding: 12px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius-small);
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: 600;
  flex: 1;
}

.cookie-actions .btn-primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.cookie-actions .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.cookie-actions .btn-secondary-cookie,
.cookie-actions .btn-outline-cookie {
  background: transparent;
  color: var(--text-dark);
  border-color: #dee2e6;
}

.cookie-actions .btn-secondary-cookie:hover,
.cookie-actions .btn-outline-cookie:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Delete section */
.cookie-delete-section {
  margin-top: 10px;
  text-align: center;
}

/* Expiry banner */
.consent-expiry-banner {
  margin-bottom: 15px;
}

.expiry-status {
  padding: 12px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.expiry-status.active {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.expiry-status.inactive {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.expiry-status.loading {
  background: #e2e3e5;
  color: #383d41;
}

.expiry-status .days-left {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Footer text */
.cookie-footer-text {
  margin-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-muted);
}

.cookie-footer-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.cookie-footer-text a:hover {
  text-decoration: underline;
}

.cookie-trigger {
  cursor: pointer;
}


/* ============================================================
      09l. Floating Action Buttons
      ============================================================ */
.float-gruppe {
  position: fixed;
  left: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #fff;
  /* استبدله بـ var(--bg-white) */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.float-icon:hover {
  transform: scale(1.05);
}

.calendar-float {
  background: var(--primary);
  bottom: 278px;
}

.phone-float {
  background: #FFA31C;
  bottom: 220px;
}

.whatsapp-float {
  background: var(--whatsapp);
  bottom: 160px;
}

.cookie-float {
  background: var(--primary-color);
  bottom: 100px;
}

.arrow-up-float {
  background: #04825D;
  bottom: 55px;
}


/* Floating action (impressum / faq pages) */
.floating-actions {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
}

.action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.action-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

@media (max-width: 968px) {
  .float-gruppe {
    left: 10%;
    transform: translateX(-50%);
    /* bottom: 10%; */
    align-items: center;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    border-top: 0px solid #eee;
    border-radius: 16px;
  }

  .float-icon {
    position: static;
    /* إلغاء التموضع الثابت الفردي */
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    box-shadow: none;
    /* إزالة الظل لجعل الشكل أنظف في الشريط */
  }

  /* إضافة مسافة للمحتوى في أسفل الصفحة لكي لا تغطيه الأيقونات */
  body {
    /* padding-bottom: 70px; */
  }
}

/* ============================================================
      09m. WhatsApp Modal & Toast System
      ============================================================ */
/* .wa-overlay {
     position: fixed;
     inset: 0;
     backdrop-filter: blur(6px);
     background: rgba(0, 0, 0, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
   }
   
   .wa-modal {
     background: #fff;
     padding: 30px;
     border-radius: 14px;
     width: 360px;
     text-align: center;
     position: relative;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
   }
   
   .wa-close {
     position: absolute;
     top: 10px;
     right: 12px;
     border: none;
     background: none;
     font-size: 22px;
     cursor: pointer;
   }
   
   .wa-open-btn {
     margin-top: 15px;
     padding: 10px 20px;
     border: none;
     border-radius: 8px;
     background: #ccc;
     cursor: not-allowed;
   }
   
   .wa-open-btn.active {
     background: #25d366;
     color: #fff;
     cursor: pointer;
   }
   
   .wa-progress {
     margin-top: 12px;
     height: 5px;
     background: #eee;
     border-radius: 5px;
     overflow: hidden;
   }
   
   .wa-progress-bar {
     height: 100%;
     width: 0%;
     background: #25d366;
     transition: width 1s linear;
   } */












/* الحاوية الرئيسية */
.wa-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: 0.3s;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.wa-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* المودال */
.wa-modal {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 80%;
  max-width: 393px;
  text-align: center;
  transform: scale(0.8);
  transition: 0.3s;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);

  /* max-width: 1200px; */
  margin: 0px auto;
  padding: 60px 20px;
}

.wa-overlay.active .wa-modal {
  transform: scale(1);
}

/* أزرار الإغلاق */
.wa-close-x {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.wa-close-btn {
  background: #04825D;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: 0.3s;
}

.wa-close-btn:hover {
  background: #04825D;
}

/* شريط التقدم والرسائل */
.wa-msg-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #333;
  min-height: 50px;
}

.wa-progress-container {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

/* .wa-progress-bar { height: 100%; background: linear-gradient(90deg, #667eea, #764ba2); width: 100%; transition: width 0.1s linear; } */
.wa-progress-bar {
  height: 100%;
  background: #04825D;
  width: 100%;
  transition: width 0.1s linear;
}

.wa-timer-text {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

























/* Toast */
.toast-system {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.toast-item {
  background: #1f2937;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.toast-item.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-item.success {
  background: #16a34a;
}

.toast-item.error {
  background: #dc2626;
}

.toast-item.info {
  background: #2563eb;
}






/* ============================================================
      09n. banner-2
      ============================================================ */
.banner-2-cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  background: var(--primary);
  border-radius: 22px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin: 3rem 0;
  flex-direction: column;
}

.banner-2-cta-banner h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.banner-2-cta-banner p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.banner-2-cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.banner-2-btn-cta-primary {
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all var(--transition);
}

.banner-2-btn-cta-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

.banner-2-btn-cta-wa {
  padding: 14px 24px;
  background: transparent;
  color: #4ade80;
  border: 2px solid #166534;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all var(--transition);
}

.banner-2-btn-cta-wa:hover {
  background: #052e16;
}


.banner-btn {
  color: var(--primary) !important;
  background: white !important;


}

/* responsive */
@media(max-width: 968px) {


  .banner-2 {
    flex-direction: column;
    padding: 32px 24px;
  }

  .banner-2-actions {
    width: 100%;
  }

  .banner-2-btn-cta-primary,
  .banner-2-btn-cta-wa {
    flex: 1;
    justify-content: center;
  }

  .float-icon {
    right: 20px !important;
    left: auto !important;
    width: 45px;
    height: 45px;

  }

}


/* ============================================================
      09o. cta-block_2
      ============================================================ */
/* CTA Section */
/* cta-block_2.php */
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  margin-bottom: 50px;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  /* color: var(--primary-dark); */
}



/* Responsive */
@media (max-width: 768px) {

  .toc-list {
    grid-template-columns: 1fr;
  }

  .content-header {
    flex-direction: column;
    text-align: center;
  }

  .cta-card {
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   09p. BASE NOTICE STYLES
      ============================================================ */
/* ============================================
      BASE NOTICE STYLES (Original - Success/Green)
      ============================================ */
.notice {
  margin: 20px 0;
  display: flex;
  gap: 15px;
  /* background: #0596691f; */
  padding: 20px;
  /* border: 1px solid #059669; */
  border-radius: 12px;
  align-items: flex-start;
  flex-direction: column;
  align-content: flex-start;
}

.notice .notice-label {
  white-space: nowrap;
  /* background: var(--primary, #059669); */
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.notice .notice-icon {
  display: none;
  font-size: medium;
  animation: alerticon 1s ease-in-out infinite alternate;
}

/* .notice .notice-icon  { animation: alerticon 1s ease-in-out infinite alternate; } */
.notice .notice-desc {
  font-size: 17px;
  /* font-weight: 600; */
  /* color: #059669; */
  margin: 0;
  line-height: 1.5;
}

.notice .notice-desc a {
  /* color: #92400e; */
  font-weight: 600;
  text-decoration: underline;
}



.notice {
  margin: 20px 0;
  display: flex;
  gap: 15px;
  /* background: #0596691f; */
  padding: 20px;
  /* border: 1px solid #059669; */
  border-radius: 12px;
  align-items: flex-start;
  flex-direction: column;
  align-content: flex-start;
}

.notice strong {
  white-space: nowrap;
  /* background: var(--primary, #059669); */
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.notice strong i {
  display: none;
  font-size: medium;
  animation: alerticon 1s ease-in-out infinite alternate;
}

.notice p {
  font-size: 17px;
  font-weight: 600;
  /* color: #059669; */
  margin: 0;
  line-height: 1.5;
}

/* .notice i { animation: alerticon 1s ease-in-out infinite alternate; } */
.notice a {
  /* color: #92400e; */
  font-weight: 600;
  text-decoration: underline;
}

.notice .notice-desc {}



/* ============================================
      INFO NOTICE (Blue)
      ============================================ */
.info-notice {
  border: 1px solid #04825D;
  background: #6ff5ca1f;
}

.info-notice strong {
  background: #04825D;
  color: white;
}

.info-notice p {
  color: #04825D;
}

.info-notice a {
  color: #043b2a;
  font-weight: 800;
}

.info-notice i {
  display: none;
}

.info-notice .notice-desc {}

/* ============================================
      WARNING NOTICE (Amber/Orange)
      ============================================ */
.warning-notice {
  border: 1px solid #f59e0b;
  background: #f59e0b1f;
}

.warning-notice strong {
  background: #f59e0b;
  color: white;
}

.warning-notice p {
  color: #b45309;
}

.warning-notice a {
  color: #78350f;
  font-weight: 800;
}

/* ============================================
      DANGER / ERROR NOTICE (Red)
      ============================================ */
.danger-notice {
  border: 1px solid #dc2626;
  background: #dc26261f;
}

.danger-notice strong {
  background: #dc2626;
  color: white;
}

.danger-notice p {
  color: #991b1b;
}

.danger-notice a {
  color: #7f1d1d;
  font-weight: 800;
}

/* ============================================
      TIP / HINT NOTICE (Purple)
      ============================================ */
.tip-notice {
  border: 1px solid #7c3aed;
  background: #7c3aed1f;
}

.tip-notice strong {
  background: #7c3aed;
  color: white;
}

.tip-notice p {
  color: #7c3aed;
}

.tip-notice a {
  color: #7c3aed;
  font-weight: 800;
}

/* ============================================
      SHARED KEYFRAMES
      ============================================ */

@keyframes alerticon {
  from {
    transform: translateY(-2px);
  }

  to {
    transform: translateY(4px);
  }
}

/* ============================================================
      10a. Sub-pages: Impressum / Datenschutz / About / 404 / FAQ
      ============================================================ */

/* Shared hero header for sub-pages */
.impressum .section-header,
.datenschutz .section-header,
.about-us .section-header,
.faq .section-header,
.notFounsPage .section-header {
  padding: 120px 8% 5%;
  flex-direction: column;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Shared hero background */
.impressum .section-header,
.datenschutz .section-header,
.about-us .section-header,
.notFounsPage .section-header {
  background:
    linear-gradient(135deg, rgb(209 250 229 / 27%) 0%, #ffffff 100%),
    /* url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    url('/assets/img/hero-background-3.jpg');

  background-size: cover;
  background-position: center;
}

.faq .section-header {
  background:
    linear-gradient(135deg, rgb(209 250 229 / 27%) 0%, #ffffff 100%),
    /* url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=2070&auto=format&fit=crop'); */
    url('/assets/img/hero-background-2.jpg');
  background-size: cover;
  background-position: center;
}

/* Impressum / Datenschutz content */
.content-container_ {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

/* Table of contents */
.toc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.toc-title {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.toc-list {
  list-style: none;
  columns: 2;
  gap: 2rem;
}

.toc-item {
  margin-bottom: 0.75rem;
  break-inside: avoid;
}

.toc-item:hover {
  transform: translateX(5px);
}

.toc-link {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.toc-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(5px);
}

.toc-number {
  width: 28px;
  height: 28px;
  background: var(--bg);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.toc-link:hover .toc-number {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* Content cards */
.content-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 2rem);
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.innen-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.content-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.content-title {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.inside-content {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.inside-content p {
  margin-bottom: 1.25rem;
}


/* Story Section */
.story-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text);
}

.story-text p {
  margin-bottom: 25px;
}

/* Definition list */
.definition-list {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.definition-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.definition-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.definition-term {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.definition-desc {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Terms list */
.terms-list {
  list-style: none;
  margin: 1.5rem 0;
}

.terms-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0.75rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Service details page */
.service-details-page {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  padding-bottom: 80px;
}

.badge-group .badge {
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}


/* about */
/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.value-card {
  background: var(--bg);
  background: #04825d17;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.value-title {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 10px;
}

.value-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  background: var(--bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.team-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Quote Box */
.quote-box {
  background: var(--primary-light);
  border-radius: 15px;
  padding: 40px;
  margin: 30px 0;
  position: relative;
  text-align: center;
}

.quote-box::before {
  content: '"';
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.3rem;
  color: var(--secondary);
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.quote-author {
  margin-top: 20px;
  /* color: var(--primary-dark); */
  color: var(--primary);
  font-weight: 600;
}



/*  section-content*/
.section-content p {
  margin-bottom: 15px;
}

/*  */
/* ============================================================
      10b. Servicedetails 
      ============================================================ */


/* ── HERO / DETAILS ── */
.details {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg) 100%);
  overflow: hidden;
  width: 100%;
}

.details-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  /* background: url(in servicedetails.php)  */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.details-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary-light) 0%, transparent 40%);
}

.details-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 22px;
}

.breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  font-size: 8px;
}

/* left */
.details-left {
  animation: fadeInUp 0.8s ease;
}

.service-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge-popular {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
}

.badge-new {
  background: var(--primary);
  color: white;
}

.badge-category {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary-mid);
  font-size: 0.78rem;
}

.details h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--dark);
  letter-spacing: -0.5px;
  max-width: 90%;
}

.details-subtitle {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.details-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.details-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: white;
  /* border-radius: 50px; */
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 2px 8px var(--shadow);
  border-left: 3px solid var(--primary);
  color: var(--dark);
}

.details-features i {
  color: var(--primary);
  font-size: 0.8rem;
}

.details-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #64748b;
}

.details-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.details-rating i {
  color: #FFD700;
  font-size: 0.85rem;
}

.details-rating strong {
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
}

.meta-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.details-serviceArea-moreLink {
  /* font-weight: 700; */
  font-size: 0.75rem;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

/* ── BOOKING CARD ── */
.details-booking-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.8s ease 0.2s both;
  position: sticky;
  top: 30px;
}

.details-price-header {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--bg);
}

.details-price-label {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.details-price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.details-price-amount sup {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 700;
}

.details-price-unit {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

.details-price-note {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 6px;
}

.details-team-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.details-team-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.details-team-stat i {
  font-size: 1.3rem;
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
}

.details-team-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark);
}

.details-team-stat span {
  font-size: 0.78rem;
  color: #94a3b8;
}

.details-team-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.details-cta-main {
  width: 100%;
  background: var(--primary);
  border: none;
  color: white;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  letter-spacing: 0.2px;
}

.details-cta-main:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-mid);
}

.details-cta-wa {
  width: 100%;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #16a34a;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.details-cta-wa:hover {
  background: #dcfce7;
}

.details-cta-wa i {
  color: #25d366;
  font-size: 1.1rem;
}

.details-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.details-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #64748b;
  padding: 9px 12px;
  background: var(--bg);
  border-radius: 8px;
}

.details-trust-item i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── CONTENT WRAPPER ── */
.details-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* section headers */
.details-section {
  margin-bottom: 56px;
  animation: fadeInUp 0.6s ease;
}

.details-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.details-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.details-section-icon i {
  color: var(--primary);
  font-size: 1.2rem;
}

.section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.details-section-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.details-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  max-width: 820px;
}

/* info strip */
.details-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.details-info-card {
  background: white;
  padding: 22px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);

  background: white;
  padding: 17px 20px;
  border-radius: var(--radius);
  display: flex;
  /* align-items: center; */
  gap: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  /* border: 1px solid var(--border); */
  /* transition: transform var(--transition), box-shadow var(--transition); */
  flex-direction: row;
}

.details-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.details-info-card-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.details-info-card-ico i {
  color: var(--primary);
  font-size: 1.2rem;
}

.details-info-card strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.details-info-card span {
  font-size: 0.88rem;
  color: #94a3b8;
}

/* features grid */
.details-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.details-feature-card {
  background: white;
  padding: 18px 20px;
  /* border-radius: var(--radius-sm); */
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 10px var(--shadow);
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform var(--transition), box-shadow var(--transition);
  /* width: 100%; */
}

.details-feature-card:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px var(--shadow-md);
}


/*  */

/*  */




/*  */
/* فقاعة النص التوضيحي */
.custom-tooltip-bottom {
  position: fixed;
  /* تغيير إلى fixed لضمان الظهور فوق كل شيء */
  background: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 999999;
  /* رقم عالي جداً */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  max-width: 200px;
  text-align: center;
  display: none;
  /* مخفي تماماً عند البداية */
}

.custom-tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  /* وضعه في أعلى الفقاعة */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  /* جعل السهم يشير للأعلى */
  border-color: transparent transparent rgba(51, 51, 51, 0.95) transparent;
}


.custom-tooltip-bottom.show {
  opacity: 1;
  display: block;
  /* يظهر فقط عند إضافة الكلاس */
}

/*  */

.details-feature-card {
  display: flex;
  align-items: center;
  /* محاذاة عمودية */
  justify-content: flex-start;
  padding: 12px;
  border-bottom: 1px solid #eee;
  /* لفصل العناصر في الجوال */
  width: 100%;
  box-sizing: border-box;
  position: relative;

}

.details-feature-text {
  flex: 1;
  /* سيأخذ النص كل المساحة المتاحة ويدفع ما بعده للنهاية */
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
  /* حجم مناسب لشاشة الجوال */
}

.info-wrapper {
  margin-left: auto;
  /* تأكيد دفع الأيقونة للنهاية */
  cursor: pointer;
  position: relative;
  color: #007bff;
  /* لون مميز للأيقونة */
}













.details-feature-card i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.details-feature-text {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
}

/* included / excluded */
.services-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.details-service-list {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
}

/* .details-service-list h3 {
     display: flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 18px;
     font-size: 1.05rem;
     font-weight: 700;
     padding-bottom: 14px;
     border-bottom: 1px solid var(--border);
   } */

.details-service-list.included h3 {
  color: #16a34a;
}

.details-service-list.excluded h3 {
  color: #dc2626;
}

/* 
   .details-service-list ul {
     list-style: none;
   }
   
   .details-service-list ul li {
     padding: 10px 0;
     border-bottom: 1px solid var(--bg);
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 0.92rem;
     color: #475569;
     line-height: 1.5;
   }
   
    */

/* هذا الجزء سيجعل النص يملأ المساحة ويدفع السعر لليمين */
/* هذا الجزء سيجعل النص يملأ المساحة ويدفع السعر لليمين */
.details-service-name {
  flex: 1;
  /* أهم سطر لإلغاء التوسط */
  text-align: left;
  /* للتأكيد على البدء من اليسار */
}

/* تعديل حاوية السطر لضمان المحاذاة */
.details-service-list ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* تغيير من space-between لضمان التحكم عبر flex:1 */
  gap: 12px;
  width: 100%;
  padding: 8px 0;
}

.details-service-list ul li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}


.details-help-tooltip {
  color: #ccc;
  font-size: 0.85rem;
  margin-left: 8px;
  cursor: help;
  transition: color 0.3s;
}

.details-help-tooltip:hover {
  color: #666;
  /* تصبح أغمق عند التأشير */
}

.details-service-price-tag {
  display: flex;
  align-items: center;
  background: #fff5f5;
  /* خلفية حمراء فاتحة جداً */
  padding: 4px 12px;
  border-radius: 20px;
  /* شكل الكبسولة */
  font-size: 0.9rem;
}

.det-price-amount {
  color: #d93025;
  /* سعر أحمر غامق */
  font-weight: bold;
}

.det-price-unit {
  color: #777;
  margin-left: 4px;
  font-size: 0.8rem;
}







/* .details-service-list li:last-child {
     border-bottom: none;
   } */

.details-service-list.included li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.details-service-list.excluded li::before {
  content: '✕';
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
}




/* addons */
.details-addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details-addon-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition);
  cursor: pointer;
}

.details-addon-item:hover {
  border-color: var(--primary);
}

.details-addon-item.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.details-addon-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.details-addon-item.selected .details-addon-check {
  background: var(--primary);
  border-color: var(--primary);
}

.details-addon-item.selected .details-addon-check::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.details-addon-info {
  flex: 1;
}

.details-addon-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.details-addon-info span {
  font-size: 0.83rem;
  color: #94a3b8;
}

.details-addon-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* availability */
.details-avail-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.details-avail-row {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.details-avail-days {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.day-pill {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-mid);
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.details-avail-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: #64748b;
  margin-left: auto;
}

.details-avail-hours i {
  color: var(--primary);
}

.details-advance-info {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.details-advance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #64748b;
  background: white;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 8px;
}

.details-advance-item i {
  color: var(--primary);
}

/* service areas */
.details-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.details-area-tag {
  background: white;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px var(--shadow);
  border: 2px solid var(--primary-light);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: default;
}

.details-area-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.details-area-tag i {
  font-size: 0.8rem;
}

/* reviews */
.details-reviews-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 2px 12px var(--shadow);
}

.details-rev-big-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2px;
}

.details-rev-stars {
  display: flex;
  gap: 4px;
  margin: 6px 0;
}

.details-rev-stars i {
  color: #FFD700;
  font-size: 1rem;
}

.details-rev-count {
  font-size: 0.85rem;
  color: #94a3b8;
}

.details-rev-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.details-rev-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.details-rev-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.details-rev-bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}

.details-rev-bar-fill {
  height: 100%;
  background: #FFD700;
  border-radius: 3px;
  transition: width 1s ease;
}

/* seasonality notice */
.details-season-notice {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}

.details-season-notice i {
  color: #d97706;
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.details-season-notice p {
  font-size: 0.88rem;
  color: #92400e;
  line-height: 1.6;
}

.details-season-notice strong {
  color: #78350f;
}




/* details-booking */
/* عند فتح السايدبار - نمنع السكرول */
body.details-booking-open {
  overflow: hidden;
  height: 100vh;
}

/* Overlay خلفية مظللة */
.details-booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

body.details-booking-open .details-booking-overlay {
  opacity: 1;
  visibility: visible;
}

/* Sidebar Booking - يأتي من اليسار */
.details-booking {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
}

body.details-booking-open .details-booking {
  transform: translateX(0);
}

/* تخصيص شريط السكرول للسايدبار */
.details-booking::-webkit-scrollbar {
  width: 8px;
}

.details-booking::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.details-booking::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.details-booking::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* CTA Button */
/* .btn-primary {
     background: #ff6b35;
     color: white;
     border: none;
     padding: 15px 40px;
     font-size: 1.1rem;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 10px;
   } */

/* .btn-primary:hover {
     background: #e55a2b;
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
   } */

.close-booking {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-booking:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  */


/* animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media(max-width: 968px) {
  .details-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .details-bg {
    display: none;
  }

  .details-booking-card {
    position: static;
    max-width: 520px;
    margin: 0 auto;
  }

  .services-comparison {
    grid-template-columns: 1fr;
  }



  .details-reviews-summary {
    flex-direction: column;
    gap: 20px;
  }

  .details-rev-sep {
    width: 100%;
    height: 1px;
  }
}

@media(max-width: 600px) {
  .details h1 {
    font-size: 1.8rem;
  }

  .details-info-strip {
    /* grid-template-columns: 1fr 1fr; */
    display: flex;
    flex-direction: column;
  }

  .details-features-grid {
    grid-template-columns: 1fr;
  }

  .details-team-info {
    flex-wrap: wrap;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .details-booking {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .booking-form {
    padding: 20px;
  }
}

/* ============================================================
      11. Footer
      ============================================================ */
footer {
  color: var(--bg-white);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding-bottom: 2rem;
}

.footer-logo {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 900;
}

.footer-col h4 {
  color: var(--bg-white);
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--secondary-color);
}

.footer-col p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;

}

.footer-col p i {
  margin-right: 5px;
}

.footer-col li a {
  margin-right: 5px;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #adb5bd;
  color: white;

}


/* ============================================================
      12. Responsive — Breakpoints
      ============================================================ */

/* ── ≤ 1024px — Tablet ── */
@media (max-width: 1024px) {

  .main-nav,
  .header-cta .phone-link {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
    z-index: 9999;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-section:nth-child(even) .intro-section-container {
    direction: ltr;
  }

  .service-image {
    height: 350px;
  }

  .intro-section {
    padding: 70px 30px;
  }

  .booking-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    /* grid-template-columns: 1fr; */
    display: flex;
    flex-direction: column;
  }


  .hours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
    flex-direction: column-reverse;
    align-content: center;

  }

  .hero-content,
  .booking-content {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .booking-text {
    text-align: center;
    margin: 0 40px;
  }

  .hero-actions,
  .rating {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .toc-list {
    columns: 1;
  }
}

/* ── ≤ 968px ── */
@media (max-width: 968px) {
  .hours-card {
    position: relative;
    order: 2;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ── ≤ 768px — Mobile ── */
@media (max-width: 768px) {
  .hero-services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-services-badge {
    flex-direction: column;
    gap: 8px;
  }

  .trust-stats {
    gap: 30px;
  }

  .ticker-label {
    display: none;
  }

  .top-header-container {
    padding: 0 20px;
    height: 70px;
  }

  .logo-brand {
    font-size: 1.1rem;
  }

  .logo-tagline {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .intro-section-title {
    font-size: 1.8rem;
  }

  .intro-section {
    padding: 50px 20px;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-actions-group {
    justify-content: space-between;
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .contact-section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hours-card {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 4px 8px var(--shadow-light);
    padding: 15px 0;
    text-align: center;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question-text {
    font-size: .9rem;
  }

  .faq-answer-inner {
    padding: 14px 16px 16px;
    font-size: .9rem;
  }

  .faq-feedback {
    padding: 10px 14px 14px;
  }

  .faq-feedback-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .btn-call {
    width: 100%;
    justify-content: center;
  }

  .category-pill {
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* ── ≤ 640px ── */
@media (max-width: 640px) {
  .hero-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ≤ 480px — Small phones ── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .service-image {
    height: 280px;
  }

  .intro-section-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .contact-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hours-card,
  .info-block,
  .social-block,
  .cta-block {
    padding: 20px;
  }

  .day-item {
    padding: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .cookie-backdrop {
    padding: 10px;
    align-items: flex-end;
  }

  .cookie-modal {
    padding: 20px;
    border-radius: var(--radius-medium) var(--radius-medium) 0 0;
    max-height: 85vh;
  }

  .cookie-modal h3 {
    font-size: 1.2rem;
  }

  .category-header label {
    font-size: 0.9rem;
  }

  .cookie-actions-group {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-actions .btn {
    width: 100%;
    padding: 12px;
  }

  .btn-delete {
    width: 100%;
    justify-content: center;
  }

  .action-btn {
    right: 1rem;
    bottom: 1rem;
  }

  .hero {
    padding: 110px 20px 60px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }
}

/* ── ≤ 380px ── */
@media (max-width: 380px) {
  .section-header h2 {
    font-size: 1.4rem;
  }

  .search-input {
    font-size: 14px;
  }
}

/* ── ≤ 320px ── */
@media (max-width: 320px) {
  .cookie-modal {
    padding: 15px;
  }

  .category-header {
    gap: 8px;
  }

  .cookie-category input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
}

/* ── Print ── */
@media print {

  .header,
  .floating-actions,
  .contact-section {
    display: none;
  }

  .content-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}














/* ═══════════════════════════════════════════════════════════════
   INTRO SECTION - Fully Responsive CSS
   Supports: Mobile (320px+) → Tablet (768px+) → Desktop (1024px+)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Base Variables ─── */
:root {
  --intro-gap: 2rem;
  --intro-radius: 16px;
  --intro-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --intro-transition: all 0.3s ease;
  --intro-primary: #2563eb;
  --intro-text: #1f2937;
  --intro-text-light: #6b7280;
  --intro-bg-badge: rgba(255, 255, 255, 0.95);
}

/* ─── Section Container ─── */
.intro-section {
  width: 100%;
  padding: 4rem 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.intro-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--intro-gap);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ─── Image Wrapper ─── */
.intro-service-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--intro-radius);
  overflow: hidden;
  box-shadow: var(--intro-shadow);
  aspect-ratio: 16 / 10;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-service-image-wrapper:hover .service-image {
  transform: scale(1.05);
}

.intro-service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

/* ─── Badge on Image ─── */
/* .intro-service-badge-on-image {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--intro-bg-badge);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--intro-text);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
} */


.intro-service-badge-on-image {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: #059669;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  direction: ltr;

}

/* ─── Content Area ─── */
.intro-service-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ─── Header ─── */
.intro-service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.intro-section-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.intro-section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--intro-text);
  margin: 0;
  line-height: 1.2;
}

.intro-section-subtitle {
  font-size: 1.1rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── Description ─── */
.intro-service-description {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.7;
  color: var(--intro-text-light);
  margin: 0;
  max-width: 65ch;
}

/* ─── Features List ─── */
.intro-service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 0.75rem; */
}

.intro-service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  color: var(--intro-text);
  line-height: 1.5;
  /* padding: 0.5rem 0; */
}

.check-icon {
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
  display: inline-block;
}

/* ─── CTA Button ─── */
.intro-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--intro-transition);
  width: fit-content;
  margin-top: 0.5rem;
}



.intro-service-cta-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.intro-service-cta:hover .intro-service-cta-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   TABLET (768px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .intro-section {
    padding: 5rem 2rem;
  }

  .intro-section-container {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .intro-service-image-wrapper,
  .intro-service-content {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-service-image-wrapper {
    aspect-ratio: 4 / 3;
    min-height: 400px;
  }

  .intro-service-content {
    justify-content: center;
  }

  .intro-service-features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
  }

  .intro-service-badge-on-image {
    /* bottom: 1.5rem; */
    left: 1.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP (1024px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .intro-section {
    padding: 6rem 2rem;
  }

  .intro-section-container {
    gap: 4rem;
  }

  .intro-service-image-wrapper {
    aspect-ratio: 3 / 2;
    min-height: 480px;
  }

  .intro-service-features-list {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .intro-service-cta {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LARGE SCREENS (1440px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .intro-section-container {
    max-width: 1320px;
  }

  .intro-service-image-wrapper {
    min-height: 520px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION (Accessibility)
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  .service-image,
  .intro-service-cta,
  .intro-service-cta-arrow {
    transition: none;
  }

  .intro-service-image-wrapper:hover .service-image {
    transform: none;
  }

  .intro-service-cta:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {
  .intro-section {
    padding: 1rem 0;
    break-inside: avoid;
  }

  .intro-service-cta {
    border: 2px solid #000;
    background: none;
    color: #000;
  }

  .intro-service-image-overlay {
    display: none;
  }
}