/* ================================================================
   WALI FUMIGATORS & CLEANERS — MAIN STYLESHEET
   Version  : 1.0
================================================================ */

/* ============================================================
   01. CSS VARIABLES
============================================================ */
:root {
  --primary       : #002F47;
  --accent        : #299B46;
  --blue          : #1E6FBE;
  --light-bg      : #F5F7F2;
  --text          : #3D5A6A;
  --white         : #FFFFFF;
  --border        : rgba(0, 47, 71, 0.1);
  --border-dark   : rgba(255, 255, 255, 0.1);
  --shadow        : 0 8px 40px rgba(0, 47, 71, 0.10);
  --shadow-hover  : 0 20px 60px rgba(0, 47, 71, 0.18);
  --font          : 'Onest', sans-serif;
  --radius        : 18px;
  --radius-sm     : 12px;
  --ease          : cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition    : all 0.4s var(--ease);
}

/* ============================================================
   02. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin: 0;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 0; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::selection { background: var(--accent); color: var(--white); }

.container { max-width: 1280px; padding: 0 20px; }

section { padding: 100px 0; }

/* ============================================================
   03. TOPBAR
============================================================ */
.topbar {
  background: var(--accent);
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-contact a,
.topbar-contact span {
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.topbar-contact a:hover { color: var(--primary); }
.topbar-contact i { color: var(--white); font-size: 12px; }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   04. HEADER / NAVBAR
============================================================ */
.main-header {
  position: relative;
  z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s, border 0.35s;
}

.main-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,47,71,0.12);
  border-bottom: 1px solid var(--border);
}

.main-header .navbar { padding: 14px 0; }

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text-fallback {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-text-fallback em {
  font-style: normal;
  color: var(--accent);
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 20px;
  font-weight: bolder;
  color: var(--text);
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent); }

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 14px; right: 14px; }
.nav-link{
  font-weight: bolder;
  text-transform: uppercase;
}

/* Header CTA */
.header-cta .btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--accent);
  transition: var(--transition);
  white-space: nowrap;
}

.header-cta .btn-nav-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 4px;
  background: transparent;
  outline: none;
  box-shadow: none !important;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}

.toggler-icon span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.toggler-icon span:nth-child(2) { width: 70%; }

/* ============================================================
   05. COMMON BUTTONS
============================================================ */
.btn-wali {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-wali span, .btn-wali i { position: relative; z-index: 1; }

.btn-wali-green {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-wali-green::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1d7a35;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.btn-wali-green:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-wali-green:hover { color: var(--white); }

.btn-wali-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-wali-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-wali-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-wali-dark:hover {
  background: transparent;
  color: var(--primary);
}

/* ============================================================
   06. SECTION LABELS & TITLES
============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.center .section-label { justify-content: center; }

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-title .accent-text { color: var(--accent); }
.section-title .blue-text   { color: var(--blue); }

.section-desc {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  max-width: 580px;
}

.center .section-desc { margin: 0 auto; text-align: center; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }

/* ============================================================
   06b. PAGE BANNER (inner pages)
============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #00405f 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; }
.page-banner h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-banner h1 span { color: var(--accent); }
.page-banner-desc {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.page-banner .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.page-banner .breadcrumb-item a:hover { color: var(--accent); }
.page-banner .breadcrumb-item.active { color: var(--accent); font-weight: 600; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================================
   07. HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: -110px;
}

.hero-swiper {
  width: 100%;
}

.hero-slide {
  position: relative;
  padding: 160px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 47, 71, 0.18) 21.87%,
    rgba(0, 47, 71, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(41, 155, 70, 0.12);
  border: 1px solid rgba(41, 155, 70, 0.35);
  backdrop-filter: blur(10px);
  color: #6ddd8a;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(41,155,70,0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(41,155,70,0); }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .accent-word { color: var(--accent); }
.hero-title .blue-word   { color: #6db8f7; }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 530px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-stat:last-child { border-right: none; margin-right: 0; }

.hero-stat .stat-icon {
  width: 46px;
  height: 46px;
  background: rgba(41, 155, 70, 0.12);
  border: 1px solid rgba(41, 155, 70, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

.hero-stat .stat-number {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero right image */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: -80px;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* Swiper pagination */
.hero-pagination {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--light-bg);
  opacity: 1;
  transition: var(--transition);
  margin: 0 5px;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
}

/* ============================================================
   08. BEST SERVICES ICON GRID
============================================================ */
.best-services-section {
  background: var(--light-bg);
  padding: 0;
}

.best-services-section .section-title-row {
  text-align: center;
  padding: 60px 0 10px;
}

.best-services-section .section-title-row h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--primary);
}

