/* Reset default margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: white;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E3A8A; /* Dark blue */
    padding: 3rem 4rem;
}

.logo img {
    height: 70px;
    transition: transform 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #A5D8FF; /* Light blue on hover */
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 50px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #1E3A8A;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}
/* ===== ENHANCED STYLES FOR FINFREASH KLEANERZ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    background-color: #fefefe;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 58, 138, 0.8); /* semi-transparent blue */
    backdrop-filter: blur(10px); /* glass blur effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}


.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #A5D8FF;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(165, 216, 255, 0.6);
}

/* ===== LANGUAGE DROPDOWN ===== */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lang-btn:hover {
    background: white;
    color: #1E3A8A;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 80px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-content a {
    color: #1E3A8A;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #e0f2ff;
}

.language-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Optional: Water ripple effect (on click) */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Social Icons Style */
.social-icons-desktop {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: 40px; /* Adjust this for spacing */
}

.social-icons-desktop a {
    display: inline-block;
    padding: 0; /* Remove extra padding */
    margin: 0;  /* Remove extra margin */
    line-height: 1;
}

.social-link {
    display: inline-block;
}

.social-icon {
    height: 28px;
    width: 28px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.2s;
    padding: 0;
    box-shadow: none;
    background: none;
}

.social-link:hover,
.social-icon:hover {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    transform: scale(1.13);
}

/* Hide desktop social icons on mobile */
@media (max-width: 992px) {
    .social-icons-desktop {
        display: none !important;
    }
}

/* Sidebar social icons: horizontal row, only on mobile */
.social-icons-sidebar {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.social-icons-sidebar a {
    padding: 0;
    margin: 0;
    line-height: 1;
}

@media (min-width: 993px) {
    .social-icons-sidebar {
        display: none !important;
    }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 950px;
}

.hero-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: .6rem;
  opacity: .9;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: .5rem;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 1.5rem;
}

.hero-ctas { margin-top: 12px; }
.btn { padding: .6rem 1rem; border-radius: 8px; text-decoration:none; font-weight:600; margin:0 .4rem; }
.btn-primary { background:#1E3A8A; color:#fff; }
.btn-ghost { background: rgba(255,255,255,0.92); color:#1E3A8A; }

/* fallback for mobile: hide video, show bg image */
@media (max-width: 600px) {

}
/* ===== Premium Services Preview ===== */
.services-preview {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  padding: 72px 24px;
}

.services-preview-header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-preview-header h2 {
  color: #1E3A8A;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin: 14px 0 12px;
}

.services-preview-header p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.service-card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.premium-service-card {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(30, 58, 138, 0.10);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(30, 58, 138, 0.18);
  border-color: rgba(37, 99, 235, 0.38);
}

.featured-service-card {
  border-color: rgba(37, 99, 235, 0.28);
}

.service-media {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #dbeafe;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.42));
  pointer-events: none;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  animation: none;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.premium-service-card:hover .service-img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  background: rgba(30, 58, 138, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.service-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eff6ff;
  color: #1E3A8A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.service-type {
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-info h2 {
  font-size: 1.45rem;
  color: #1E3A8A;
  margin-bottom: 10px;
}

.service-info p {
  color: #334155;
  line-height: 1.65;
  font-size: 0.98rem;
  opacity: 1;
  margin-bottom: 18px;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.service-highlights span {
  color: #1E3A8A;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.service-mini-btn,
.service-link-btn {
  border: none;
  text-decoration: none;
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-mini-btn {
  color: #ffffff;
  background: #2563eb;
  flex: 1;
}

.service-link-btn {
  color: #1E3A8A;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.service-mini-btn:hover,
.service-link-btn:hover {
  transform: translateY(-2px);
}

.quick-package-strip {
  max-width: 1180px;
  margin: 28px auto 0;
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.96), rgba(37, 99, 235, 0.92)),
    #1E3A8A;
  color: #ffffff;
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 55px rgba(30, 58, 138, 0.22);
  overflow: hidden;
  position: relative;
}

.quick-package-strip::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.quick-package-copy {
  position: relative;
  z-index: 1;
}

.quick-package-copy .section-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.quick-package-copy h3 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  margin: 12px 0 10px;
}

.quick-package-copy p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  max-width: 650px;
}

.quick-package-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.quick-package-pills span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .service-card-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .quick-package-strip {
    grid-template-columns: 1fr;
  }

  .quick-package-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .services-preview {
    padding: 54px 16px;
  }

  .service-media {
    height: 190px;
  }

  .service-info {
    padding: 20px;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-mini-btn,
  .service-link-btn {
    width: 100%;
    text-align: center;
  }

  .quick-package-strip {
    padding: 22px;
    border-radius: 24px;
  }
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .service-block {
    flex-direction: column;
    text-align: center;
    padding: 18px;
    gap: 18px;
  }
  .service-img {
    width: 90vw;
    max-width: 340px;
    height: 180px;
    margin: 0 auto;
  }
}
/* ===== anime home page pnjs ===== */
@keyframes floaty {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px) scale(1.04); }
  100% { transform: translateY(0); }
}

.service-img {
  animation: floaty 3s ease-in-out infinite;
  box-shadow:
    0 8px 32px rgba(30,58,138,0.18),
    0 2px 8px rgba(30,58,138,0.09);
  border-radius: 18px;
  transition: transform 0.25s, box-shadow 0.25s;
  background: linear-gradient(135deg, #e0f2ff 0%, #fff 100%);
  position: relative;
}

.service-block:hover .service-img,
.service-img:hover {
  transform: translateY(-24px) scale(1.08);
  box-shadow:
    0 16px 48px rgba(30,58,138,0.22),
    0 4px 16px rgba(165,216,255,0.18),
    0 0 24px #A5D8FF;
  z-index: 2;
}

/* ===== FOOTER ===== */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-footer {
  background: #1E3A8A;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 950px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contact h3,
.footer-socials h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-contact p,
.footer-contact a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 8px;
  color: #A5D8FF;
}

.footer-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  background: #1E3A8A;
  padding: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,58,138,0.08);
}

.footer-icon:hover {
  transform: scale(1.13);
  box-shadow: 0 4px 16px #A5D8FF;
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.85;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  .footer-logos {
    justify-content: center;
  }
}

/* ===== FAQ SECTION STYLES ===== */
.faqs-hero {
  background: #1E3A8A;
  color: #fff;
  padding: 32px 0 16px 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}
.faqs-hero-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px #A5D8FF;
}
.faqs-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.faqs-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
}
.faq-category {
  margin-bottom: 22px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  background: #f8fafc;
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  background: #A5D8FF;
  color: #1E3A8A;
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 18px 24px;
  font-size: 1.18rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #e0f2ff;
  letter-spacing: 0.5px;
}
.faq-toggle.active,
.faq-toggle:hover {
  background: #1E3A8A;
  color: #fff;
}
.faq-content {
  display: none;
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 18px 28px;
  font-size: 1.07rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(30,58,138,0.07);
}
.faq-content p {
  margin-bottom: 12px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .faqs-list { padding: 12px 0; }
  .faqs-hero-img { width: 60px; height: 60px; }
  .faq-content { padding: 14px 12px; font-size: 1rem; }
}

