/* =========================
   DESIGN SYSTEM (TOKENS)
========================= */
:root{
  /* Luxury Italian Modern Palette */
  --primary: #1f6f8b;        /* Mediterranean teal-blue */
  --primary-dark: #16586d;

  --text-main: #0f172a;      /* deep navy */
  --text-soft: rgba(15,23,42,0.62);

  --bg-light: #ffffff;       /* base */
  --bg-tint: #ffffff;        /* section tint */

  --border-light: rgba(15,23,42,0.10);

  --gold: #c9a227;           /* subtle luxury accent */

  /* Layout feel */
  --container-max: 1100px;
  --section-pad: 100px;
  --radius-md: 10px;

  /* Shadow */
  --shadow-md: 0 12px 30px rgba(15, 42, 68, 0.12);

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;
}

/* =========================
   RESET (SAFE)
========================= */
*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }

/* =========================
   BASE
========================= */
body{
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================
   TYPOGRAPHY
========================= */
h1{
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
h2{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
p{
  font-size: 16px;
  color: var(--text-soft);
}

/* =========================
   LAYOUT
========================= */
.container{
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

section{
  padding: var(--section-pad) 0;
}

/* =========================
   HEADER / NAVIGATION
========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.logo{
  font-size: 20px;
  font-weight: 600;
}

/* NAV */
.nav{
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a,
.dropdown-toggle{
  text-decoration: none;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
}

/* Soft section backgrounds (Luxury Italian feel) */
.home-services,
section.services-cta,
.booking-hero{
  background: linear-gradient(
    180deg,
    rgba(31,111,139,0.06),
    transparent
  );
}

/* =========================
   DROPDOWN (SERVICES)
========================= */
.dropdown{ position: relative; }

.dropdown-menu{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-light);
  padding: 0.5rem 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.dropdown-menu a{
  display: block;
  padding: 10px 16px;
  color: var(--text-main);
}

.dropdown-menu a:hover{
  background: var(--bg-light);
}

.dropdown:hover .dropdown-menu{
  display: block;
}

/* =========================
   LANGUAGE SWITCHER
========================= */
.lang-switch{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
}

.lang-switch a{
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: var(--bg-light);
  transition: all 0.2s ease;
}

.lang-switch a:hover{
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  padding: 140px 0;
  text-align: center;

  /* NOTE: path must match where the CSS file lives */
  background-image: url("./tools-back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .container{
  max-width: 800px;
}

.hero p{
  font-size: 20px;
  margin: 16px 0 36px;
}
/* =========================
   GRID & CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  padding: 32px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 42, 68, 0.10);
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.primary {
  background: var(--primary);
  color: #ffffff;
}

.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* =========================
   DARK FOOTER
========================= */

.footer-dark {
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(119, 194, 189, 0.18), transparent 55%),
    radial-gradient(1000px 460px at 90% -15%, rgba(45, 123, 229, 0.16), transparent 60%),
    linear-gradient(150deg, #09111b 0%, #0d1726 45%, #0f1f33 100%);
  color: #cfd6df;
  padding: 92px 0 34px;
  margin-top: 100px;
}

.footer-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 56px;
  align-items: start;
}

.footer-dark h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.25;
}

.footer-dark h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-dark p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #bfccda;
}

.footer-dark ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-dark li {
  margin-bottom: 12px;
  font-size: 0.93rem;
}

.footer-dark a {
  color: #c7d2de;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  line-height: 1.35;
}

.footer-dark a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(199, 210, 222, 0.4);
  transform: scale(0.8);
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-dark a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-dark a:hover::before {
  transform: scale(1);
  background: #77c2bd;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.96;
  filter: brightness(1.06) contrast(1.03) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.35));
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: #2c7be5;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-list span {
  color: #9bb0c5;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #9bb0c5;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .nav {
    display: none;
  }

  section {
    padding: 80px 0;
  }

  .footer-dark {
    padding: 68px 0 26px;
  }

  .footer-grid-dark {
    gap: 34px;
  }

  .footer-brand {
    padding: 0;
    border-radius: 0;
  }

  .footer-logo {
    width: 180px;
    max-width: 100%;
  }

  .footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
  }
}
/* =========================
   SERVICES PAGE
========================= */

.services-intro {
  padding: 120px 0 60px;
  text-align: center;
}

.services-intro p {
  max-width: 700px;
  margin: 16px auto 0;
}

.service-group {
  margin-bottom: 100px;
}

.service-group h2 {
  margin-bottom: 32px;
}

/* CTA */
section.services-cta {
  background: var(--bg-light);
  text-align: center;
  padding: 100px 0;
}

section.services-cta p {
  margin: 16px 0 32px;
}
/* -----------------------------
   CONTACT / BOOK PAGE POLISH
-------------------------------- */

/* Reduce section spacing */
.services {
  padding: 60px 0;
}

.services .card {
  padding: 32px;
}

/* Contact cards */
.contact-card {
  text-decoration: none;
  text-align: center;
}

.contact-card .highlight {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 10px 0;
}

.contact-card .green-text {
  color: #2e9b4f;
}

.contact-card .check {
  margin-top: 12px;
  font-weight: 500;
}

/* Icon circles */
.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eef4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3b6f84;
}

.icon-circle.green {
  background: #e7f7ed;
  color: #2e9b4f;
}

/* Locations as buttons */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.locations span {
  background: #f6f9fb;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 500;
  color: #2c3e50;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

/* Emergency section */
.emergency .card {
  background: #fff3f3;
  border-left: 6px solid #c0392b;
}

.emergency .danger {
  color: #c0392b;
  font-weight: 600;
}

/* Small helper text */
.muted {
  margin-top: 16px;
  color: #6c7a89;
  font-size: 0.95rem;
}

/* =========================
   HOMEPAGE POLISH (Screenshot-style)
========================= */

.home-hero { padding: 90px 0; }
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.home-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}

.home-pill.light { background: #eef4ff; color: #1f6fd2; }
.home-pill.dark  { background: rgba(255,255,255,0.12); color: #fff; }

.home-hero-title { font-size: 46px; line-height: 1.1; margin-bottom: 14px; }
.home-hero-accent { color: var(--primary); }
.home-hero-subtitle { font-size: 18px; max-width: 560px; }

.home-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.btn.outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn.outline:hover { background: rgba(31,111,210,0.08); }

.home-hero-micro { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; color: var(--text-soft); font-size: 14px; }

.home-hero-card { position: relative; }
.home-hero-image {
  height: 340px;
  border-radius: 26px;
  background: linear-gradient(135deg, #dbeafe, #eef2ff);
  box-shadow: 0 18px 40px rgba(15, 42, 68, 0.10);
}
.home-hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}
.home-hero-badge span { display: block; color: var(--text-soft); font-size: 13px; margin-top: 2px; }

.home-section { padding: 90px 0; }
.center { text-align: center; }
.home-lead { max-width: 720px; margin: 10px auto 0; }

.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.home-checklist { margin-top: 18px; padding-left: 18px; color: var(--text-soft); }
.home-checklist li { margin: 10px 0; }

.home-info-cards { display: grid; gap: 18px; }
.home-info-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.05);
}

.home-services { background: var(--bg-light); }
.home-services-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.home-service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 42, 68, 0.09);
}
.home-service-card.featured {
  border-color: rgba(31,111,210,0.25);
}

.home-icon { font-size: 22px; margin-bottom: 10px; }
.home-link { display: inline-block; margin-top: 12px; color: var(--primary); font-weight: 600; }

.home-cta-row { margin-top: 28px; }

.home-locations {
  padding: 90px 0;
  background: linear-gradient(145deg, #0c1420, #0f1c2e);
  color: #fff;
}
.home-locations h2 { color: #fff; }
.home-locations-text { max-width: 820px; color: rgba(255,255,255,0.75); margin-top: 12px; }

.home-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.home-location-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
}

.home-steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.home-step {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.05);
}