.best-services-grid {
  display: flex;
  flex-wrap: wrap;
}

.best-service-item {
  width: 25%;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 2.5vw;
  transition: var(--transition);
}

.best-service-item:nth-child(4n) {
  border-right: none;
}

.best-service-item:hover {
  background: rgba(41, 155, 70, 0.04);
}

.best-service-item .bs-icon {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  overflow: hidden;
}

.best-service-item .bs-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s var(--ease);
}

.best-service-item:hover .bs-icon::before {
  transform: scale(1);
}

.best-service-item .bs-icon img {
  position: relative;
  z-index: 1;
  max-width: 28px;
  filter: brightness(0) invert(1);
}

.best-service-item .bs-icon i {
  position: relative;
  z-index: 1;
  font-size: 24px;
  color: var(--white);
}

.best-service-item h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary);
  margin: 0;
}

@media (max-width: 991.98px) {
  .best-service-item { width: 50%; }
  .best-service-item:nth-child(4n)  { border-right: 1px solid var(--border); }
  .best-service-item:nth-child(2n)  { border-right: none; }
}

@media (max-width: 575.98px) {
  .best-service-item {
    width: 50%;
    padding: 24px 16px;
  }
  .best-service-item .bs-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-right: 12px;
  }
  .best-service-item h4 { font-size: 15px; }
}

/* ============================================================
   09. ABOUT SECTION
============================================================ */
.about-section { background: var(--white); overflow: hidden; }

.about-visual {
  position: relative;
  padding: 30px 0 30px 30px;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-circle-1,
.about-circle-2 {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.about-circle-1 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: -10px;
}

.about-circle-2 {
  width: 115px;
  height: 115px;
  top: 20px;
  right: 30px;
}

.about-circle-1 img,
.about-circle-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Exp badge */
.about-exp-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  z-index: 2;
}

.about-exp-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(41,155,70,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}

.about-exp-badge strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.about-exp-badge span {
  font-size: 12px;
  color: var(--text);
  line-height: 1.3;
}