/* ===== ABOUT SECTION STYLES ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  margin-bottom: 0;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 18px 48px 18px;
  background: none; /* Remove light blue box */
  border-radius: 0;
  box-shadow: none;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(30,58,138,0.25);
}

.about-hero-story {
  font-size: 1.15rem;
  opacity: 0.97;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(30,58,138,0.18);
}

.about-team-hero {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.team-member-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-img-hero-big {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 24px #A5D8FF;
  border: 5px solid #fff;
  background: #e0f2ff;
  transition: transform 0.2s;
}

.team-img-hero-big:hover {
  transform: scale(1.09);
  box-shadow: 0 8px 32px #A5D8FF;
}

.team-name-hero {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-shadow: 0 2px 8px rgba(30,58,138,0.12);
}

@media (max-width: 700px) {
  .about-hero { height: auto; min-height: 220px; }
  .about-hero-content { max-width: 98%; padding: 18px 6px 32px 6px; }
  .about-team-hero { gap: 18px; margin-top: 18px; }
  .team-img-hero-big { width: 80px; height: 80px; }
  .team-name-hero { font-size: 1rem; }
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6) blur(1px);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 18px;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.contact-hero-desc {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 18px;
}

.contact-hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.contact-hero-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.13rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
}

.contact-hero-details i {
  font-size: 1.3rem;
  color: #A5D8FF;
}