.home-final-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #2f5f73, #3b7c91);
  color: #fff;
}
.home-final-cta h2 { color: #fff; }
.home-final-cta p { color: rgba(255,255,255,0.85); max-width: 720px; margin: 10px auto 0; }

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-two-col { grid-template-columns: 1fr; }
}

/* =========================
   HERO (Apple-style layout)
   Paste at bottom of styles.css
   ========================= */

.hero{
  padding: 60px 0;
  background: #ffffff;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-left{
  max-width: 640px;
}

.hero-eyebrow{
  font-size: 13px;
  color: rgba(15,23,42,0.65);
  margin-bottom: 12px;
}

.hero-title{
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #0f172a;
}

.hero-title .accent{
  color: #2563eb;
}

.hero-subtitle{
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  text-shadow: 0 6px 22px rgba(0,0,0,0.65);
  margin-top: 8px;
}


.hero-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(15,23,42,0.60);
  font-size: 13px;
}

.hero-trust span{
  padding: 8px 12px;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 999px;
  background: rgba(15,23,42,0.03);
}

/* Right side */
.hero-right{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 440px;
}

/* Apple-style image frame (rounded rectangle) */
.hero-image-circle{
  width: 440px;
  height: 440px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 24px 60px rgba(15,23,42,0.14);
  background: #fff;
}

.hero-image-circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Emergency card */
.hero-card{
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 230px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

.hero-card-title{
  margin: 0 0 6px;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.hero-card-subtitle{
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(15,23,42,0.65);
}

.hero-card-btn{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: #0f172a;
  color: white;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-title{
    font-size: 40px;
  }

  .hero-right{
    min-height: 380px;
  }

  .hero-image-circle{
    width: 320px;
    height: 320px;
    border-radius: 26px;
  }

  .hero-card{
    right: 50%;
    transform: translateX(50%);
    width: 260px;
  }
}

/* =========================
   HEADER (Apple-style)
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Brand */
.brand{
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand-dot{
  opacity: 0.4;
  margin: 0 6px;
}

.brand-sub{
  font-weight: 500;
  color: rgba(15,23,42,0.65);
}

/* Nav */
.nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.08);
}

.nav-item{
  text-decoration: none;
  color: rgba(15,23,42,0.80);
  font-size: 13px !important;
  padding: 8px 10px !important;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-item:hover{
  background: rgba(255,255,255,0.85);
  color: #0f172a;
}

/* Right side */
.header-right{
  display: flex;
  align-items: center;
  gap: 10px;
}



/* Language toggle */
.lang-toggle{
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.7);
}

.lang-item{
  text-decoration: none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(15,23,42,0.75);
}

.lang-item:hover{
  background: rgba(15,23,42,0.06);
  color: #0f172a;
}

.lang-item.active{
  background: rgba(15,23,42,0.10);
  color: #0f172a;
  font-weight: 600;
}
.lang-toggle .lang-item.active{
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}


/* CTA Button */
.header-cta{
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: white;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(15,23,42,0.18);
}

.header-cta:hover{
  filter: brightness(1.05);
}

/* Mobile */
@media (max-width: 980px){
  .nav-links{
    display: none;
  }
}
.hero-right{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

/* Floating emergency card (NOT overlapping image) */
.hero-card.floating{
  position: absolute;
  left: -10px;          /* floats on the left side of the image */
  bottom: 30px;         /* pushes it down but not on the image */
  width: 230px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 18px 45px rgba(15,23,42,0.12);
}

/* Optional: makes it feel more "designed" */
.hero-card.floating{
  transform: translateY(0);
}
@media (max-width: 900px){
  .hero-right{
    min-height: 420px;
  }

  .hero-card.floating{
    left: 50%;
    right: auto;
    bottom: -22px;
    transform: translateX(-50%);
    width: 280px;
  }
}
.stripe-btn{
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  background: #0f172a;
  color: white;
  font-weight: 600;
}

.stripe-btn:hover{
  filter: brightness(1.05);
}

.stripe-btn.outline{
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.15);
}

/* =========================
   BOOKING PAGE (New Layout)
   ========================= */

.booking-hero{
  padding: 60px 0;
  background: #ffffff;
}

.booking-hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.booking-hero-left{
  max-width: 640px;
}

.booking-trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.trust-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.03);
  color: rgba(15,23,42,0.75);
  font-size: 13px;
}

.booking-mini{
  margin-top: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.9);
}

.mini-title{
  margin: 0 0 6px;
  font-weight: 700;
  color: #0f172a;
}

.mini-sub{
  margin: 0 0 14px;
  color: rgba(15,23,42,0.65);
  line-height: 1.55;
  font-size: 14px;
}

.mini-actions{
  display: flex;
  gap: 10px;
}

.mini-btn{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(15,23,42,0.10);
  color: #0f172a;
  background: rgba(255,255,255,0.9);
}

.mini-btn.whatsapp{
  border-color: rgba(16,185,129,0.30);
}

.mini-btn.call{
  border-color: rgba(15,23,42,0.15);
}

/* Right card */
.pay-card{
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 20px 55px rgba(15,23,42,0.10);
}

.pay-title{
  margin: 0 0 6px;
  font-size: 22px;
  color: #0f172a;
}

.pay-subtitle{
  margin: 0 0 16px;
  color: rgba(15,23,42,0.65);
  font-size: 14px;
}

.pay-option{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  background: rgba(15,23,42,0.02);
}

.pay-option-top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pay-name{
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.pay-desc{
  margin: 4px 0 0;
  color: rgba(15,23,42,0.65);
  font-size: 13px;
}

.pay-price{
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.pay-btn{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  background: #0f172a;
  color: white;
  border: none;
}

.pay-btn:hover{
  filter: brightness(1.05);
}

.pay-btn.primary{
  background: #0f172a;
}

.pay-btn.outline{
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.18);
}
.pay-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(15,23,42,0.55);
  line-height: 1.45;
}


/* Emergency note */
.emergency-note{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(239,68,68,0.20);
  background: rgba(239,68,68,0.06);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15,23,42,0.75);
}

.emergency-note i{
  margin-top: 2px;
}

/* Mobile */
@media (max-width: 900px){
  .booking-hero-grid{
    grid-template-columns: 1fr;
  }

  .mini-actions{
    flex-direction: column;
  }
}

.cities-panel{
  padding: 10px 0 60px;
  background: #ffffff;
}

.cities-card{
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.02);
  padding: 18px;
}

.cities-title{
  margin: 0 0 6px;
  font-size: 20px;
  color: #0f172a;
}

.cities-subtitle{
  margin: 0 0 14px;
  color: rgba(15,23,42,0.65);
  font-size: 14px;
  line-height: 1.5;
  max-width: 760px;
}

.cities-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cities-grid span{
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.9);
  font-size: 13px;
  color: rgba(15,23,42,0.80);
}

