/* ================================================================
   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; }
}