.contact-hero-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-hero-details a:hover {
  color: #A5D8FF;
}

.contact-hero-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .contact-hero {
    height: 340px;
    min-height: 220px;
  }
  .contact-hero-title { font-size: 1.5rem; }
  .contact-hero-content { padding: 18px 6px; }
  .contact-hero-details div { font-size: 1rem; padding: 6px 10px; }
}

/* ===== TERMS SECTION STYLES ===== */
.terms-hero {
  background: #1E3A8A;
  color: #fff;
  text-align: center;
  padding: 38px 0 22px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}

.terms-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.terms-desc {
  font-size: 1.13rem;
  opacity: 0.88;
  margin-bottom: 0;
}

.terms-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.terms-block {
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  padding: 22px 28px;
  color: #1E3A8A;
}

.terms-block h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2563eb;
  letter-spacing: 0.5px;
}

.terms-block p {
  font-size: 1.07rem;
  color: #222;
  opacity: 0.96;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .terms-hero { padding: 22px 0 12px 0; }
  .terms-title { font-size: 1.5rem; }
  .terms-content { padding: 12px 0; gap: 16px; }
  .terms-block { padding: 14px 10px; }
  .terms-block h3 { font-size: 1.05rem; }
  .terms-block p { font-size: 1rem; }
}

/* ===== POLICY SECTION STYLES ===== */
.policy-hero {
  background: #1E3A8A;
  color: #fff;
  text-align: center;
  padding: 38px 0 22px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.08);
}

.policy-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.policy-desc {
  font-size: 1.13rem;
  opacity: 0.88;
  margin-bottom: 0;
}

.policy-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.policy-block {
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  padding: 22px 28px;
  color: #1E3A8A;
}

.policy-block h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2563eb;
  letter-spacing: 0.5px;
}

.policy-block p {
  font-size: 1.07rem;
  color: #222;
  opacity: 0.96;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .policy-hero { padding: 22px 0 12px 0; }
  .policy-title { font-size: 1.5rem; }
  .policy-content { padding: 12px 0; gap: 16px; }
  .policy-block { padding: 14px 10px; }
  .policy-block h3 { font-size: 1.05rem; }
  .policy-block p { font-size: 1rem; }
}

/* ===== SERVICES SECTION STYLES ===== */
.services-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.services-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 18px;
}

.services-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.services-hero-desc {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 28px;
}

.services-btns {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}

.service-btn {
  background: #A5D8FF;
  color: #1E3A8A;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 18px 32px;
  font-size: 1.18rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,58,138,0.09);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-btn:hover {
  background: #1E3A8A;
  color: #fff;
  transform: scale(1.07);
}

@media (max-width: 700px) {
  .services-hero { height: 340px; min-height: 220px; }
  .services-hero-title { font-size: 1.5rem; }
  .services-hero-content { padding: 18px 6px; }
  .services-btns { flex-direction: column; gap: 16px; }
  .service-btn { padding: 12px 10px; font-size: 1rem; }
}

/* Service Detail Tabs */
.service-detail-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}
.service-detail-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}
.service-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}
.service-detail-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 18px;
}
.service-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.service-detail-desc {
  font-size: 1.13rem;
  opacity: 0.96;
  margin-bottom: 0;
  line-height: 1.7;
}
@media (max-width: 700px) {
  .service-detail-hero { height: 340px; min-height: 220px; }
  .service-detail-title { font-size: 1.2rem; }
  .service-detail-hero-content { padding: 18px 6px; }
  .service-detail-desc { font-size: 1rem; }
}
/* ===== How It Works ===== */
.how-it-works-section {
  background: #ffffff;
  padding: 74px 24px;
}

.how-it-works-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.how-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.how-copy h2 {
  color: #1E3A8A;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 14px 0 12px;
}

.how-copy p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.how-step {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(30, 58, 138, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(30, 58, 138, 0.14);
}

.step-number {
  display: inline-flex;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.how-step h3 {
  color: #1E3A8A;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.how-step p {
  color: #475569;
  line-height: 1.6;
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .how-it-works-section {
    padding: 56px 16px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }
}
/* ===== Service Area ===== */
.service-area-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  padding: 78px 24px;
}

.service-area-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.service-area-copy h2 {
  color: #1E3A8A;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 14px 0 14px;
}

.service-area-copy p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-area-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.service-area-point {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 20px;
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.06);
}