@media (max-width: 900px){
  .cities-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Make the email card go on row 2 and centered */
.email-card{
  grid-column: 1 / -1;           /* spans full row */
  max-width: 520px;              /* keeps it from being too wide */
  justify-self: center;          /* centers the card */
}

/* Mobile: stack normally */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .email-card{
    grid-column: auto;
    max-width: 100%;
  }
}
.home-location-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.home-location-card{
  position: relative;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.home-location-card:hover{
  transform: translateY(-3px);
}

.city-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,0.65),
    rgba(15,23,42,0.15),
    rgba(15,23,42,0.00)
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.city-overlay h3{
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

/* CITY IMAGES (replace with your image file paths) */
.city-rome{
  background-image: url("assets/cities/rome-1400.jpg");
}

.city-milan{
  background-image: url("assets/cities/milan-1400.jpg");
}

.city-florence{
  background-image: url("assets/cities/florence-1400.jpg");
}

.city-venice{
  background-image: url("assets/cities/venice-1400.jpg");
}

.home-location-card{
  content-visibility: auto;
  contain-intrinsic-size: 320px 220px;
}

/* Mobile */
@media (max-width: 900px){
  .home-location-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .home-location-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   NAV DROPDOWN (Apple Header)
   ========================= */

.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret{
  font-size: 12px;
  opacity: 0.7;
}

.nav-drop-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 60px rgba(15,23,42,0.16);
  display: none;
  z-index: 999;
}

.nav-drop-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  color: rgba(15,23,42,0.85);
}

.nav-drop-menu a:hover{
  background: rgba(15,23,42,0.06);
  color: #0f172a;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-drop-menu{
  display: block;
}

/* Prevent dropdown from showing on mobile since nav is hidden */
@media (max-width: 1100px){
  .nav-links{
    display: none;
  }
}


/* Keeps title + price aligned nicely */
.pay-option-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

/* Price column (smaller + soft) */
.pay-price{
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;        /* soft gray */
  margin: 0;
  white-space: nowrap;
  text-align: right;
  min-width: 90px;      /* keeps the right side from collapsing */
}

/* Make only the number darker + premium */
.pay-price span{
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.2px;
}
/* =========================
   FINAL CLEAN OVERRIDES
   (Keeps site stable + fixes conflicts)
========================= */

/* Use Apple header only */
.header,
.nav,
.logo,
.lang-switch {
  display: none;
}

/* Apple Dropdown (Services) */
.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 60px rgba(15,23,42,0.16);
  display: none;
  z-index: 999;
}

.nav-dropdown:hover .nav-drop-menu{
  display: block;
}

.nav-drop-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  color: rgba(15,23,42,0.85);
}

.nav-drop-menu a:hover{
  background: rgba(15,23,42,0.06);
  color: #0f172a;
}

/* ✅ Sleek Pay Card */
.pay-card{
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

.pay-title{
  font-size: 18px;
  margin: 0 0 6px;
}

.pay-subtitle{
  font-size: 13px;
  margin: 0 0 14px;
}

.pay-option{
  border-radius: 16px;
  padding: 12px;
  background: rgba(15,23,42,0.02);
  border: 1px solid rgba(15,23,42,0.10);
  margin-bottom: 10px;
}

.pay-option-top{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.pay-price{
  font-size: 12px;
  font-weight: 600;
  color: rgba(15,23,42,0.55);
  min-width: 90px;
  text-align: right;
}

.pay-price span{
  font-weight: 700;
  color: #0f172a;
}

/* Pay buttons smaller + pill + not heavy black */
.pay-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(15,23,42,0.06);
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.10);
  transition: 0.15s ease;
}

.pay-btn:hover{
  background: rgba(15,23,42,0.10);
  transform: translateY(-1px);
}

.pay-btn.primary{
  background: #0f172a;
  color: #ffffff;
}

.pay-btn.primary:hover{
  filter: brightness(1.05);
}

.pay-btn.outline{
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.18);
}
/* Luxury button look */
.header-cta{
  background: #0f172a;
  box-shadow: 0 14px 40px rgba(15,23,42,0.18);
}

.header-cta:hover{
  filter: brightness(1.05);
}

/* Make Pay buttons match the luxury theme */
.pay-btn.primary{
  background: var(--primary);
  border: 1px solid rgba(31,111,139,0.25);
}

.pay-btn.primary:hover{
  background: var(--primary-dark);
}
.site-header{
  background: #fff !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  transform: translateZ(0);
  will-change: transform;
}
.nav-links{
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  white-space: nowrap !important;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1180px){
  .booking-hero-grid{
    grid-template-columns: 1fr !important;
  }
  .booking-hero-right{
    margin-top: 22px !important;
  }
  .pay-card{
    max-width: 100% !important;
  }
}
/* FIX: allow dropdown to show above header/nav */
.site-header{
  overflow: visible !important;
}

.header-inner{
  overflow: visible !important;
}

.nav-links{
  overflow: visible !important;
}

/* Make dropdown sit on top */
.dropdown-menu{
  z-index: 9999 !important;
}

.services-hero-image{
  height: 260px;
  border-radius: 26px;
  margin-top: 28px;
  background-image: url("services-hero.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
}

/* Nice icon spacing */
.card h3 i{
  margin-right: 10px;
  color: var(--primary);
}

.pay-group {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.pay-group-head {
  margin-bottom: 10px;
}

.pay-group-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.pay-group-desc {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.75;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.03);
}

.pay-row-left {
  flex: 1;
  min-width: 0;
}

.pay-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-en
}

/* =========================
   REQUEST FORM CARD
========================= */
.request-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.request-head {
  margin-bottom: 14px;
}

.request-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.request-subtitle {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.75;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.request-field input,
.request-field select,
.request-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.85);
  font-size: 14px;
  outline: none;
}

.request-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
}

.request-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 10px;
}

@media (max-width: 900px) {
  .request-row {
    grid-template-columns: 1fr;
  }
}

.request-urgent {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

.urgent-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.8;
}

.urgent-options {
  display: flex;
  gap: 18px;
  align-items: center;
}

.urgent-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  opacity: 0.85;
}

.privacy-check a {
  text-decoration: underline;
}

.request-btn {
  width: 100%;
  border: none;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  background: #2fb6b0;
  color: white;
  font-size: 14px;
}

.request-btn:hover {
  filter: brightness(0.95);
}

/* =========================
   CONTACT CARDS SMALLER
========================= */
.contact-card {
  padding: 16px !important;
}

.contact-card h3 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  margin: 6px 0;
}

.contact-card .highlight {
  font-size: 13px;
  font-weight: 600;
}

.icon-circle {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

/* Small contact strip */
.booking-contact-strip {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.7);
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}

/* Helper card */
.booking-helper-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

.helper-title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 14px;
}

.helper-text {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

/* PAY TABS */
.pay-tabs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.pay-tab {
  flex: 1;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}

.pay-tab.active {
  background: rgba(0,0,0,0.08);
}

.pay-tab-panel {
  display: none;
}

.pay-tab-panel.active {
  display: block;
}

/* Focus card */
.pay-focus-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

.pay-focus-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* Home mini cards */
.pay-mini-title {
  font-size: 13px;
  opacity: 0.7;
  margin: 0 0 10px;
}

.pay-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pay-mini-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.15s ease;
}

.pay-mini-card:hover {
  transform: translateY(-2px);
}

.pay-mini-card.outline {
  background: rgba(0,0,0,0.02);
  border: 1px dashed rgba(0,0,0,0.2);
}

.pay-mini-bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.pay-mini-cta {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.8;
}

/* REQUEST FORM CARD */
.request-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.request-head {
  margin-bottom: 14px;
}

.request-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.request-subtitle {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.75;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.request-field input,
.request-field select,
.request-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.85);
  font-size: 14px;
  outline: none;
}

.request-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
}

.request-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 10px;
}

@media (max-width: 900px) {
  .request-row {
    grid-template-columns: 1fr;
  }
}

.request-urgent {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

.urgent-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.8;
}

.urgent-options {
  display: flex;
  gap: 18px;
  align-items: center;
}

.urgent-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  opacity: 0.85;
}

.privacy-check a {
  text-decoration: underline;
}

.request-btn {
  width: 100%;
  border: none;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  background: #2fb6b0;
  color: white;
  font-size: 14px;
}

.request-btn:hover {
  filter: brightness(0.95);
}

/* =========================
   CONTACT PAGE (CLEAN)
========================= */

.contact-hero {
  padding: 60px 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }
}