/* About content */
.about-content { padding-left: 10px; }

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 28px 0 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.check-item i {
  width: 22px;
  height: 22px;
  background: rgba(41,155,70,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

/* Stats strip */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
  min-width: 100px;
}

.about-stat:first-child { padding-left: 0; }
.about-stat:last-child  { border-right: none; }

.about-stat .num {
  font-size: 38px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.about-stat .num .suf { font-size: 22px; }

.about-stat .lbl {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   10. SERVICES SECTION
============================================================ */
.services-section { background: var(--light-bg); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-icon {
  position: absolute;
  bottom: -26px;
  left: 24px;
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(41,155,70,0.4);
  z-index: 2;
}

.service-card-icon i {
  font-size: 24px;
  color: var(--white);
}

.service-card-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
}

.service-card-body {
  padding: 44px 24px 30px;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

/* ============================================================
   11. FEATURES / WHY CHOOSE US
============================================================ */
.features-section { background: var(--white); overflow: hidden; }

.features-visual {
  position: relative;
}

.features-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.features-img-main img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.features-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 14px;
}

.features-float-card.card-bottom {
  bottom: 36px;
  left: -36px;
  max-width: 230px;
}

.features-float-card .fc-icon {
  width: 44px;
  height: 44px;
  background: rgba(41,155,70,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}

.features-float-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.features-float-card span {
  font-size: 12px;
  color: var(--text);
}

/* Feature items */
.feature-list { display: flex; flex-direction: column; gap: 0; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.feature-item:hover {
  background: var(--light-bg);
  border-color: var(--border);
  transform: translateX(6px);
}

.feature-item .feat-icon {
  width: 58px;
  height: 58px;
  background: rgba(41,155,70,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feat-icon { background: var(--accent); }

.feature-item .feat-icon img {
  width: 28px;
  transition: var(--transition);
}

.feature-item:hover .feat-icon img { filter: brightness(0) invert(1); }

.feature-item .feat-icon i {
  font-size: 22px;
  color: var(--accent);
  transition: var(--transition);
}

.feature-item:hover .feat-icon i { color: var(--white); }

.feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

/* ============================================================
   12. WORK PROCESS
============================================================ */
.process-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.process-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border: 80px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: rgba(41,155,70,0.04);
  border-radius: 50%;
}

.process-section .section-title { color: var(--white); }
.process-section .section-desc  { color: rgba(255,255,255,0.65); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.process-item { text-align: center; position: relative; z-index: 1; }

.process-num {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  transition: var(--transition);
  position: relative;
}

.process-num::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  border: 1px dashed rgba(41,155,70,0.3);
}

.process-item:hover .process-num {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.process-item:hover .process-num::after { border-color: var(--accent); }

.process-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   13. FAQ SECTION
============================================================ */
.faq-section { background: var(--light-bg); overflow: hidden; }

.faq-visual {
  position: relative;
  height: 520px;
}

.faq-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.faq-img:hover img { transform: scale(1.04); }

.faq-img-1 { width: 64%; height: 300px; top: 0; right: 0; }
.faq-img-2 { width: 48%; height: 210px; bottom: 0; left: 0; }
.faq-img-3 { width: 40%; height: 195px; bottom: 0; right: 0; }

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 12px;
}

.faq-accordion .accordion-button {
  background: var(--white);
  color: var(--primary);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0,47,71,0.2);
  border-color: var(--primary);
}

.faq-accordion .accordion-button:focus { box-shadow: none; }

.faq-accordion .accordion-button::after {
  background-image: none;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: "\f067";
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: rgba(255,255,255,0.7);
}

.faq-accordion .accordion-collapse .accordion-body {
  background: var(--white);
  padding: 18px 24px 22px;
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================================
   14. CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(130deg, var(--primary) 0%, #01426a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,0.03);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 4%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 50px solid rgba(41,155,70,0.08);
}

.cta-img-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cta-img-col img {
  max-height: 370px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  position: relative;
  z-index: 1;
}

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

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,155,70,0.15);
  border: 1px solid rgba(41,155,70,0.3);
  color: #6ddd8a;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
}

.cta-checklist li i {
  width: 24px;
  height: 24px;
  background: rgba(41,155,70,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

.cta-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   15. CONTACT / BOOKING FORM
============================================================ */
.contact-section { background: var(--white); }

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 44px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(41,155,70,0.07);
  border-radius: 50%;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(30,111,190,0.07);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: rgba(41,155,70,0.15);
  border: 1px solid rgba(41,155,70,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.ci-item h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.ci-item p,
.ci-item a {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.ci-item a:hover { color: var(--accent); }

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-sub {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.form-group { margin-bottom: 18px; }

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--primary);
  background: var(--white);
  font-family: var(--font);
  transition: var(--transition);
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(41,155,70,0.09);
}

.form-control::placeholder { color: rgba(61,90,106,0.45); }

textarea.form-control { min-height: 130px; resize: vertical; }

.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}

.form-alert-success { background: rgba(41,155,70,0.1); color: #1a7a32; border: 1px solid rgba(41,155,70,0.3); }
.form-alert-error   { background: rgba(220,53,69,0.08); color: #c0392b; border: 1px solid rgba(220,53,69,0.2); }

/* Crispy forms overrides */
.asteriskField       { color: var(--accent); margin-left: 2px; }
.requiredField       { }
.invalid-feedback    { font-size: 12.5px; }
.is-invalid          { border-color: #dc3545 !important; }

/* Pill-style multi-select checkboxes (.choice-pills wrapper) */
.choice-pills fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.choice-pills legend.form-label {
  float: none;
  width: auto;
  padding: 0;
  margin-bottom: 12px;
}
.choice-pills fieldset > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice-pills .form-check-inline {
  padding-left: 0;
  margin-right: 0;
}
.choice-pills .form-check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.choice-pills .form-check-label {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
  letter-spacing: 0;
  text-transform: none;
}
.choice-pills .form-check-label:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(41,155,70,0.04);
}
.choice-pills .form-check-input:checked + .form-check-label {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
}
/* Error state for pill groups */
.choice-pills .invalid-feedback {
  display: block;
  margin-top: 8px;
}

/* ============================================================
   16. FOOTER
============================================================ */
.main-footer { background: var(--primary); }

.footer-top { padding: 80px 0 64px; }

.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links-list { display: flex; flex-direction: column; gap: 12px; }

.footer-links-list a {
  color: rgba(255,255,255,0.58);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links-list a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-links-list a:hover { color: var(--accent); padding-left: 6px; }
.footer-links-list a:hover::before { opacity: 1; }

.footer-ci { display: flex; flex-direction: column; gap: 18px; }

.footer-ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-ci-item i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-ci-item .ci-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.38);
  display: block;
  margin-bottom: 3px;
}

.footer-ci-item p,
.footer-ci-item a {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.footer-ci-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

.text-accent { color: var(--accent) !important; }

/* ============================================================
   17. FLOATING WIDGETS
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  animation: float-bob 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(37,211,102,0.6);
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ============================================================
   18. PAGE HEADER (inner pages)
============================================================ */
.page-header {
  background: linear-gradient(130deg, var(--primary) 0%, #013d65 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41,155,70,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,155,70,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

.page-header h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }
.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item.active { color: var(--accent); font-weight: 600; }

/* ============================================================
   19. RESPONSIVE
============================================================ */
@media (max-width: 1199.98px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .about-circle-1 { width: 120px; height: 120px; }
}

@media (max-width: 991.98px) {
  section { padding: 72px 0; }

  .topbar { display: none; }

  .navbar-collapse {
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-top: 10px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
  }

  .navbar-nav { margin-bottom: 16px; }
  .navbar-nav .nav-link { padding: 10px 14px !important; }

  .hero-image-wrap { display: none; }
  .hero-title { font-size: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { border-right: none; padding: 0; margin: 0; }

  .about-circle-1,
  .about-circle-2 { display: none; }
  .about-exp-badge { left: 16px; }

  .features-visual { margin-bottom: 48px; }
  .features-float-card { display: none; }
  .features-img-main img { height: 420px; }

  .faq-visual { display: none; }

  .cta-img-col { display: none; }

  .contact-info-card { margin-bottom: 28px; }
}

@media (max-width: 767.98px) {
  section { padding: 60px 0; }

  .section-title { font-size: 30px; }
  .section-header { margin-bottom: 44px; }

  .hero-title { font-size: 34px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .about-stats { flex-wrap: wrap; }
  .about-stat { flex: 0 0 calc(50% - 8px); border-right: none; text-align: center; }
  .about-checklist { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }

  .cta-action-row { flex-direction: column; align-items: flex-start; }

  .contact-form-card { padding: 28px 24px; }
  .contact-info-card { padding: 28px 24px; }

  .footer-top { padding: 52px 0 40px; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
  .back-to-top { bottom: 82px; right: 22px; }
}

@media (max-width: 575.98px) {
  .hero-stats { gap: 14px; }
  .hero-stat .stat-number { font-size: 22px; }
  .about-stat { flex: 0 0 100%; }
  .about-visual { padding: 0; }
  .about-exp-badge { display: none; }
}

/* ============================================================
   20. PORTFOLIO / PROJECTS SECTION
============================================================ */
.portfolio-section {
  background: var(--light-bg);
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 320px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 47, 71, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.portfolio-item:hover .portfolio-overlay h4 {
  transform: translateY(0);
}

.portfolio-overlay span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.5s var(--ease) 0.05s;
}

.portfolio-item:hover .portfolio-overlay span {
  transform: translateY(0);
}

.portfolio-overlay .portfolio-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  transform: translateY(-10px) rotate(-45deg);
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay .portfolio-arrow {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

/* ============================================================
   21. TESTIMONIALS SECTION
============================================================ */
.testimonials-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  border: 80px solid rgba(255,255,255,0.02);
  border-radius: 50%;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(41,155,70,0.05);
  border-radius: 50%;
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-desc {
  color: rgba(255,255,255,0.6);
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(41,155,70,0.35);
  transform: translateY(-5px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #f5a623;
  font-size: 14px;
}

.testimonial-quote {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '\201c';
  position: absolute;
  top: -20px;
  left: -5px;
  font-size: 60px;
  color: rgba(41,155,70,0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(41,155,70,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  border: 2px solid rgba(41,155,70,0.35);
}

.testimonial-author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.testimonial-author-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.testimonials-swiper {
  position: relative;
  z-index: 1;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  justify-content: center;
}

.test-prev,
.test-next {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.test-prev:hover,
.test-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.test-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.test-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
}

.test-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   22. ROTATING CONTACT CIRCLE
============================================================ */
.features-contact-circle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  z-index: 3;
}

.features-contact-circle a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.features-contact-circle img {
  width: 100%;
  height: 100%;
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   23. VIDEO PLAY BUTTON
============================================================ */
.about-video-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.about-video-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 0 0 0 rgba(41,155,70,0.4);
  animation: play-pulse 2s ease-in-out infinite;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.video-play-btn:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes play-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(41,155,70,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(41,155,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(41,155,70,0); }
}

/* ============================================================
   24. RESPONSIVE — NEW SECTIONS
============================================================ */
@media (max-width: 1199.98px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .features-contact-circle { width: 100px; height: 100px; bottom: -20px; right: -20px; }
}

@media (max-width: 991.98px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .portfolio-item { height: 260px; }
  .features-contact-circle { display: none; }
}

@media (max-width: 767.98px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-item { height: 240px; }
  .testimonial-card { padding: 28px 24px; }
}

@media (max-width: 767.98px) {
  .hero-section { margin-top: -70px; }
}

/* ============================================================
   ERROR PAGES (404 / 500 / 403 / 400)
============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,155,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.error-page::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,47,71,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.error-code-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.error-code {
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--primary);
  letter-spacing: -4px;
  user-select: none;
  opacity: 0.12;
  position: absolute;
  white-space: nowrap;
}

.error-icon-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.error-icon-wrap.color-404 { background: rgba(30,111,190,0.10); }
.error-icon-wrap.color-500 { background: rgba(220,53,69,0.10); }
.error-icon-wrap.color-403 { background: rgba(255,152,0,0.10); }
.error-icon-wrap.color-400 { background: rgba(41,155,70,0.10); }

.error-icon-wrap i {
  font-size: 46px;
}
.error-icon-wrap.color-404 i { color: var(--blue); }
.error-icon-wrap.color-500 i { color: #dc3545; }
.error-icon-wrap.color-403 i { color: #FF9800; }
.error-icon-wrap.color-400 i { color: var(--accent); }

.error-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.error-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.error-heading span { color: var(--accent); }

.error-desc {
  font-size: 17px;
  color: var(--text);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-number-bg {
  font-size: clamp(140px, 22vw, 240px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,47,71,0.08);
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
}

.error-float-icon {
  position: absolute;
  font-size: 56px;
  animation: errorFloat 3s ease-in-out infinite;
}

@keyframes errorFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@media (max-width: 991.98px) {
  .error-page { padding: 60px 0; text-align: center; }
  .error-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .error-actions { justify-content: center; }
  .error-visual { margin-top: 40px; }
}

/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 -6px 40px rgba(0, 47, 71, 0.30);
  border-top: 3px solid var(--accent);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(41, 155, 70, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner-icon i {
  font-size: 22px;
  color: var(--accent);
}

.cookie-banner-content {
  flex: 1;
  min-width: 240px;
}

.cookie-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.cookie-banner-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

.cookie-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-link:hover { color: #ffffff; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie {
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.btn-cookie-accept:hover {
  background: #23883d;
  transform: translateY(-1px);
}

.btn-cookie-necessary {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-cookie-necessary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
  .cookie-banner-inner { gap: 14px; }
  .cookie-banner-icon { display: none; }
  .cookie-banner-actions { width: 100%; }
  .btn-cookie { flex: 1; text-align: center; padding: 11px 16px; }
}

/* ============================================================
   GOOGLE MAP EMBED (Contact page)
============================================================ */
.map-section {
  line-height: 0;
}

.map-embed-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-embed-wrap:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-cta-bar {
  background: var(--white);
  border-top: 3px solid var(--accent);
  padding: 18px 0;
  line-height: normal;
  box-shadow: 0 4px 24px rgba(0, 47, 71, 0.08);
}

/* ============================================================
   SERVICE CARD PICKER (Contact form)
============================================================ */
.svc-picker-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.svc-picker-title .req { color: #e03131; margin-left: 2px; }

.svc-picker-hint {
  font-size: 13px;
  color: var(--text);
  opacity: 0.65;
  margin-bottom: 14px;
}

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

@media (max-width: 991.98px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 12px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  user-select: none;
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(41, 155, 70, 0.12);
}

.svc-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s, transform 0.18s;
}
.svc-check i { color: #fff; font-size: 10px; }

.svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #e8f5ec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon i { font-size: 17px; color: var(--accent); }

.svc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.svc-desc {
  font-size: 11px;
  color: var(--text);
  opacity: 0.7;
  line-height: 1.4;
}

.svc-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: #e8f5ec;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 2px;
}

/* Selected state via :has() — Chrome 105+, Firefox 121+, Safari 15.4+ */
.svc-card:has(.svc-input:checked) {
  border-color: var(--accent);
  background: #f0faf3;
  box-shadow: 0 4px 18px rgba(41, 155, 70, 0.14);
}
.svc-card:has(.svc-input:checked) .svc-check {
  opacity: 1;
  transform: scale(1);
}
.svc-card:has(.svc-input:checked) .svc-icon {
  background: var(--accent);
}
.svc-card:has(.svc-input:checked) .svc-icon i { color: #fff; }

/* ============================================================
   PRICING PAGE
============================================================ */
.pricing-section { background: var(--light-bg); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .pricing-layout { grid-template-columns: 1fr; }
}

/* Pricing cards */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--primary);
  color: #fff;
}

.pricing-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card-icon i { font-size: 22px; color: #fff; }

.pricing-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.pricing-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 3px 0 0;
}

.pricing-card-body { padding: 0; }

/* Pricing table */
.pricing-tbl {
  border-collapse: collapse;
  width: 100%;
}
.pricing-tbl thead tr {
  background: rgba(0,47,71,0.04);
}
.pricing-tbl th {
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
}
.pricing-tbl td {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.pricing-tbl tbody tr:last-child td { border-bottom: none; }
.pricing-tbl tbody tr:nth-child(even) { background: rgba(0,47,71,0.02); }
.pricing-tbl tbody tr:hover { background: rgba(41,155,70,0.04); }

/* CFQ row */
.cfq-row { background: rgba(0,47,71,0.02) !important; }
.cfq-cell { font-style: italic; }
.cfq-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cfq-link i { color: #25D366; }

/* Dual-price cell — price + inline button side by side */
.dual-price-cell {
  white-space: nowrap;
}
.dual-price-cell .price-amt {
  font-size: 14px;
  color: var(--text);
  margin-right: 6px;
}

/* Inline column button (inside dual-price cells) */
.tier-col-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  vertical-align: middle;
  flex-shrink: 0;
}
.tier-col-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tier-col-btn.tier-btn-done {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Tier action buttons */
.tier-select-btn,
.tier-add-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  margin: 0 auto;
}
.tier-select-btn:hover,
.tier-add-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tier-btn-done {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* Tier selected row highlight */
.tier-selected { background: rgba(41,155,70,0.06) !important; }
@keyframes tierFlash {
  0%,100% { background: transparent; }
  50%      { background: rgba(41,155,70,0.18); }
}
.tier-added-flash { animation: tierFlash 0.6s ease; }

/* Quantity input */
.tier-qty-wrap { margin-bottom: 4px; }
.tier-qty {
  width: 54px;
  padding: 3px 6px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}

/* Pricing summary panel */
.pricing-summary-wrap {
  position: sticky;
  top: 90px;
}
@media (max-width: 991.98px) {
  .pricing-summary-wrap { position: static; }
}

.pricing-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-summary-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: var(--primary);
  color: #fff;
}
.pricing-summary-head i { font-size: 18px; color: rgba(255,255,255,0.7); }
.pricing-summary-head h4 { margin: 0; font-size: 16px; font-weight: 800; color: #fff; }

.pricing-summary-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--text);
  opacity: 0.55;
}
.pricing-summary-empty i { font-size: 28px; margin-bottom: 10px; display: block; }
.pricing-summary-empty p { font-size: 13px; margin: 0; }

.pricing-summary-items { padding: 0 20px; margin: 0; }

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.summary-item:last-child { border-bottom: none; }

.summary-item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.summary-item-service { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); }
.summary-item-label { color: var(--primary); font-weight: 500; line-height: 1.3; }

.summary-item-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.summary-item-price { font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap; }

.summary-remove-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0,47,71,0.07);
  color: var(--text);
  font-size: 11px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.summary-remove-btn:hover { background: #ffe0e0; color: #e03131; }

.pricing-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--light-bg);
  border-top: 2px solid var(--border);
  font-size: 14px;
  color: var(--primary);
}
.pricing-summary-total strong { font-size: 18px; font-weight: 900; color: var(--accent); }

.pricing-summary-note {
  padding: 10px 20px;
  font-size: 11px;
  color: var(--text);
  opacity: 0.65;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.5;
}
.pricing-summary-note i { margin-top: 2px; flex-shrink: 0; }

/* CTA strip */
.pricing-cta-strip {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-cta-strip h4 { color: #fff; font-size: 20px; margin: 0 0 6px; }
.pricing-cta-strip p  { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }
.pricing-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Booking modal */
.booking-modal-summary {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.booking-modal-summary-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 12px;
}
.booking-modal-tbl { border-collapse: collapse; }
.booking-modal-tbl td { padding: 7px 8px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); }
.booking-modal-tbl tfoot td { border-bottom: none; padding-top: 12px; color: var(--primary); }
.booking-modal-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text);
  opacity: 0.65;
  display: flex;
  gap: 5px;
}
.booking-modal-note i { margin-top: 2px; }

/* Success overlay */
.booking-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 10;
}
.booking-success-inner { text-align: center; }
.booking-success-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}
.booking-success-inner h4 { font-size: 22px; margin-bottom: 10px; color: var(--primary); }
.booking-success-inner p  { font-size: 14px; color: var(--text); margin-bottom: 8px; }
.booking-ref { font-size: 12px; color: var(--text); opacity: 0.6; }

/* ============================================================
   GOOGLE REVIEW POPUP
============================================================ */
.review-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10001;
  width: min(380px, calc(100vw - 32px));
  pointer-events: none;
}

.review-popup.show { pointer-events: auto; }

.review-popup-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 47, 71, 0.28), 0 4px 12px rgba(0, 47, 71, 0.10);
  overflow: hidden;
  position: relative;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
  border: 1px solid rgba(0, 47, 71, 0.06);
}

.review-popup.show .review-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.review-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.review-popup-close:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
  transform: rotate(90deg);
}

.review-popup-head {
  background: linear-gradient(135deg, var(--primary) 0%, #013d65 100%);
  padding: 22px 24px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.review-popup-head::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(41,155,70,0.22), transparent 70%);
  border-radius: 50%;
}

.review-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(41, 155, 70, 0.18);
  border: 1px solid rgba(41, 155, 70, 0.45);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #aef0bf;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.review-popup-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.review-popup-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
}

.review-popup-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.5;
  position: relative;
}

.review-popup-step {
  padding: 22px 24px 24px;
}

/* ─── Stars ─── */
.review-popup-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.review-star {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  font-size: 30px;
  color: rgba(0, 47, 71, 0.18);
  transition: color 0.18s, transform 0.18s;
  line-height: 1;
}
.review-star:hover,
.review-star.is-hover,
.review-star.is-active {
  color: #f5b301;
  transform: scale(1.08);
}
.review-star.is-active {
  filter: drop-shadow(0 4px 8px rgba(245, 179, 1, 0.35));
}

.review-popup-hint {
  text-align: center;
  font-size: 12px;
  color: var(--text);
  opacity: 0.65;
  margin: 0;
}

/* ─── Step 2 form ─── */
.review-form-row { margin-bottom: 12px; }

.review-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--primary);
  background: var(--light-bg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.review-input::placeholder { color: rgba(61, 90, 106, 0.55); }
.review-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41, 155, 70, 0.14);
}
.review-textarea { resize: vertical; min-height: 70px; max-height: 180px; }

.review-popup-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 14px;
  background: #f0faf3;
  border: 1px solid rgba(41, 155, 70, 0.20);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 14px;
}
.review-popup-notice i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.review-popup-notice.is-low {
  background: rgba(0, 47, 71, 0.04);
  border-color: rgba(0, 47, 71, 0.10);
}
.review-popup-notice.is-low i { color: var(--primary); }