.service-area-point h3 {
  color: #1E3A8A;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.service-area-point p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-area-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.service-area-ghost {
  color: #1E3A8A !important;
  border-color: rgba(30, 58, 138, 0.22) !important;
  background: #ffffff !important;
}

.service-area-map-card {
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 18px 44px rgba(30, 58, 138, 0.10);
}

.service-area-map-frame {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 16px;
}

.service-area-map {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.service-area-note {
  margin-top: 16px;
  color: #475569;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 14px 16px;
  line-height: 1.6;
  font-size: 0.94rem;
}

.service-area-note strong {
  color: #1E3A8A;
}

@media (max-width: 980px) {
  .service-area-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-area-section {
    padding: 58px 16px;
  }

  .service-area-map-card {
    padding: 16px;
    border-radius: 22px;
  }

  .service-area-actions {
    flex-direction: column;
  }

  .service-area-actions .btn {
    width: 100%;
    text-align: center;
  }
}
.service-area-live-map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background: #eef4ff;
  min-height: 360px;
}

.service-area-live-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-badge {
  position: absolute;
  left: 7px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.12);
}

.map-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #1E3A8A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.map-badge-text strong {
  display: block;
  color: #1E3A8A;
  font-size: 1rem;
  line-height: 1.1;
}

.map-badge-text p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .service-area-live-map {
    min-height: 300px;
  }

  .service-area-live-map iframe {
    height: 300px;
  }

  .map-badge {
    left: 7px;
    right: 12px;
    bottom: 55px;
    padding: 5px 6px;
  }
}
/* ===== FinFreash Contact Booking Section - Clean Final Override ===== */
.contact-booking-section {
  position: relative;
  min-height: 720px;
  padding: 120px 24px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-booking-content {
  position: relative;
  z-index: 3;
  width: min(1050px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-booking-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 14px;
}

.contact-booking-grid {
  width: min(940px, 100%);
  margin: 30px auto 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-booking-card {
  min-height: 178px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
  text-align: left;
  color: #ffffff;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  display: flex;
  flex-direction: column;
  gap: 14px;

  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-booking-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.contact-booking-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-booking-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.05rem;
}

.contact-booking-arrow {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.contact-booking-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 0;
}

.contact-booking-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 650;
  margin: 0;
}

.contact-booking-helper {
  width: min(940px, 100%);
  margin: 0 auto 18px;
  padding: 20px 22px;
  border-radius: 24px;

  background: rgba(30, 58, 138, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.contact-booking-helper h3 {
  color: #ffffff;
  font-size: 1.08rem;
  margin: 0 0 6px;
}

.contact-booking-helper p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
}

.contact-booking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.contact-booking-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 850;
}

.contact-booking-direct {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-booking-direct a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 850;
  padding: 11px 16px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-booking-direct a i {
  margin-right: 7px;
}

@media (max-width: 980px) {
  .contact-booking-section {
    min-height: auto;
    padding: 110px 16px 54px;
  }

  .contact-booking-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
  }

  .contact-booking-card {
    min-height: auto;
  }

  .contact-booking-helper {
    width: min(560px, 100%);
    grid-template-columns: 1fr;
  }

  .contact-booking-tags {
    justify-content: flex-start;
  }

  .contact-booking-direct {
    width: min(560px, 100%);
    margin: 0 auto;
    flex-direction: column;
  }

  .contact-booking-direct a {
    text-align: center;
  }
}
/* ===== Contact page title text override ===== */
#contact-section .contact-hero-title,
#contact-section #contactTitle,
#contact-section .contact-hero-desc,
#contact-section #contactDesc {
  color: #ffffff !important;
}

#contact-section .contact-hero-desc,
#contact-section #contactDesc {
  opacity: 0.92;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

#contact-section .contact-hero-title,
#contact-section #contactTitle {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32);
}
/* ===== Mobile contact section polish ===== */
@media (max-width: 700px) {
  #contact-section .contact-booking-section {
    min-height: auto;
    padding: 96px 14px 38px;
    align-items: flex-start;
  }

  #contact-section .contact-booking-content {
    width: 100%;
    max-width: 430px;
  }

  #contact-section .contact-booking-kicker {
    font-size: 0.68rem;
    padding: 7px 11px;
    margin-bottom: 10px;
  }

  #contact-section .contact-hero-title {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  #contact-section .contact-hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 360px;
    margin-bottom: 0;
  }

  #contact-section .contact-booking-grid {
    width: 100%;
    margin: 22px auto 16px;
    gap: 12px;
  }

  #contact-section .contact-booking-card {
    min-height: auto;
    padding: 16px;
    border-radius: 20px;
    gap: 10px;
  }

  #contact-section .contact-booking-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  #contact-section .contact-booking-card h3 {
    font-size: 1.18rem;
  }

  #contact-section .contact-booking-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  #contact-section .contact-booking-helper {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
    gap: 14px;
  }

  #contact-section .contact-booking-helper h3 {
    font-size: 1rem;
  }

  #contact-section .contact-booking-helper p {
    font-size: 0.9rem;
  }

  #contact-section .contact-booking-tags {
    gap: 7px;
  }

  #contact-section .contact-booking-tags span {
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  #contact-section .contact-booking-direct {
    width: 100%;
    gap: 9px;
  }

  #contact-section .contact-booking-direct a {
    width: 100%;
    padding: 11px 12px;
    font-size: 0.9rem;
  }
}
/* ===== Contact mobile scroll fix ===== */
@media (max-width: 700px) {
  #contact-section .contact-booking-section {
    height: auto !important;
    min-height: 100vh !important;
    padding: 96px 14px 44px !important;
    overflow: visible !important;
    align-items: flex-start !important;
  }

  #contact-section .contact-booking-content {
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
  }

  #contact-section .contact-booking-grid {
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #contact-section .contact-booking-card {
    width: 100% !important;
    min-height: auto !important;
    padding: 16px !important;
  }

  #contact-section .contact-booking-helper,
  #contact-section .contact-booking-direct {
    width: 100% !important;
  }
}
/* ===== Service card image/hover containment fix ===== */
.premium-service-card {
  overflow: hidden !important;
}