.contact-action-strip {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.7);
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  line-height: 1.25;
}

.strip-link.primary {
  background: #2fb6b0;
  color: #fff;
  border: none;
}

.contact-action-strip .strip-link i {
  flex: 0 0 auto;
}

@media (max-width: 1200px) {
  .contact-action-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-action-strip .strip-link {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .contact-action-strip {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-info-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}

.contact-info-line:last-child {
  border-bottom: none;
}

.contact-info-line .label {
  font-weight: 700;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-info-line .value {
  font-weight: 700;
}

.map-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.map-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.map-subtitle {
  margin: 6px 0 14px;
  font-size: 13px;
  opacity: 0.75;
}

.contact-cities-grid {
  margin-bottom: 14px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.02);
}

.map-placeholder i {
  font-size: 26px;
  opacity: 0.55;
  margin-bottom: 8px;
}

.map-placeholder p {
  margin: 0;
  font-weight: 800;
}

.map-placeholder span {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.7;
}

.contact-note-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-note-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
}

.contact-note-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

/* =========================
   QUICK SEARCH (Light)
========================= */

.site-search {
  position: relative;
  margin-left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
}

.site-search input {
  border: none;
  outline: none;
  font-size: 13px;
  background: transparent;
  width: 210px;
}

.site-search i {
  font-size: 13px;
  opacity: 0.6;
}

/* Dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  display: none;
  z-index: 999;
}

.search-result-item {
  padding: 12px 14px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(0,0,0,0.04);
}

.search-result-icon {
  width: 22px;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 900px) {
  .site-search {
    width: 100%;
    margin: 10px 0 0;
  }

  .site-search input {
    width: 100%;
  }
}
.site-search {
  position: relative;
  margin-left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
}

.site-search input {
  border: none;
  outline: none;
  font-size: 13px;
  background: transparent;
  width: 210px;
}

.site-search i {
  font-size: 13px;
  opacity: 0.6;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  display: none;
  z-index: 999;
}

.search-result-item {
  padding: 12px 14px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(0,0,0,0.04);
}

.search-result-icon {
  width: 22px;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .site-search {
    width: 100%;
    margin: 10px 0 0;
  }

  .site-search input {
    width: 100%;
  }
}

.header-cta {
  white-space: nowrap;
}


/* ===== FONT UPGRADE ===== */

body{
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero-title,
h1, h2, h3{
  font-family: "DM Serif Display", Georgia, serif;
}
/* Floating hero cards near image */

.hero-image-wrap{
  position: relative;
}

/* Main card (existing) */
.hero-card.card-main{
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
}

/* Second card (new one) */
.hero-card.card-second{
  position: absolute;
  top: 40px;
  left: -20px;
  z-index: 2;
  opacity: 0.95;
}

/* Mobile fix */
@media (max-width: 900px){
  .hero-card.card-main,
  .hero-card.card-second{
    position: static;
    margin-top: 16px;
  }
}
.image-card{
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.image-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-card.image-card{
  width: 160px;
  height: 120px;
}
.image-card{
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.image-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-card.image-card{
  width: 200px;
  height: 200x;
}
/* Fix hero floating image cards */

.hero-card.image-card{
  width: 110px;
  aspect-ratio: 3 / 4;
}


.hero-card.image-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* IMPORTANT */
  display: block;
  background: #fff;
}

/* ===== Header: keep ONE line on desktop ===== */
.site-header .header-inner{
  flex-wrap: nowrap;        /* IMPORTANT: stop wrapping on desktop */
}

/* Keep nav + header-right from wrapping on desktop */
/* Keep nav + header-right from wrapping on desktop */
.site-header .nav-links,
.site-header .header-right{
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* NAV ACTIVE (underline is fine here) */
.nav-links a.active{
  color: #111;
  font-weight: 600;
  border-bottom: 0;
}

/* CTA ACTIVE (do NOT use border-bottom) */
.header-cta.active{
  outline: none;
}


/* ===== Only wrap on smaller screens ===== */
@media (max-width: 1024px){
  .site-header .header-inner{
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-header .nav-links{
    flex-wrap: wrap;
    white-space: normal;
    gap: 14px;
  }

  .site-header .header-right{
    flex-wrap: wrap;
    white-space: normal;
    gap: 10px;
  }

  .site-header .header-cta{
    padding: 10px 14px;
    font-size: 14px;
    white-space: nowrap; /* keep CTA on one line */
  }
}
/* ============================
   MOBILE FIX PACK
   Paste at bottom of styles.css
   ============================ */

/* stop sideways scrolling */
html, body { overflow-x: hidden; }

/* make images behave */
img { max-width: 100%; height: auto; display: block; }

/* containers breathe on phone */
@media (max-width: 900px) {
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ---------- HEADER ---------- */
@media (max-width: 900px) {
  .site-header .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* allow wrapping on mobile (you forced no-wrap earlier) */
  .site-header .nav-links,
  .site-header .header-right {
    flex-wrap: wrap;
    white-space: normal;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
  }

  /* dropdown should not overflow screen */
  .dropdown-menu {
    position: static;
    min-width: unset;
    width: 100%;
    margin-top: 8px;
  }

  .header-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
  }

  .lang-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* CTA becomes full-width button on phone */
  .header-cta {
    width: 100%;
    text-align: center;
  }
}

/* ---------- HERO / GRIDS ---------- */
@media (max-width: 900px) {
  /* common grid patterns */
  .hero-grid,
  .booking-hero-grid,
  .contact-hero-grid,
  .home-two-col,
  .grid,
  .home-location-grid,
  .home-services-grid {
    display: block !important;
  }

  /* spacing between stacked blocks */
  .hero-left, .hero-right,
  .booking-hero-left, .booking-hero-right,
  .contact-left, .contact-right {
    width: 100%;
  }

  .hero-title { font-size: 34px; line-height: 1.1; }
  .page-title { font-size: 34px; line-height: 1.1; }

  /* hero image/cards should never overflow */
  .hero-image-wrap,
  .hero-right,
  .hero-image-circle,
  .hero-card {
    max-width: 100%;
  }

  /* if your hero cards are absolutely positioned, this makes them stack */
  .hero-card {
    position: static !important;
    margin-top: 12px;
  }
}

/* ---------- SERVICES CARDS ---------- */
@media (max-width: 900px) {
  .card { width: 100%; }
  .service-group .grid { display: block !important; }
  .service-group .card { margin-bottom: 16px; }
}

/* ---------- BOOKING TABS ---------- */
@media (max-width: 900px) {
  .pay-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pay-tab {
    flex: 1 1 auto;
  }

  .pay-mini-grid {
    display: block !important;
  }

  .pay-mini-card {
    margin-bottom: 12px;
  }
}
/* ===============================
   CLEAN MOBILE STACKED HEADER
   =============================== */

@media (max-width: 900px) {

  /* Header container stacks */
  .site-header .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Navigation becomes stacked */
  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 14px;
  }

  /* Dropdown menu behaves normally */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 10px;
  }

  /* Right section stacks */
  .header-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  /* Languages smaller */
  .lang-toggle a {
    font-size: 13px;
  }

  /* CTA full width for visibility */
  .header-cta {
    width: 100%;
    text-align: center;
    margin-top: 6px;
  }
}

/* remove hamburger */
.mobile-menu-btn,
.mobile-overlay,
.mobile-drawer {
  display: none !important;
}
/* ===============================
   MOBILE HEADER FIX (mini desktop)
   =============================== */
/* Default: desktop */
.mobile-menu,
.mobile-menu-btn { 
  display: none; 
}

/* MOBILE */
@media (max-width: 900px) {

  /* Keep header visible and above page content */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 10000;
    background: #fff;
    display: block;
    width: 100%;
  }

  /* Header layout: brand left, button right */
  .site-header .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
  }

  /* Brand should ALWAYS show */
  .site-header .brand{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    max-width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Right side container stays visible */
  .site-header .header-right{
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  /* Hide desktop nav + lang + CTA inside the header (but keep button) */
  .site-header .nav-links{ 
    display: none !important; 
  }
  .site-header .lang-toggle{ 
    display: none !important; 
  }
  .site-header .header-cta{ 
    display: none !important; 
  }

  /* Show menu button */
  .mobile-menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    font-size: 18px;
    line-height: 1;
    z-index: 10001; /* above header background */
  }

  /* Mobile menu overlay should exist but NOT cover unless open */
  .mobile-menu{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 20000; /* above header when open */
  }
  .mobile-menu.open{
    opacity: 1;
    pointer-events: auto;
  }

  /* Panel (you’ll insert .mobile-menu-panel inside #mobileMenu via JS or HTML) */
  .mobile-menu-panel{
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100%;
    background: #fff;
    padding: 16px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .mobile-menu.open .mobile-menu-panel{
    transform: translateX(0);
  }

  .mobile-menu-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom: 14px;
  }

  .mobile-close-btn{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    background:#fff;
    font-size: 18px;
  }

  /* Show language + nav + CTA INSIDE the mobile menu panel */
  .mobile-menu .lang-toggle{
    display:flex !important;
    gap: 10px;
    margin: 10px 0 14px;
    flex-wrap: wrap;
  }
  .mobile-menu .lang-toggle a.active{
    font-weight: 700;
    border-bottom: 0;
  }

  .mobile-menu .nav-links{
    display:flex !important;
    flex-direction:column;
    gap: 8px;
    margin: 10px 0 14px;
  }
  .mobile-menu .nav-links a{
    padding: 12px 12px;
    border-radius: 12px;
  }
  .mobile-menu .nav-links a.active{
    background: rgba(212, 238, 206, 0.35);
    font-weight: 700;
  }

  .mobile-menu .header-cta{
    display:block !important;
    width:100%;
    text-align:center;
    margin-top: 12px;
  }

  body.menu-open{
    overflow: hidden;
  }
}
/* ===== MOBILE HEADER FIX (PASTE AT VERY BOTTOM) ===== */
@media (max-width: 900px) {

  /* make header visible + on top */
  .site-header{
    display: block !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999999 !important;
    background: #fff !important;
  }

  /* layout: brand left, hamburger right */
  .site-header .header-inner{
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 12px 16px !important;
  }

  /* show brand + right side */
  .site-header .brand{
    display: inline-flex !important;
    align-items: center !important;
  }

  .site-header .header-right{
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* show hamburger */
  .site-header .mobile-menu-btn{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
  }

  /* hide desktop stuff in header on mobile */
  .site-header .nav-links{ display: none !important; }
  .site-header .lang-toggle{ display: none !important; }
  .site-header .header-cta{ display: none !important; }
}
/* IT MOBILE HEADER: always show brand + hamburger */
@media (max-width: 900px){
  #site-header header.site-header .header-inner{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
  }
  #site-header header.site-header .header-right{
    display:flex !important;
    align-items:center !important;
  }
  #site-header header.site-header .mobile-menu-btn{
    display:inline-flex !important;
    width:44px !important;
    height:44px !important;
    align-items:center !important;
    justify-content:center !important;
  }
  /* hide desktop items on mobile */
  #site-header header.site-header nav.nav-links,
  #site-header header.site-header .lang-toggle,
  #site-header header.site-header .header-cta{
    display:none !important;
  }
}
/* SERVICES GRID — MOBILE FIX */
@media (max-width: 900px){
  .home-services-grid{
    display: grid !important;
    grid-template-columns: 1fr !important; /* 1 column on mobile */
    gap: 14px !important;
  }

  .home-service-card{
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
  }

  .home-icon{
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .home-service-card h3{
    margin: 0 0 6px;
  }

  .home-service-card p{
    margin: 0 0 10px;
  }
}
/* ===============================
   FULL VIDEO HERO – FINAL REFINED
================================= */

.hero-video-full{
  position: relative;
  height: 82vh;
  overflow: hidden;
}

/* Background video */
.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.90; /* <-- transparency level */
}