.review-popup-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-review-primary,
.btn-review-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-review-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  flex: 1;
}
.btn-review-primary:hover {
  background: #1d7a35;
  border-color: #1d7a35;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(41, 155, 70, 0.32);
}
.btn-review-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-review-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-review-ghost:hover {
  background: rgba(0, 47, 71, 0.04);
  color: var(--primary);
  border-color: rgba(0, 47, 71, 0.18);
}

/* ─── Step 3 success ─── */
.review-popup-success { text-align: center; padding: 4px 0 6px; }
.review-popup-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f5ec;
  color: var(--accent);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.review-popup-success h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px;
}
.review-popup-success p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 14px;
}
.review-popup-success kbd {
  background: rgba(0, 47, 71, 0.08);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--primary);
}

/* ─── Mobile ─── */
@media (max-width: 575.98px) {
  .review-popup {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }
  .review-popup-head { padding: 18px 20px 20px; }
  .review-popup-step { padding: 18px 20px 20px; }
  .review-popup-title { font-size: 17px; }
  .review-star { font-size: 28px; padding: 4px; }
}

/* ============================================================
   QR SHARE — topbar icon + page-banner pill + modal
============================================================ */
/* Topbar trigger — sits inside .topbar-social, sized identically */
.topbar-share-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.topbar-share-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer trigger — sits inside .footer-social, matches the link sizing */
.footer-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.footer-share-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Page-banner pill — auto-injected on inner pages with .page-banner-content */
.banner-share-pill {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.banner-share-pill i { font-size: 14px; }
.banner-share-pill:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

@media (max-width: 767.98px) {
  .banner-share-pill {
    position: static;
    margin-top: 14px;
    padding: 8px 16px;
    font-size: 12.5px;
  }
}

/* Modal */
.share-modal .modal-dialog { max-width: 420px; }

.share-modal-content {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 47, 71, 0.30);
}

