/* ===================================================
   ServeAll – One Platform. Every Service.
   Premium CSS Stylesheet
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #4CA439;
  --primary-dark: #3d8a2e;
  --primary-light: #6bc258;
  --secondary: #02346E;
  --secondary-dark: #012552;
  --secondary-light: #0a4d9e;
  --accent-white: #ffffff;
  --accent-light: #F5F8FC;
  --accent-green-light: #EAF7E7;
  --text-dark: #1a1a2e;
  --text-body: #555770;
  --text-muted: #8892a4;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(2, 52, 110, 0.06);
  --shadow-md: 0 8px 30px rgba(2, 52, 110, 0.10);
  --shadow-lg: 0 20px 60px rgba(2, 52, 110, 0.12);
  --shadow-xl: 0 30px 80px rgba(2, 52, 110, 0.15);
  --shadow-glow-green: 0 8px 30px rgba(76, 164, 57, 0.25);
  --shadow-glow-blue: 0 8px 30px rgba(2, 52, 110, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-mix: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-mix-rev: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(2, 52, 110, 0.85) 0%, rgba(76, 164, 57, 0.55) 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-body);
  background: var(--accent-white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

@media (min-width: 992px) {
  body {
    padding-top: 122px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--primary);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--accent-light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-mix);
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ---------- Section Styles ---------- */
.section-padding {
  padding: 100px 0;
}

.section-sm-padding {
  padding: 70px 0;
}

.section-bg-light {
  background: var(--accent-light);
}

.section-bg-green-light {
  background: var(--accent-green-light);
}

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

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 24px;
  background: var(--accent-green-light);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  font-family: var(--font-primary);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-glow-green);
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-mix-rev);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-base);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 12px 35px rgba(76, 164, 57, 0.4);
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(5px);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-green);
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: #fff;
  color: var(--secondary);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.btn-white-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===================================================
   TOP BAR
   =================================================== */
.top-bar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, border 0.3s ease;
  overflow: hidden;
  max-height: 50px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left .top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left .top-item i {
  color: var(--primary);
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  transition: var(--transition-base);
}

.top-bar-right a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ===================================================
   HEADER / NAVBAR
   =================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.main-header.scrolled .top-bar {
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
  border-bottom: none;
}

.main-header .navbar {
  padding: 12px 0;
  transition: var(--transition-base);
}

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

.navbar-brand img {
  height: 52px;
  transition: var(--transition-base);
}

.main-header.scrolled .navbar-brand img {
  height: 42px;
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 18px !important;
  transition: var(--transition-base);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  width: 0;
  height: 2px;
  background: var(--gradient-mix);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

.nav-cta-btn {
  padding: 10px 28px !important;
  background: var(--gradient-primary);
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  margin-left: 10px;
  box-shadow: var(--shadow-glow-green);
}

.nav-cta-btn::after {
  display: none !important;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76, 164, 57, 0.4);
  color: #fff !important;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  font-size: 22px;
  color: var(--secondary);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Dropdown Multi-Level Styles */
.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px 0;
  margin-top: 10px !important;
  background: #fff;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 24px;
  transition: var(--transition-base);
}

.navbar-nav .dropdown-item:hover {
  background: var(--accent-green-light);
  color: var(--primary);
}

.navbar-nav .nav-link.dropdown-toggle::after {
  display: none !important;
}

/* 2nd and 3rd level submenus */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0 !important;
  }

  .navbar-nav .nav-item.dropdown>.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    width: 210px;
  }

  .navbar-nav .nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu .dropdown-submenu {
    position: relative;
  }

  .dropdown-menu .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px !important;
    margin-left: 0px;
    display: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

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

  .dropdown-submenu>a::after {
    display: inline-block;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    border: none;
    margin-top: 3px;
    font-size: 11px;
    color: var(--text-muted);
  }
}