/* Smart directional overlay (darker left, lighter right) */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.05) 100%
  );
}

/* Hero content */
.hero-content{
  position: relative;
  z-index: 2;
  padding: 90px 24px 40px;
  color: white;
  max-width: 640px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.55);
}

.hero-content h1{
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-content .accent{
  color: #4ea1ff;
  text-shadow: 0 0 18px rgba(78,161,255,0.4);
}

.hero-subtitle{
  font-size: 16px;
  opacity: 0.95;
}

/* Buttons */
.hero-buttons{
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn.ghost{
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(6px);
}

/* Floating Emergency Badge – Improved Glass */
.hero-emergency{
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: white;
  padding: 14px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 3;
}

.hero-emergency p{
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.hero-emergency a{
  display: inline-block;
  padding: 6px 14px;
  background: white;
  color: #0b1b35;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
/* ===== HERO CLEAN FIX ===== */

.hero-video-full {
  position: relative;
  min-height: 100svh; /* better than vh on iPhone */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* soften overlay so text is readable but not dark */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

/* remove blue glow effect */
.hero-content .accent {
  color: #4ea1ff;
  text-shadow: none !important;
}

/* improve eyebrow visibility */
.hero-eyebrow {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* subtitle more readable */
.hero-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.5;
  margin-top: 14px;
}

/* better spacing */
.hero-content {
  padding: 100px 20px 80px;
  max-width: 650px;
}

/* ===== BUTTON LAYOUT FIX ===== */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* ===== EMERGENCY BADGE CLEAN ===== */

.hero-emergency {
  bottom: 30px;
  left: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 16px 20px;
}

.hero-emergency p {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.hero-emergency a {
  background: white;
  color: #0b1b35;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

/* ===== MOBILE STACK FIX ===== */

@media (max-width: 768px) {

  .hero-content {
    padding: 120px 24px 100px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-emergency {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 30px;
    width: fit-content;
  }

}
/* MOBILE DROPDOWN FIX */
@media (max-width: 768px) {

  /* Hide dropdown by default */
  .dropdown-menu {
    display: none;
  }

  /* Show only when dropdown has .open */
  .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .dropdown-menu a {
    display: block;
    width: 100%;
  }

}
.logo {
  height: 90px;
  width: auto;
  display: block;
}


@media (max-width: 900px) {
  /* Override the old rule that breaks the locations layout */
  .home-location-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .home-location-card {
    width: 100% !important;
    height: 130px !important;
    border-radius: 20px !important;
  }

  .city-overlay h3 {
    font-size: 22px !important;
  }
}

/* Fix large vertical gaps on mobile */
@media (max-width: 900px){

  .home-section{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home-cta-row{
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .center{
    margin-bottom: 20px;
  }

}

/* ===============================
   DESKTOP GAP KILLER (ALL PAGES)
   Put at VERY bottom of styles.css
   =============================== */
@media (min-width: 901px) {
  /* If any sections were set to 100vh / big spacing, override it */
  .home-section,
  .home-locations,
  .home-final-cta,
  .home-services {
    min-height: auto !important;
    height: auto !important;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  /* Remove any huge top margins that push headings down */
  .home-section .container,
  .home-locations .container,
  .home-services .container {
    margin-top: 0 !important;
  }

  /* Tighten the “center” blocks so they don't add empty space */
  .center {
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  /* Reduce gaps between sections if your CSS adds margins */
  .home-section + .home-section {
    margin-top: 0 !important;
  }
}
/* Services section CTA row */
.home-cta-row{
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================================
   GLOBAL SECTION SPACING FIX
   ========================================= */

/* HERO → CITIES breathing room */
.hero-video-full{
  margin-bottom: 90px;
}

@media (max-width: 900px){
  .hero-video-full{
    margin-bottom: 60px;
  }
}

/* Cities section spacing */
.home-locations{
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Global section spacing */
.home-section{
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Prevent sections from creating giant whitespace */
.home-section,
.home-locations,
.home-final-cta,
.home-services{
  min-height: auto !important;
  height: auto !important;
}

/* Tighten inner spacing */
.center{
  margin-bottom: 24px !important;
}

.home-lead{
  margin-bottom: 18px !important;
}

/* CTA rows */
.home-cta-row{
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

/* =========================================
   CITIES GRID IMPROVEMENT
   ========================================= */

.home-location-grid{
  margin-top: 40px;
  gap: 28px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

/* City cards */
.home-location-card{
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-location-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Overlay styling */
.city-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,0)
  );
}

.city-overlay h3{
  color: white;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .02em;
}

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

@media (max-width: 900px){

  .home-section{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home-locations{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home-location-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-location-card{
    height: 200px;
  }

}

/* Other Cities section styling */
.other-cities p{
  max-width: 780px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.other-cities a{
  color: #2f4aa3;           /* classy blue (matches medical vibe) */
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(47,74,163,.25);
  padding-bottom: 2px;
}

.other-cities a:hover{
  border-bottom-color: rgba(47,74,163,.6);
}

/* Make the link line look intentional */
.other-cities .city-links{
  margin-top: 10px !important;
  font-size: 18px;
}

/* Force buttons to never inherit ugly link styles */
.btn,
.btn:link,
.btn:visited{
  text-decoration: none !important;
}

/* Forced CTA buttons */
.services-btn,
.primary-button,
.book-btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 26px !important;
  border-radius: 40px !important;
  border: 0 !important;
  outline: none !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  box-shadow: 0 8px 20px rgba(18, 65, 93, 0.16) !important;
  text-decoration: none !important;
}

/* Services button */
.services-btn,
.primary-button{
  background: #77c2bd !important;
  color: #fff !important;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.services-btn:hover,
.primary-button:hover{
  background: #5ea9a4 !important;
  box-shadow: 0 10px 24px rgba(18, 65, 93, 0.2) !important;
  transform: translateY(-2px);
}

.primary-button:focus,
.primary-button:active{
  outline: none !important;
  border: 0 !important;
}

/* Book button */
.book-btn{
  background: #111827 !important;
  color: #fff !important;
  transition: transform .25s ease, background .25s ease;
}
.book-btn:hover{
  background: #0b1220 !important;
  transform: translateY(-2px);
}

/* =========================================
   CLEAN SERVICES → FAQ SPACING (EN + IT)
   Paste at VERY bottom of styles.css
   ========================================= */

/* 1) Reduce bottom padding in Services section */
.home-section.home-services{
  padding-bottom: 40px !important;
}

/* 2) Reduce top padding in the NEXT section (your FAQ section) */
.home-section.home-services + .home-section{
  padding-top: 35px !important;
}

/* 3) Tighten the FAQ header block (pill + title + lead) */
.home-section.home-services + .home-section .center{
  margin-bottom: 16px !important;
}

.home-section.home-services + .home-section .home-pill{
  margin-bottom: 10px !important;
}

.home-section.home-services + .home-section h2{
  margin-top: 6px !important;
  margin-bottom: 12px !important;
}

.home-section.home-services + .home-section .home-lead{
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  max-width: 720px !important;
}

/* 4) Tighten FAQ list spacing */
.home-section.home-services + .home-section .home-faq{
  margin-top: 10px !important;
}

.home-section.home-services + .home-section .faq-item{
  margin-bottom: 10px !important;
}

/* Mobile tune */
@media (max-width: 900px){
  .home-section.home-services{
    padding-bottom: 30px !important;
  }
  .home-section.home-services + .home-section{
    padding-top: 26px !important;
  }
}

/* ===============================
   CITY SERVICE BUTTONS
   =============================== */

.service-button-row{
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.service-button{
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(10,20,35,0.15);
  background: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: inherit;
  transition: all .18s ease;
}

.service-button:hover{
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(31, 57, 96, 0.35);
  transform: translateY(-1px);
}

.brand{
display:flex;
align-items:center;
gap:14px;
}

.logo-icon{
height:48px;
width:auto;
}

.logo-text{
height:38px;
width:auto;
}

/* ===============================
   MOBILE MENU REDESIGN (FINAL)
   =============================== */
@media (max-width: 900px) {
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 20000;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, 100vw);
    height: 100dvh;
    max-height: 100dvh;
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px 0 0 22px;
    box-shadow: -18px 0 50px rgba(8, 24, 44, 0.16);
    transform: translateX(100%);
    transition: transform 0.26s ease;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px 10px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .mobile-menu-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.01em;
  }

  .mobile-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #0f172a;
    font-size: 16px;
  }

  .mobile-menu .lang-toggle {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .mobile-menu .lang-toggle .lang-item {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
  }

  .mobile-menu .lang-toggle .lang-item.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    box-shadow: none;
  }

  .mobile-menu .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 2px 0 4px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu .nav-links > a.nav-item,
  .mobile-menu .nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 11px 12px !important;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    color: #122033;
    font-size: 14px !important;
    line-height: 1.35;
    text-decoration: none;
  }

  .mobile-menu .nav-links a.active {
    background: #eef6ff;
    border-color: rgba(31, 57, 96, 0.25);
    border-bottom: 1px solid rgba(31, 57, 96, 0.25);
    font-weight: 700;
  }

  .mobile-menu .dropdown {
    width: 100%;
  }

  .mobile-menu .dropdown-menu {
    position: static !important;
    display: none;
    min-width: 0;
    margin: 6px 0 2px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: none;
  }

  .mobile-menu .dropdown.open .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu .dropdown-menu a {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: 13px;
    line-height: 1.35;
  }

  .mobile-menu .header-cta {
    display: block !important;
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    text-align: center;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 700;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ===============================
   LANGUAGE FLAGS
   =============================== */
.lang-toggle .lang-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.lang-flag {
  width: 24px;
  height: 16px;
  display: inline-block;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.14);
  flex: 0 0 auto;
}

.lang-code {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .mobile-menu .lang-toggle .lang-item {
    gap: 6px;
  }

  .mobile-menu .lang-toggle .lang-item .lang-flag {
    width: 20px;
    height: 14px;
  }

  .mobile-menu .lang-toggle .lang-item .lang-code {
    font-size: 12px;
  }
}

/* ===============================
   HERO VIDEO POLISH (FINAL)
   =============================== */
.hero-video-full {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(7, 16, 28, 0.68) 0%,
    rgba(7, 16, 28, 0.46) 40%,
    rgba(7, 16, 28, 0.28) 72%,
    rgba(7, 16, 28, 0.2) 100%
  );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 16, 28, 0.1) 0%,
    rgba(7, 16, 28, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(96px, 12vh, 132px) 24px 72px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(6, 16, 31, 0.45);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 14px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 12.5ch;
}

.hero-content .accent {
  display: block;
  margin-top: 8px;
  color: #d6ebff;
  font-weight: 600;
}

.hero-subtitle {
  margin-top: 16px;
  max-width: 56ch;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-height: 46px;
  padding: 12px 20px;
}

.hero-buttons .btn.primary {
  box-shadow: 0 12px 30px rgba(8, 20, 38, 0.36);
}

.hero-buttons .btn.ghost {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
}

.hero-emergency {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 16, 28, 0.38);
  color: #fff;
  box-shadow: 0 12px 30px rgba(4, 14, 27, 0.34);
}

.hero-emergency p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero-emergency a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: #0b1b35;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero-video-full {
    min-height: 86svh;
    margin-bottom: 52px;
  }

  .hero-content {
    max-width: 100%;
    padding: 108px 24px 96px;
  }

  .hero-content h1 {
    max-width: 15ch;
    line-height: 1.1;
  }

  .hero-subtitle {
    margin-top: 14px;
    line-height: 1.5;
  }

  .hero-buttons {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-emergency {
    left: 24px;
    bottom: 18px;
    padding: 10px 14px;
  }
}

/* ===============================
   HEADER RESPONSIVE STABILITY FIX
   =============================== */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 15000 !important;
  display: block !important;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  flex-wrap: nowrap;
}

.site-header .brand {
  flex: 0 1 auto;
  min-width: 0;
}

.site-header .nav-links {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}

.site-header .header-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 10px;
}

.site-header .mobile-menu-btn {
  display: none !important;
}

/* Tablet + mobile: collapse nav into hamburger */
@media (max-width: 1100px) {
  .site-header .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .site-header .nav-links {
    display: none !important;
  }

  .site-header .brand {
    display: inline-flex !important;
    align-items: center;
    min-width: 0;
    overflow: hidden;
  }

  .site-header .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #fff;
    color: #0f172a;
    font-size: 20px;
    line-height: 1;
  }

  /* Keep CTA visible in the header on tablet/mobile */
  .site-header .header-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header .header-right {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .site-header .lang-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 20000;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, 100vw);
    height: 100dvh;
    max-height: 100dvh;
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px 0 0 22px;
    box-shadow: -18px 0 50px rgba(8, 24, 44, 0.16);
    transform: translateX(100%);
    transition: transform 0.26s ease;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .mobile-menu .lang-toggle {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-menu .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 2px 0 4px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu .dropdown-menu {
    position: static !important;
    display: none;
    min-width: 0;
    margin: 6px 0 2px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: none;
  }

  .mobile-menu .dropdown.open .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu .header-cta {
    display: block !important;
    width: 100%;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Keep header sections fitting on laptop widths after full language labels */
@media (min-width: 1101px) and (max-width: 1600px) {
  #site-header header.site-header > .container.header-inner {
    gap: 10px !important;
  }

  #site-header header.site-header .nav-item,
  #site-header header.site-header .dropdown-toggle {
    font-size: 11px !important;
    padding: 6px 7px !important;
  }

  #site-header header.site-header .header-right {
    gap: 6px !important;
  }

  #site-header header.site-header .lang-toggle {
    padding: 2px !important;
    gap: 2px !important;
  }

  #site-header header.site-header .lang-item {
    padding: 6px !important;
    min-width: 30px;
    justify-content: center;
  }

  #site-header header.site-header .lang-item .lang-code {
    display: none;
  }
}

/* Small mobile: keep top-right hamburger clear and uncluttered */
@media (max-width: 860px) {
  .site-header .header-inner {
    gap: 10px;
  }

  .site-header .brand {
    max-width: 100%;
    min-width: 0;
  }

  .site-header .logo-icon {
    height: 38px;
  }

  .site-header .logo-text {
    height: 30px;
  }

  .site-header .header-right {
    gap: 8px;
  }

  .site-header .header-cta {
    padding: 9px 10px;
    font-size: 12px;
  }

  .site-header .mobile-menu-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .site-header .lang-toggle {
    display: none !important;
  }
}

/* ==========================================
   FINAL HEADER VISIBILITY GUARANTEE
   Keep logo + CTA + hamburger always visible
   ========================================== */
#site-header {
  position: relative;
  min-height: 72px;
}

#site-header header.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 15000 !important;
}

@media (max-width: 1100px) {
  #site-header {
    min-height: 68px;
  }

  #site-header header.site-header .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    min-height: 68px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  #site-header header.site-header .brand {
    display: inline-flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 0 !important;
  }

  #site-header header.site-header .header-right {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: auto !important;
    flex-wrap: nowrap !important;
    position: static !important;
    margin-left: 0 !important;
  }

  #site-header header.site-header nav.nav-links {
    display: none !important;
  }

  #site-header header.site-header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  #site-header header.site-header .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 44px !important;
  }

  #site-header header.site-header .lang-toggle {
    display: none !important;
  }
}