.premium-service-card:hover {
  transform: translateY(-5px);
}

.service-media {
  overflow: hidden !important;
  background: #eaf2ff !important;
}

.service-media .service-img,
.premium-service-card .service-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 700px) {
  .premium-service-card:hover {
    transform: none;
  }

  .premium-service-card:hover .service-img {
    transform: none;
  }

  .service-media {
    height: 190px !important;
  }
}
/* ===== Remove grey strip under service card images ===== */
.premium-service-card .service-media {
  background: transparent !important;
  border-bottom: none !important;
}

.premium-service-card .service-media::after {
  display: none !important;
}

.premium-service-card .service-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.premium-service-card .service-badge {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
/* ===== Final CTA + Newsletter ===== */
.final-cta-section {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  padding: 78px 24px;
}

.final-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.final-cta-copy {
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.96), rgba(37, 99, 235, 0.9));
  color: #ffffff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 20px 54px rgba(30, 58, 138, 0.18);
  position: relative;
  overflow: hidden;
}

.final-cta-copy::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.final-cta-copy .section-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.final-cta-copy h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 16px 0 12px;
}

.final-cta-copy p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 620px;
}

.final-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.final-cta-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.10);
}

.newsletter-card {
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 44px rgba(30, 58, 138, 0.10);
}

.newsletter-card h3,
.newsletter-card #newsletterTitle {
  color: #1E3A8A;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  margin-bottom: 10px;
  text-align: left;
}

.newsletter-card p,
.newsletter-card #newsletterDesc {
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
  text-align: left;
}

.newsletter-card .ml-embedded {
  width: 100%;
}

/* Try to keep embedded MailerLite form from looking too random */
.newsletter-card input,
.newsletter-card button {
  border-radius: 12px;
}

@media (max-width: 900px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .final-cta-section {
    padding: 58px 16px;
  }

  .final-cta-copy,
  .newsletter-card {
    padding: 24px;
    border-radius: 24px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}
.final-cta-copy h2,
.final-cta-copy p {
  color: #ffffff !important;
}

.final-cta-copy p {
  opacity: 0.9;
}
/* ===== Booking Wizard V1 ===== */
.booking-wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-wizard-overlay.active {
  display: flex;
}

.booking-wizard {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 34%),
    #ffffff;
  border-radius: 30px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
  padding: 30px;
}