/* Mobile Offcanvas Dropdown styles */
@media (max-width: 991.98px) {
  .offcanvas-body .dropdown-menu {
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 15px;
    margin-top: 0 !important;
  }

  .offcanvas-body .dropdown-submenu>.dropdown-menu {
    display: block;
    padding-left: 15px;
  }

  .offcanvas-body .dropdown-submenu>a::after {
    display: inline-block;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    border: none;
    font-size: 10px;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

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

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
  padding: 0 20px;
}

.hero-content .hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(76, 164, 57, 0.4);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Animations */
.swiper-slide-active .hero-badge {
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.swiper-slide-active .hero-content h1 {
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.swiper-slide-active .hero-content p {
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.swiper-slide-active .hero-buttons {
  animation: heroFadeUp 0.6s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Hero Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition-base);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--transition-base);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 36px;
  border-radius: 6px;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatShape 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.floating-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
  animation-delay: 1s;
  border-radius: 30%;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
  padding: 20px;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  height: 700px;
}

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

.about-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}

.about-floating-card.card-1 {
  bottom: 30px;
  left: -10px;
  animation-delay: 0s;
}

.about-floating-card.card-2 {
  top: 30px;
  right: -10px;
  animation-delay: 1.5s;
}

.about-floating-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.about-floating-card .card-icon.green {
  background: var(--gradient-primary);
}

.about-floating-card .card-icon.blue {
  background: var(--gradient-secondary);
}

.about-floating-card .card-text h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-floating-card .card-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-content .about-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 24px;
  background: var(--accent-green-light);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content h2 span {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content .about-lead {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-card {
  background: var(--gradient-mix);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.mission-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.mission-card h5 i {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.mission-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.7;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-item .stat-number {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.stat-item .stat-number span.counter-suffix {
  font-size: 24px;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services-section {
  position: relative;
  overflow: hidden;
}

.svg-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.svg-divider-top svg {
  width: 100%;
  height: 80px;
}

.svg-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg);
}

.svg-divider-bottom svg {
  width: 100%;
  height: 80px;
}

.service-card {
  background: var(--accent-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin: 10px 5px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: -2;
  transition: var(--transition-slow);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-mix);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-base);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 52, 110, 0.95) 0%, rgba(76, 164, 57, 0.95) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-base);
}

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

.service-card:hover .service-card-overlay {
  opacity: 1;
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: var(--accent-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--primary);
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: #fff;
  color: var(--primary);
  transform: rotateY(180deg);
  box-shadow: var(--shadow-glow-green);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
  transition: var(--transition-base);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card .service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.service-card:hover .service-link {
  color: #fff;
}

.service-card .service-link:hover {
  gap: 12px;
}

/* Services Swiper */
.services-swiper .swiper-wrapper {
  padding-bottom: 20px;
}

.services-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  opacity: 0.3;
}

.services-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-section {
  position: relative;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--accent-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
  margin-bottom: 20px;
}

.why-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-card .why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-mix);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card .why-text h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card .why-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-section {
  position: relative;
  overflow: hidden;
}

.step-flow-item {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.step-flow-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  position: relative;
  z-index: 2;
}

.step-flow-item:hover .step-flow-icon-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-flow-icon-wrapper.purple {
  background: linear-gradient(135deg, #7F56D9 0%, #6941C6 100%);
  box-shadow: 0 10px 25px rgba(127, 86, 217, 0.2);
}

.step-flow-icon-wrapper.blue {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.step-flow-icon-wrapper.pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.2);
}

.step-flow-icon-wrapper.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.step-flow-line {
  position: absolute;
  top: 45px;
  left: calc(50% + 55px);
  width: calc(100% - 110px);
  height: 2px;
  border-top: 2px dotted #cfd8dc;
  z-index: 1;
}

.step-flow-line::before,
.step-flow-line::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.step-flow-line::before {
  left: 0;
  background: #b0bec5;
}

.step-flow-line::after {
  right: 0;
  background: #b0bec5;
}

.step-flow-item h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-flow-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 250px;
  margin: 0 auto;
}