/* ===============================
   Editorial Internal Content Links
   =============================== */
.content-link-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  margin: 0 0.08em;
  padding: 0.08em 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #1f4ea8;
  font-weight: 620;
  font-size: 1.02em;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.content-link-premium:hover {
  color: #11377f;
  background: transparent;
  transform: translateY(-1px);
}

.content-link-premium:focus-visible {
  outline: 2px solid rgba(31, 78, 168, 0.36);
  outline-offset: 2px;
}

p.content-link-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

p.content-link-group .content-link-premium {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-weight: 650;
  padding: 0.06em 0;
  border-bottom: 1px solid rgba(31, 78, 168, 0.22);
}

@media (max-width: 900px) {
  .content-link-premium {
    font-size: 1em;
    padding: 0.08em 0;
  }

  p.content-link-group {
    justify-content: flex-start;
    gap: 8px;
  }

  p.content-link-group .content-link-premium {
    font-size: 1.02rem;
    padding: 0.06em 0;
  }
}

/* ===============================
   Services Cards Layout Repair
   =============================== */
.home-services .home-services-grid {
  margin-top: 34px;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.home-services .home-service-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
  padding: 24px !important;
  border-radius: 18px;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.home-services .home-service-card .home-icon {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1;
}

.home-services .home-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.06rem, 1.05vw, 1.22rem);
  line-height: 1.3;
  letter-spacing: 0;
  text-wrap: pretty;
}