.share-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #013d65 100%);
  color: #fff;
  padding: 22px 24px 20px;
  position: relative;
  overflow: hidden;
}
.share-modal-head::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(41,155,70,0.22), transparent 70%);
  border-radius: 50%;
}
.share-modal-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}
.share-modal-head .modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.share-modal-close {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.share-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}

.share-modal-body { padding: 26px 24px 24px; background: var(--white); }

.share-qr-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 47, 71, 0.10);
  border: 1px solid rgba(0, 47, 71, 0.08);
}
#shareQrCanvas { display: block; }

.share-qr-logo {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 47, 71, 0.18);
}
.share-qr-logo img { max-width: 32px; max-height: 32px; }

.share-modal-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text);
  opacity: 0.7;
  margin: 0 0 16px;
}

.share-link-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.share-link-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--primary);
  background: var(--light-bg);
}
.share-link-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.share-link-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.share-link-btn:hover { background: var(--accent); }
.share-link-btn.is-copied { background: var(--accent); }

.share-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-share-action {
  flex: 1;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-share-action:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-share-action.btn-share-wa:hover {
  background: #25D366;
  border-color: #25D366;
}

@media (max-width: 575.98px) {
  .share-modal-body { padding: 22px 18px 20px; }
  .share-qr-wrap { width: 200px; height: 200px; }
  .btn-share-action { min-width: 0; padding: 9px 10px; }
}