/* ===================================================
   FEATURES SECTION
   =================================================== */
.features-section {
  position: relative;
}

.feature-card {
  background: var(--accent-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
  height: 100%;
}

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

.feature-card .feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-mix);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-green);
}

.feature-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin: 20px 10px 40px;
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 15px;
}

.testimonial-card .testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

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

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-green-light);
}

.testimonial-author .author-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-author .author-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  opacity: 0.3;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  background: var(--gradient-mix);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   GALLERY SECTION
   =================================================== */
.gallery-section {
  position: relative;
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  transition: var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 52, 110, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
}

.gallery-more {
  text-align: center;
  margin-top: 40px;
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-info-card {
  background: var(--gradient-mix);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-item .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-item .contact-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-detail-item .contact-text p,
.contact-detail-item .contact-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  display: block;
}

.contact-detail-item .contact-text a:hover {
  color: #fff;
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-card {
  background: var(--accent-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-card>p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.form-floating-custom {
  position: relative;
  margin-bottom: 20px;
}

.form-floating-custom .form-control,
.form-floating-custom .form-select {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition-base);
  background: var(--accent-light);
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(76, 164, 57, 0.1);
  background: var(--accent-white);
}

.form-floating-custom textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ===================================================
   FOOTER
   =================================================== */
.main-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-widget h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition-base);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary);
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

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

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

.footer-bottom a {
  color: var(--primary);
}

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--primary);
}

.float-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse-float 2s ease-in-out infinite;
}

@keyframes pulse-float {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

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

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--gradient-primary);
}

/* ===================================================
   GALLERY LIGHTBOX
   =================================================== */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.gallery-lightbox .close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.gallery-lightbox .close-lightbox:hover {
  background: var(--primary);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

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

  .hero-section {
    min-height: 550px;
    max-height: 700px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    left: 30px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row !important;
    padding-left: 70px;
    justify-content: flex-start;
  }

  .timeline-content {
    width: 100% !important;
  }

  .timeline-dot {
    left: 30px;
    transform: translateX(-50%);
  }

  .gallery-grid {
    column-count: 2;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .navbar-nav {
    padding: 20px 0;
    background: #fff;
    border-radius: var(--radius-md);
    margin-top: 10px;
    box-shadow: var(--shadow-md);
  }

  .nav-cta-btn {
    margin-left: 18px;
    margin-top: 8px;
    display: inline-block;
    width: auto;
  }

  .about-img-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    display: none;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    min-height: 500px;
    max-height: 650px;
  }

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

  .hero-content p {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 15px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item .stat-number {
    font-size: 26px;
  }

  .gallery-grid {
    column-count: 2;
  }

  .cta-content h2 {
    font-size: 28px;
  }

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

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .back-to-top {
    right: 26px;
    bottom: 90px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 24px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-white-custom,
  .cta-buttons .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

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

/* ===================================================
   PRELOADER
   =================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--accent-light);
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  border-radius: 50%;
  animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================================================
   BREADCRUMB STYLES
   =================================================== */
.breadcrumb-wrapper {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 52, 110, 0.85);
  z-index: 1;
}

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

.breadcrumb-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-secondary);
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb-nav a {
  color: var(--accent-green-light);
  font-weight: 500;
  transition: var(--transition-base);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Parallax Section Helpers */
.parallax-section-wrapper {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}

.parallax-section-wrapper .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 52, 110, 0.88);
  z-index: 1;
}

.parallax-section-wrapper .container {
  position: relative;
  z-index: 2;
}

/* Gradient CTA Card Helper */
.gradient-cta-card {
  background: var(--gradient-mix) !important;
  color: #fff !important;
  box-shadow: var(--shadow-lg) !important;
}

.gradient-cta-card h3,
.gradient-cta-card h4,
.gradient-cta-card p,
.gradient-cta-card .text-muted {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .parallax-section-wrapper {
    background-attachment: scroll; /* Fallback for mobile devices */
  }
}