.home-services .home-service-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(15, 23, 42, 0.7);
  text-wrap: pretty;
}

.home-services .home-service-card .home-link {
  margin-top: auto !important;
  padding-top: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .home-services .home-services-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 900px) {
  .home-services .home-services-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home-services .home-service-card {
    height: auto;
    padding: 18px !important;
  }

  .home-services .home-service-card .home-link {
    padding-top: 10px;
  }
}

/* Services page cards: multilingual-safe vertical rhythm */
.services .service-group .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.services .service-group .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
  padding: 24px;
}

.services .service-group .card h3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  line-height: 1.3;
  text-wrap: pretty;
}

.services .service-group .card p {
  margin: 0;
  line-height: 1.6;
  text-wrap: pretty;
}

.services .service-group .card p + p {
  margin-top: 10px;
}

.services .service-group .card p:last-child {
  margin-top: auto;
}

.services .service-group .card p:last-child a {
  display: inline-flex;
  font-weight: 700;
}

@media (max-width: 1240px) {
  .services .service-group .grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 840px) {
  .services .service-group .grid {
    grid-template-columns: 1fr;
  }

  .services .service-group .card {
    padding: 20px;
  }
}

/* ===============================
   Hero Emergency Overlap Guard
   =============================== */
.hero-video-full .hero-emergency {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 24px 0;
  width: fit-content;
  max-width: min(360px, calc(100% - 48px));
}

.hero-video-full .hero-emergency a {
  display: inline-flex;
  align-self: flex-start;
}

/* Prevent overlap/collapse on home + city pages at in-between sizes */
@media (max-width: 1280px) {
  .hero-video-full {
    min-height: 90svh;
    padding-bottom: 0;
  }

  .hero-video-full .hero-content {
    max-width: min(760px, 100%);
    padding-bottom: 72px;
  }

  .hero-video-full .hero-emergency {
    max-width: calc(100% - 48px);
  }
}

/* Only float the emergency badge when viewport is comfortably large */
@media (min-width: 1281px) and (min-height: 860px) {
  .hero-video-full .hero-emergency {
    position: absolute !important;
    left: 24px !important;
    bottom: 24px !important;
    margin: 0;
  }
}