.booking-wizard-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: #eff6ff;
  color: #1E3A8A;
  cursor: pointer;
  font-size: 1rem;
}

.booking-wizard-header {
  max-width: 680px;
  margin-bottom: 22px;
}

.booking-wizard-header h2 {
  color: #1E3A8A;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 14px 0 10px;
}

.booking-wizard-header p {
  color: #475569;
  line-height: 1.65;
  font-size: 1.02rem;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 22px 0 28px;
}

.booking-progress-step {
  color: #64748b;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 9px 10px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-progress-step.active {
  color: #ffffff;
  background: #2563eb;
  border-color: #2563eb;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step h3 {
  color: #1E3A8A;
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.booking-step-sub {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.booking-choice-grid,
.booking-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-choice,
.booking-package-card {
  cursor: pointer;
  text-align: left;
  border: 1px solid rgba(30, 58, 138, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.booking-choice:hover,
.booking-package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 18px 46px rgba(30, 58, 138, 0.14);
}

.booking-choice.selected,
.booking-package-card.selected {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12), 0 18px 46px rgba(30, 58, 138, 0.14);
}

.booking-choice span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.booking-choice strong,
.booking-package-card strong {
  display: block;
  color: #1E3A8A;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.booking-choice small,
.booking-package-card small {
  color: #64748b;
  line-height: 1.5;
  font-weight: 650;
}

.booking-package-card .package-price {
  display: inline-flex;
  margin-top: 14px;
  color: #ffffff;
  background: #1E3A8A;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form-grid label,
.booking-full-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #1E3A8A;
  font-weight: 850;
}

.booking-form-grid input,
.booking-form-grid select,
.booking-full-label textarea {
  width: 100%;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: #0f172a;
  background: #ffffff;
}

.booking-form-grid input:focus,
.booking-form-grid select:focus,
.booking-full-label textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.25);
  border-color: #2563eb;
}

.booking-addons {
  margin: 20px 0;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 18px;
}

.booking-addons h4 {
  color: #1E3A8A;
  margin-bottom: 12px;
}

.booking-addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-addon-list label {
  color: #1E3A8A;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
}

.booking-privacy-note,
.booking-final-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1E3A8A;
  border-radius: 18px;
  padding: 14px 16px;
  line-height: 1.55;
  font-weight: 750;
}

.booking-summary {
  display: grid;
  gap: 10px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 18px;
}

.booking-summary-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  border-bottom: 1px solid #e0ecff;
  padding-bottom: 9px;
}

.booking-summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-summary-row strong {
  color: #1E3A8A;
}

.booking-summary-row span {
  color: #475569;
}

.booking-wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.booking-back-btn,
.booking-next-btn,
.booking-submit-btn {
  border: none;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.booking-back-btn {
  color: #1E3A8A;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.booking-next-btn,
.booking-submit-btn {
  color: #ffffff;
  background: #2563eb;
}

.booking-submit-btn {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .booking-wizard {
    padding: 24px;
    border-radius: 24px;
  }

  .booking-progress {
    grid-template-columns: 1fr;
  }

  .booking-choice-grid,
  .booking-package-grid,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .booking-wizard-overlay {
    padding: 10px;
    align-items: flex-start;
  }

  .booking-wizard {
    max-height: calc(100vh - 20px);
    padding: 20px;
  }

  .booking-wizard-header h2 {
    font-size: 2rem;
  }

  .booking-wizard-actions {
    flex-direction: column;
  }

  .booking-back-btn,
  .booking-next-btn,
  .booking-submit-btn {
    width: 100%;
    text-align: center;
  }
}
.booking-addon-hint {
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.95rem;
}
.booking-choice-status {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 999px;
  padding: 6px 9px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1E3A8A;
  font-size: 0.72rem;
  font-weight: 900;
  width: fit-content;
}
.booking-addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.booking-addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1E3A8A;
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 850;
  cursor: pointer;
}

.booking-addon-pill input {
  accent-color: #2563eb;
}