/* ===============================
   Header Desktop Stability + CTA Bubble
   =============================== */
@media (min-width: 1101px) {
  #site-header header.site-header .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    min-height: 72px;
  }

  #site-header header.site-header .brand {
    flex: 0 0 auto !important;
    min-width: 0;
  }

  #site-header header.site-header nav.nav-links {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    justify-content: center !important;
  }

  #site-header header.site-header .header-right {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: nowrap !important;
  }

  /* Header-only CTA: more circular bubble look */
  #site-header header.site-header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px;
    padding: 10px 16px !important;
    border-radius: 9999px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

/* Tight desktop/laptop widths: prevent wrapping before mobile menu breakpoint */
@media (min-width: 1101px) and (max-width: 1500px) {
  #site-header header.site-header .brand {
    gap: clamp(8px, 0.8vw, 12px);
  }

  #site-header header.site-header .logo-icon {
    height: clamp(36px, 2.6vw, 46px);
  }

  #site-header header.site-header .logo-text {
    height: clamp(28px, 2.1vw, 36px);
  }

  #site-header header.site-header .nav-item,
  #site-header header.site-header .dropdown-toggle {
    font-size: clamp(11px, 0.78vw, 13px) !important;
    padding: clamp(6px, 0.45vw, 8px) clamp(6px, 0.7vw, 10px) !important;
  }

  #site-header header.site-header nav.nav-links {
    gap: clamp(2px, 0.45vw, 6px) !important;
  }

  #site-header header.site-header .lang-toggle {
    gap: 2px;
    padding: 2px;
  }

  #site-header header.site-header .lang-item {
    font-size: clamp(11px, 0.75vw, 12px);
    padding: clamp(6px, 0.45vw, 7px) clamp(7px, 0.6vw, 9px);
  }

  #site-header header.site-header .header-right {
    gap: clamp(6px, 0.55vw, 9px) !important;
  }

  #site-header header.site-header .header-cta {
    min-height: clamp(38px, 2.5vw, 42px);
    padding: clamp(8px, 0.55vw, 10px) clamp(11px, 1vw, 15px) !important;
    font-size: clamp(11px, 0.78vw, 13px) !important;
  }
}

/* Header container alignment: match main site container exactly */
#site-header header.site-header > .container.header-inner {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ===============================
   Premium Header Refinement
   =============================== */
#site-header header.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#site-header header.site-header .nav-links {
  background: rgba(15, 23, 42, 0.03) !important;
  border-color: rgba(15, 23, 42, 0.10) !important;
}

#site-header header.site-header .nav-item,
#site-header header.site-header .dropdown-toggle {
  color: #0f1c2f !important;
}

#site-header header.site-header .nav-item:hover,
#site-header header.site-header .dropdown-toggle:hover {
  color: #2b6cb0 !important;
  background: rgba(15, 23, 42, 0.05) !important;
}

#site-header header.site-header .lang-toggle {
  background: rgba(15, 23, 42, 0.03) !important;
  border-color: rgba(15, 23, 42, 0.10) !important;
}

#site-header header.site-header .lang-item {
  color: #0f1c2f !important;
}

#site-header header.site-header .mobile-menu-btn {
  color: #0f1c2f !important;
  border-color: rgba(15, 23, 42, 0.14) !important;
  background: #ffffff !important;
}

#site-header header.site-header .nav-drop-menu {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
}

#site-header header.site-header .nav-drop-menu a {
  color: #0f1c2f !important;
}

#site-header header.site-header .nav-drop-menu a:hover {
  color: #2b6cb0 !important;
  background: rgba(15, 23, 42, 0.05) !important;
}

@media (min-width: 1101px) {
  #site-header header.site-header > .container.header-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center !important;
    gap: 16px !important;
    min-height: 74px;
  }

  #site-header header.site-header .brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px;
    min-width: 0;
  }

  #site-header header.site-header .logo-icon {
    height: 44px;
    width: auto;
  }

  #site-header header.site-header .logo-text {
    height: 34px;
    width: auto;
  }

  #site-header header.site-header nav.nav-links {
    justify-self: center;
    display: inline-flex !important;
    align-items: center;
    gap: 4px !important;
    width: auto !important;
    max-width: 100%;
    padding: 4px !important;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: rgba(15, 23, 42, 0.03);
  }

  #site-header header.site-header .nav-item,
  #site-header header.site-header .dropdown-toggle {
    font-size: 12px !important;
    line-height: 1.2;
    padding: 7px 9px !important;
    border-radius: 12px;
  }

  #site-header header.site-header .header-right {
    justify-self: end;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  #site-header header.site-header .lang-toggle {
    gap: 2px;
    padding: 2px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.1);
  }

  #site-header header.site-header .lang-item {
    font-size: 11px;
    padding: 7px 8px;
  }

  #site-header header.site-header .header-cta {
    min-height: 40px;
    padding: 9px 14px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 700;
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  #site-header header.site-header > .container.header-inner {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
  }

  #site-header header.site-header .brand {
    gap: 10px;
  }

  #site-header header.site-header .logo-icon {
    height: 40px;
  }

  #site-header header.site-header .logo-text {
    height: 31px;
  }

  #site-header header.site-header .header-right {
    gap: 8px !important;
  }

  #site-header header.site-header .header-cta {
    min-height: 38px;
    padding: 8px 11px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
  }
}

.seo-related-links{
  padding: 28px 0 10px;
}

.seo-related-links .container{
  border-top: 1px solid rgba(15,23,42,0.10);
  padding-top: 22px;
}

.seo-related-links h2{
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.seo-related-links ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 16px;
}

.seo-related-links a{
  text-decoration: none;
}

.seo-related-links .btn{
  margin-top: 16px;
}

.seo-related-links .services-cta{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.seo-related-links .services-cta .btn{
  margin-top: 0;
}

.reviews-home {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
}

.reviews-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.review-card-top {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.review-name {
  margin: 0;
  font-weight: 700;
  color: var(--dark);
}

.review-city {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-stars {
  margin: 0;
  color: #b7791f;
  letter-spacing: 1px;
  font-size: 14px;
}

.review-message {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.review-service {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.reviews-empty {
  margin: 16px auto 0;
  max-width: 620px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  color: #4f5f77;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.review-form-wrap .container {
  max-width: 700px;
}

.review-form {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.review-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--dark);
  background: #fff;
}

.review-form textarea {
  resize: vertical;
  min-height: 170px;
  margin-bottom: 20px;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 86, 167, 0.12);
}

.review-consent {
  margin-top: 0;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}

.review-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.review-form-status {
  min-height: 24px;
  margin: 20px 0 0;
  font-weight: 600;
}

.review-form-status.success {
  color: #1f6a43;
}

.review-form-status.error {
  color: #a42a2a;
}

@media (max-width: 760px) {
  .review-form {
    padding: 16px;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.review-form-page .hero {
  padding: 74px 0 32px;
}

.review-form-page .hero h1 {
  font-size: clamp(30px, 4.2vw, 36px);
  margin-bottom: 10px;
}

.review-form-page .hero p {
  font-size: 16px;
  margin: 0;
}

.review-form-page .review-form-wrap {
  padding-top: 20px;
}

.review-rating {
  display: grid;
  gap: 8px;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.star-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #c8ced8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 2px;
  transition: color 0.2s ease, transform 0.12s ease;
}

.star-btn:hover {
  transform: translateY(-1px);
}

.star-btn.active {
  color: #f1b94c;
}

.review-actions {
  margin-top: 20px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.review-action-btn {
  min-width: 210px;
}

.review-back-link {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.6);
  text-decoration: none;
}

.review-back-link:hover {
  color: var(--dark);
  text-decoration: underline;
}
