@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #A9D9BA;
  --dark-blue: #023661;
  --dark-blue-deep: #0a1628;
  --navy: #061564;
  --orange: #ff8400;
  --orange-light: #ffa033;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray: #8892a4;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes blob {

  0%,
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 0 5px var(--green), 0 0 10px var(--green);
  }

  50% {
    box-shadow: 0 0 20px var(--orange), 0 0 30px var(--orange);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid var(--glass);
  border-top-color: var(--green);
  border-right-color: var(--orange);
  border-radius: 50%;
  animation: rotate360 1s linear infinite;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  animation: slideDown 0.6s ease;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--green-light);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--orange);
}

.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 13px;
}

.top-social a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.flags {
  display: flex;
  gap: 6px;
}

.flags img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  transition: var(--transition);
}

.flags img:hover {
  transform: scale(1.3);
}

/* ===== HEADER / NAV ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-blue);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  color: var(--dark-blue);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--green-dark);
}

.dropdown-menu a::after {
  display: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 132, 0, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 132, 0, 0.4) !important;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--green-light);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  padding: 0 50px;
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 13px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 650px;
  max-height: 650px;
  overflow: hidden;
  background: var(--dark-blue-deep);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-blue-deep) 0%, var(--dark-blue) 50%, #0d3b66 100%);
  z-index: -1;
}

.hero-bg-overlay::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");
}

.hero-slide .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.hero-slide.active .hero-content {
  animation: fadeInLeft 1s ease 0.3s both;
}

.hero-slide.active .hero-right {
  animation: fadeInRight 1s ease 0.5s both;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.slider-nav button {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav button:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* Hero Break Design */
.hero-break {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-break svg {
  width: 100%;
  height: 100px;
}

@media(max-width:1024px) {
  .hero-slide .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 50px;
  }

  .hero-right {
    display: none;
  }

  .hero-track-form {
    margin: 0 auto 20px;
  }

  .hero-btns {
    justify-content: center;
  }

  .slider-nav {
    bottom: 40px;
  }

  .hero-break svg {
    height: 60px;
  }
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(255, 132, 0, 0.1));
  animation: blob 8s ease-in-out infinite;
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 132, 0, 0.1), rgba(46, 204, 113, 0.08));
  animation: blob 10s ease-in-out infinite reverse;
  bottom: -50px;
  left: -80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 1s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--orange);
}

.hero h1 .green {
  color: var(--green);
}

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Hero Tracking Form */
.hero-track-form {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  max-width: 480px;
}

.hero-track-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  outline: none;
}

.hero-track-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-track-form input:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.12);
}

.hero-track-form button {
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-track-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 132, 0, 0.3);
}

.btn-hero-secondary {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  border-color: var(--green);
  background: rgba(46, 204, 113, 0.1);
}

.hero-right {
  animation: fadeInRight 1s ease 0.5s both;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-main {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 30px;
  left: -40px;
  animation-delay: 0.5s;
}

.hero-float-card.card-2 {
  top: 30px;
  right: -30px;
  animation-delay: 1s;
}

.hero-float-card .card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.hero-float-card .card-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-blue);
}

.hero-float-card .card-label {
  font-size: 12px;
  color: var(--gray);
}

/* ===== INFO STRIP ===== */
.info-strip {
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.info-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border-right: 1px solid #e8ecf0;
  transition: var(--transition);
  background: var(--white);
  border-radius: 0;
}

.info-card:first-child {
  border-radius: 16px 0 0 16px;
}

.info-card:last-child {
  border-radius: 0 16px 16px 0;
  border-right: none;
}

.info-strip .container {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.info-card:hover {
  background: var(--green-light);
}

.info-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

.info-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 2px;
}

.info-card strong {
  font-size: 15px;
  color: var(--dark-blue);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}

.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-1 {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.about-img-2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  z-index: 3;
}

.about-exp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  z-index: 4;
  animation: pulse 3s infinite;
}

.about-exp-badge .num {
  font-size: 36px;
  font-weight: 900;
  display: block;
}

.about-exp-badge .lab {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 38px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--orange);
}

.about-content>p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.mv-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e8ecf0;
  background: var(--white);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.mv-card h4 {
  color: var(--dark-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-card h4 span {
  font-size: 20px;
}

.mv-card p {
  font-size: 13px;
  color: var(--gray);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(2, 54, 97, 0.3);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--orange);
}

.section-header p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card .s-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(255, 132, 0, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.service-card:hover .s-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: rotateY(180deg);
}

.service-card:hover .s-icon span {
  filter: brightness(0) invert(1);
}

.service-card h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== EXCELLENCE SECTION ===== */
.excellence {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-blue-deep), var(--dark-blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.excellence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.excellence .container {
  position: relative;
  z-index: 2;
}

.excellence .section-header h2 {
  color: var(--white);
}

.excellence .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.exc-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.exc-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--green);
}

.exc-card .exc-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.exc-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.exc-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===== QUOTE FORM ===== */
.quote-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4fa 0%, #e8edf5 30%, #f7f8fc 60%, #eef3f9 100%);
  position: relative;
  overflow: hidden;
}

/* Parallax background image - very subtle */
.quote-parallax-bg {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&h=900&fit=crop&q=80') center center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
  filter: grayscale(40%);
}

/* Subtle dotted background pattern */
.quote-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(46, 204, 113, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 132, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 30px 30px;
  z-index: 0;
}

/* Gradient orb backgrounds */
.quote-bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.quote-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.15), transparent 70%);
  top: -100px;
  left: -100px;
  animation: quoteOrbFloat 8s ease-in-out infinite;
}

.quote-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 132, 0, 0.12), transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: quoteOrbFloat 10s ease-in-out infinite reverse;
}

@keyframes quoteOrbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-15px, 25px) scale(0.95);
  }

  75% {
    transform: translate(20px, 10px) scale(1.03);
  }
}

/* Floating courier icons */
.quote-float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.qfi-1 {
  top: 12%;
  left: 5%;
  background: rgba(46, 204, 113, 0.12);
  color: var(--green);
  border: 1px solid rgba(46, 204, 113, 0.2);
  animation: quoteIconFloat1 6s ease-in-out infinite;
}

.qfi-2 {
  top: 25%;
  right: 4%;
  background: rgba(255, 132, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 132, 0, 0.2);
  animation: quoteIconFloat2 7s ease-in-out infinite 0.5s;
}

.qfi-3 {
  bottom: 20%;
  left: 3%;
  background: rgba(2, 54, 97, 0.08);
  color: var(--dark-blue);
  border: 1px solid rgba(2, 54, 97, 0.12);
  animation: quoteIconFloat3 8s ease-in-out infinite 1s;
}

.qfi-4 {
  bottom: 10%;
  right: 6%;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border: 1px solid rgba(46, 204, 113, 0.15);
  animation: quoteIconFloat1 5s ease-in-out infinite 1.5s;
}

.qfi-5 {
  top: 60%;
  left: 8%;
  background: rgba(255, 132, 0, 0.08);
  color: var(--orange);
  border: 1px solid rgba(255, 132, 0, 0.15);
  animation: quoteIconFloat2 9s ease-in-out infinite 2s;
}

@keyframes quoteIconFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
    opacity: 1;
  }
}

@keyframes quoteIconFloat2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  33% {
    transform: translateY(-12px) rotate(-5deg);
    opacity: 0.9;
  }

  66% {
    transform: translateY(8px) rotate(5deg);
    opacity: 0.7;
  }
}

@keyframes quoteIconFloat3 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }

  25% {
    transform: translate(10px, -15px);
    opacity: 0.8;
  }

  50% {
    transform: translate(-8px, -10px);
    opacity: 1;
  }

  75% {
    transform: translate(5px, 5px);
    opacity: 0.7;
  }
}

/* Animated particle dots */
.quote-particle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.qp-1 {
  width: 6px;
  height: 6px;
  background: var(--green);
  top: 15%;
  left: 15%;
  animation: particleDrift 12s linear infinite;
  opacity: 0.4;
}

.qp-2 {
  width: 4px;
  height: 4px;
  background: var(--orange);
  top: 30%;
  right: 20%;
  animation: particleDrift 10s linear infinite 1s;
  opacity: 0.35;
}

.qp-3 {
  width: 5px;
  height: 5px;
  background: var(--green-dark);
  bottom: 25%;
  left: 25%;
  animation: particleDrift 14s linear infinite 2s;
  opacity: 0.3;
}

.qp-4 {
  width: 3px;
  height: 3px;
  background: var(--orange);
  top: 50%;
  right: 10%;
  animation: particleDrift 11s linear infinite 3s;
  opacity: 0.4;
}

.qp-5 {
  width: 5px;
  height: 5px;
  background: rgba(46, 204, 113, 0.6);
  top: 70%;
  left: 12%;
  animation: particleDrift 9s linear infinite 0.5s;
  opacity: 0.35;
}

.qp-6 {
  width: 4px;
  height: 4px;
  background: rgba(255, 132, 0, 0.5);
  top: 80%;
  right: 15%;
  animation: particleDrift 13s linear infinite 2.5s;
  opacity: 0.3;
}

.qp-7 {
  width: 6px;
  height: 6px;
  background: var(--green);
  top: 40%;
  left: 40%;
  animation: particleDrift 15s linear infinite 4s;
  opacity: 0.25;
}

.qp-8 {
  width: 3px;
  height: 3px;
  background: var(--orange);
  bottom: 40%;
  right: 30%;
  animation: particleDrift 8s linear infinite 1.5s;
  opacity: 0.4;
}

@keyframes particleDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  50% {
    transform: translate(30px, -40px) scale(1.2);
    opacity: 0.4;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translate(-20px, 50px) scale(0.8);
    opacity: 0;
  }
}

/* Paper Rocket Animation */
.quote-rocket-wrapper {
  margin: 30px 0 20px;
  position: relative;
}

.quote-rocket-svg {
  width: 260px;
  height: 180px;
  overflow: visible;
}

.rocket-group {
  animation: rocketHover 3s ease-in-out infinite;
}

@keyframes rocketHover {

  0%,
  100% {
    transform: translate(180px, 55px) rotate(-30deg) translateY(0);
  }

  50% {
    transform: translate(180px, 55px) rotate(-30deg) translateY(-8px);
  }
}

.rocket-flame {
  animation: flameFlicker 0.3s ease-in-out infinite alternate;
  transform-origin: center top;
}

@keyframes flameFlicker {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(1.15) scaleX(0.9);
  }

  100% {
    transform: scaleY(0.9) scaleX(1.1);
  }
}

.rocket-trail-dot {
  animation: trailDotPulse 2s ease-in-out infinite;
}

.rt-1 {
  animation-delay: 0s;
}

.rt-2 {
  animation-delay: 0.3s;
}

.rt-3 {
  animation-delay: 0.6s;
}

.rt-4 {
  animation-delay: 0.9s;
}

.rt-5 {
  animation-delay: 1.2s;
}

@keyframes trailDotPulse {

  0%,
  100% {
    opacity: 0.2;
    r: 2;
  }

  50% {
    opacity: 0.7;
    r: 4;
  }
}

.rocket-trail-path {
  stroke-dashoffset: 0;
  animation: trailDash 3s linear infinite;
}

@keyframes trailDash {
  to {
    stroke-dashoffset: -48;
  }
}

.rocket-stars polygon {
  animation: starTwinkle 2s ease-in-out infinite;
}

.rocket-stars polygon:nth-child(1) {
  animation-delay: 0s;
}

.rocket-stars polygon:nth-child(2) {
  animation-delay: 0.7s;
}

.rocket-stars polygon:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.quote-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.quote-info h2 {
  font-size: 38px;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.quote-info h2 span {
  color: var(--orange);
}

.quote-info>p {
  color: var(--gray);
  margin-bottom: 10px;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qf-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qf-item .qf-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.qf-item span {
  font-size: 15px;
  color: var(--dark-blue);
  font-weight: 500;
}

.quote-form-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
}

.quote-form-card h3 {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8ecf0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  background: var(--white);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-quote {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 132, 0, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-blue-deep) 0%, var(--dark-blue) 100%);
  color: var(--white);
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: marqueeScroll 40s linear infinite;
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card .quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-card .author-info .name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-card .author-info .location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Testimonials page (grid) - distinct from home marquee */
.testimonials-grid {
  background: var(--off-white);
  color: var(--dark-blue);
}
.testimonials-grid .section-header h2,
.testimonials-grid .section-header p {
  color: var(--dark-blue);
}
.testimonials-grid .section-tag {
  background: rgba(46, 204, 113, 0.15) !important;
  color: var(--green-dark) !important;
}
.testimonials-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonials-grid .testimonial-card {
  background: #fff;
  color: var(--dark-blue);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  width: auto;
  flex-shrink: unset;
  animation: none;
}
.testimonials-grid .testimonial-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.testimonials-grid .testimonial-card .quote {
  color: #475569;
}
.testimonials-grid .testimonial-card .author-info .location {
  color: var(--gray);
}
.testimonials-grid .testimonial-form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.testimonials-grid .testimonial-form h3 {
  color: var(--dark-blue);
}

/* ===== CITIES ===== */
.cities {
  padding: 100px 0;
  background: var(--white);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.city-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: var(--transition);
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.city-card .city-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card:hover .city-bg {
  transform: scale(1.1);
}

.city-card .city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.city-card h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.city-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.city-card .city-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.city-card:hover .city-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BLOG ===== */
.blog {
  padding: 100px 0;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 14px;
  color: var(--gray);
}

/* ===== PARTNERS ===== */
.partners {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid #e8ecf0;
}

.partners h3 {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.partners-track {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.5;
}

.partners-track span {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-blue);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--dark-blue-deep), #060d1a);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 16px 0;
  line-height: 1.7;
}

.footer-brand .footer-logo {
  height: 40px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  border: none;
  font-size: 18px;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-right {
    display: none;
  }

  .hero-track-form {
    margin: 0 auto 20px;
  }

  .hero-btns {
    justify-content: center;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-bottom: 40px;
  }

  .excellence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quote-section .container {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 12px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 15px;
  }

  .info-strip .container {
    grid-template-columns: 1fr;
  }

  .info-card {
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
  }

  .info-card:last-child {
    border-bottom: none;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .excellence-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    width: 300px;
  }

  .quote-info h2 {
    font-size: 28px;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 300px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 36, 63, 0.7);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero .hero-break {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
  color: #fff;
}

.page-hero .breadcrumb {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a {
  color: var(--green);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero .breadcrumb span + span::before {
  content: '/';
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media(max-width:768px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero .breadcrumb {
    gap: 8px;
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.process-card h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
}

/* ===== DIY COURIER SERVICES ===== */
.diy-services {
  padding: 100px 0;
  background: var(--off-white);
}

.diy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.diy-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--dark-blue);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.diy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.diy-icon {
  width: 70px;
  height: 70px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--green);
  transition: var(--transition);
}

.diy-card:hover .diy-icon {
  background: var(--green);
  color: #fff;
}

.diy-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.diy-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

@media(max-width:992px) {
  .process-grid,
  .diy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .process-grid,
  .diy-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LEGACY PAGE CONTENT FALLBACKS (old Bootstrap/HTML pages)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,30,66,0.85), rgba(10,30,66,0.55));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.page-hero h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-content {
  padding: 60px 0;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-content p,
.page-content ul,
.page-content ol {
  margin-bottom: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content a {
  color: var(--primary);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.page-col {
  flex: 1 1 100%;
  min-width: 260px;
}

@media(min-width:768px) {
  .page-col-md-6 {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .page-col-md-4 {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  .page-col-md-8 {
    flex: 1 1 calc(66.666% - 8px);
    max-width: calc(66.666% - 8px);
  }
}

/* Preserve old Bootstrap-like classes by mapping them */
.page-content .row,
.page-content [class*="row"] {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.page-content [class*="col-"] {
  flex: 1 1 100%;
  min-width: 260px;
}

@media(min-width:768px) {
  .page-content .col-md-6,
  .page-content [class*="col-md-6"] {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .page-content .col-lg-4,
  .page-content .col-md-6,
  .page-content [class*="col-lg-4"] {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  .page-content .col-lg-8,
  .page-content [class*="col-lg-8"] {
    flex: 1 1 calc(66.666% - 8px);
    max-width: calc(66.666% - 8px);
  }

  .page-content .col-xl-12,
  .page-content .col-lg-12,
  .page-content .col-md-12,
  .page-content [class*="col-12"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.page-content .single-cat,
.page-content .about-caption,
.page-content .section-tittle {
  margin-bottom: 20px;
}

.page-content .cat-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
}

.page-content .cat-cap h5 a {
  color: var(--navy);
  font-size: 18px;
}

.page-content .single-cat p,
.page-content .about-caption p,
.page-content .section-tittle p {
  font-size: 15px;
  color: var(--gray);
}

.text-center {
  text-align: center;
}

.mb-50,
.mb-4,
.mb-3,
.mb-2 {
  margin-bottom: 20px;
}

.mt-3,
.mt-2 {
  margin-top: 16px;
}

.py-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-padding30 {
  padding-top: 60px;
  padding-bottom: 60px;
}
/* ===== BLOG & GALLERY MODULES ===== */

.blog-section {
  background: var(--off-white);
}

.blog-post-section {
  background: var(--off-white);
  padding: 80px 0;
}

.blog-post {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.blog-post-header {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-deep) 100%);
  color: #fff;
  padding: 50px 40px;
  text-align: center;
}

.blog-post-header h1 {
  color: #fff;
  font-size: 2.1rem;
  margin: 12px 0 0;
  line-height: 1.3;
}

.blog-post-header .service-brand-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 16px;
}

.blog-image {
  margin: 0;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-body {
  color: #334155;
  line-height: 1.8;
  font-size: 1.05rem;
  padding: 40px;
}

.blog-post-body p {
  margin-bottom: 18px;
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
  color: var(--dark-blue);
  margin-top: 32px;
  margin-bottom: 14px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.blog-post-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.blog-post-body ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--green);
  font-weight: 700;
}

.blog-post-footer {
  padding: 30px 40px 50px;
  text-align: center;
  background: #fff;
}

.blog-post-footer .submit-btn {
  background: var(--orange);
  color: #fff;
}

.blog-post-footer .submit-btn:hover {
  background: var(--dark-blue);
  color: #fff;
}

/* Blog grid (listing) */
.blog-section {
  background: var(--off-white);
}

.blog-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 14px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-featured-thumb,
.blog-thumb {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-blue-deep));
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-featured-thumb i,
.blog-thumb i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.9);
}

.blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h3 {
  font-size: 1.6rem;
  color: var(--dark-blue);
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-featured-body p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
}

.blog-thumb-link {
  display: block;
  text-decoration: none;
}

.blog-thumb {
  min-height: 200px;
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body h3 a {
  color: #1e293b;
  text-decoration: none;
}

.blog-card-body h3 a:hover {
  color: var(--green);
}

.blog-card-body p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.6;
  flex: 1;
}

.read-more {
  color: #024c80;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  color: var(--green);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.blog-pagination a {
  background: #fff;
  color: var(--dark-blue);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.blog-pagination a:hover {
  background: var(--green);
  color: #fff;
}

.blog-pagination .pagination-current {
  background: var(--dark-blue);
  color: #fff;
}

.blog-pagination .pagination-prev,
.blog-pagination .pagination-next {
  padding: 0 18px;
  min-width: auto;
}

@media (max-width: 768px) {
  .blog-post-header { padding: 36px 24px; }
  .blog-post-header h1 { font-size: 1.6rem; }
  .blog-post-body { padding: 28px 24px; }
  .blog-post-footer { padding: 24px 24px 36px; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-thumb { min-height: 180px; }
  .blog-featured-body { padding: 24px; }
  .blog-stats { flex-direction: column; gap: 6px; text-align: center; }
}

/* Photo gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.photo-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  background: #fff;
}

.photo-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.photo-link img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-link:hover img {
  transform: scale(1.05);
}

.photo-caption {
  display: block;
  padding: 12px;
  font-size: 0.9rem;
  color: #334155;
  background: #f8fafc;
  text-align: center;
}

/* Video gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.video-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.video-item h4 {
  padding: 16px 16px 0;
  font-size: 1.05rem;
  color: #1e293b;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== NEW MODULES: FAQ, TRACKING, CALCULATORS, FLOAT CTA, TICKER, COMPARISON, COVERAGE ===== */

.faq-section { background: #f8fafc; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.04); }
.faq-question { width: 100%; text-align: left; padding: 18px 22px; background: transparent; border: none; font-size: 1.05rem; font-weight: 600; color: #1e293b; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { transition: transform 0.2s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 22px; color: #475569; transition: all 0.3s ease; }
.faq-answer.open { max-height: 500px; padding: 0 22px 18px; }

.track-section {
  background: var(--off-white);
  padding: 80px 0;
}

.track-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.track-header {
  padding: 40px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.track-header h2 {
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.track-header p {
  color: var(--gray);
  margin-bottom: 24px;
}

.track-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 560px;
  margin: 0 auto;
}

.track-form input {
  flex: 1 1 260px;
  padding: 14px 18px;
  border: 1px solid #dbe3ea;
  border-radius: 50px;
  font-size: 14px;
}

.track-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.track-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.track-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.3);
}

.track-iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media(min-width: 768px) {
  .track-iframe { height: 700px; }
}

.comparison-section { background: #fff; }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.comparison-table th, .comparison-table td { padding: 14px 18px; border: 1px solid #e2e8f0; text-align: left; }
.comparison-table th { background: #024c80; color: #fff; }
.comparison-table tr:nth-child(even) { background: #f8fafc; }

.coverage-section { background: #f0f4f8; }
.coverage-map { border-radius: 12px; overflow: hidden; margin-bottom: 24px; }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.coverage-city { background: #fff; padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; color: #024c80; box-shadow: 0 2px 4px rgba(0,0,0,0.04); }

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail-section {
  background: var(--off-white);
  padding: 80px 0;
}

.service-detail-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.service-detail-header {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-deep) 100%);
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.service-detail-header h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-detail-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-brand-tag {
  display: inline-block;
  background: rgba(46, 204, 113, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 40px;
}

.service-detail-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.service-detail-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-detail-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.service-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-detail-block h4 {
  color: var(--dark-blue);
  font-size: 1.2rem;
  margin: 0;
}

.service-detail-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-block li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #475569;
  line-height: 1.6;
}

.service-detail-block li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.service-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  margin-top: 40px;
  box-shadow: var(--shadow);
}

.service-cta h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-cta .submit-btn {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
}

.service-cta .submit-btn:hover {
  background: var(--off-white);
  color: var(--dark-blue);
}

@media (max-width: 768px) {
  .service-detail-header { padding: 40px 24px; }
  .service-detail-header h2 { font-size: 1.6rem; }
  .service-detail-grid { padding: 24px; grid-template-columns: 1fr; }
}

.calculator-card { max-width: 600px; margin: 0 auto; background: #fff; padding: 32px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.calc-row { margin-bottom: 18px; }
.calc-row label { display: block; font-weight: 600; margin-bottom: 6px; color: #334155; }
.calc-row input, .calc-row select { width: 100%; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 6px; }
.calc-result { margin-top: 20px; padding: 20px; background: #f0f9ff; border-radius: 8px; text-align: center; }

.tracking-section { background: #f8fafc; }
.tracking-form { max-width: 600px; margin: 0 auto 30px; display: flex; gap: 12px; }
.tracking-form input { flex: 1; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; }
.tracking-result { max-width: 700px; margin: 0 auto; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.tracking-timeline { position: relative; padding-left: 24px; border-left: 3px solid #e2e8f0; }
.tracking-step { position: relative; margin-bottom: 20px; opacity: 0.5; }
.tracking-step.done { opacity: 1; }
.tracking-step::before { content: ''; position: absolute; left: -30px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: #cbd5e1; }
.tracking-step.done::before { background: #22c55e; }
.step-date { font-size: 0.85rem; color: #64748b; margin-bottom: 4px; }

.floating-cta { position: fixed; bottom: 24px; z-index: 999; display: flex; gap: 10px; align-items: center; }
.floating-right { right: 24px; }
.floating-left { left: 24px; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 50px; color: #fff; text-decoration: none; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.05); }
.float-btn.call { background: #024c80; }
.float-btn.whatsapp { background: #25d366; }

.shipment-ticker-bar { background: #024c80; color: #fff; padding: 10px 0; font-size: 0.95rem; overflow: hidden; }
.shipment-ticker-bar .container { display: flex; align-items: center; gap: 16px; }
.ticker-label { font-weight: 700; white-space: nowrap; }
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track { display: inline-flex; gap: 40px; white-space: nowrap; animation: ticker 25s linear infinite; }
.ticker-item small { opacity: 0.8; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

.booking-form { max-width: 700px; margin: 0 auto; }
.booking-form .form-group { margin-bottom: 18px; }
.booking-form label { display: block; font-weight: 600; margin-bottom: 6px; }
.booking-form input, .booking-form textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; }

/* ============================================================
   LEGACY HTML BLOCK NORMALIZATION
   Makes old Bootstrap/HTML content dumped into Custom HTML
   blocks inherit theme fonts, colors and spacing.
   ============================================================ */

.html-block-section,
.html-block-section .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.html-block-section h1,
.html-block-section h2,
.html-block-section h3,
.html-block-section h4,
.html-block-section h5,
.html-block-section h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.25;
}

.html-block-section p,
.page-content p,
.html-block-section li,
.page-content li {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.html-block-section a,
.page-content a {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 500;
}

.html-block-section a:hover,
.page-content a:hover {
  color: var(--green);
  text-decoration: underline;
}

.html-block-section .section-tittle,
.page-content .section-tittle,
.html-block-section .section-title,
.page-content .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.html-block-section .section-tittle span,
.page-content .section-tittle span,
.html-block-section .section-title span,
.page-content .section-title span {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(46, 204, 113, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.html-block-section .section-tittle h2,
.page-content .section-tittle h2,
.html-block-section .section-title h2,
.page-content .section-title h2 {
  font-size: 34px;
  color: var(--navy);
}

.html-block-section .text-center,
.page-content .text-center { text-align: center; }

/* Service / category cards */
.categories-area,
.services-area,
.about-area,
.service-section {
  padding: 80px 0;
}

.single-cat,
.service-card-legacy {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 24px;
}

.single-cat:hover,
.service-card-legacy:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.cat-icon,
.service-icon-legacy {
  width: 70px;
  height: 70px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--green);
  transition: var(--transition);
}

.single-cat:hover .cat-icon,
.service-card-legacy:hover .service-icon-legacy {
  background: var(--green);
  color: #fff;
}

.cat-cap h5,
.service-card-legacy h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}

.cat-cap h5 a,
.service-card-legacy h5 a {
  color: var(--navy);
}

.cat-cap p,
.service-card-legacy p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Testimonials */
.testimonial-area {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 36, 63, 0.85);
  z-index: 0;
}

.testimonial-area > .container { position: relative; z-index: 1; }

.testimonial-area .section-tittle span {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.testimonial-area .section-tittle h2 { color: #fff; }

.single-testimonial {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.testimonial-top-cap p {
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.testimonial-top-cap p::before {
  content: '"';
  font-size: 28px;
  color: var(--orange);
  margin-right: 6px;
  line-height: 1;
}

.testimonial-founder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-text span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.testimonial-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: #fff;
}

.testimonial-form h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 132, 0, 0.3);
}

/* Contact / generic forms inside html blocks */
.contact-section,
.contact-form,
.booking-form-legacy {
  padding: 60px 0;
}

.contact-section input,
.contact-section textarea,
.booking-form-legacy input,
.booking-form-legacy textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-section input:focus,
.contact-section textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.contact-section {
  background: var(--off-white);
}

.contact-section .container > .row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-section .container > .row::before,
.contact-section .container > .row::after {
  content: none;
}

.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

.contact-section iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.form-contact {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-contact .row {
  display: grid;
  gap: 0 20px;
}

.form-contact .col-sm-6 {
  grid-column: span 1;
}

.form-contact .col-12,
.form-contact .form-group.mt-3 {
  grid-column: 1 / -1;
}

.button-contactForm,
.contact-section button[type="submit"],
.contact-form button[type="submit"] {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.button-contactForm:hover,
.contact-section button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.3);
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon i {
  font-size: 16px;
}

.contact-info .media-body h3,
.contact-info .media-body p {
  font-size: 15px;
  color: var(--dark-blue);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.html-block-section .page-section,
.page-content .page-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.html-block-section .about-caption,
.page-content .about-caption {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.html-block-section .about-caption p,
.page-content .about-caption p {
  color: var(--dark-blue);
  margin-bottom: 12px;
  line-height: 1.7;
}

.html-block-section .page-section ul,
.page-content .page-section ul,
.html-block-section .about-caption ul,
.page-content .about-caption ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.html-block-section .page-section li,
.page-content .page-section li,
.html-block-section .about-caption li,
.page-content .about-caption li {
  margin-bottom: 10px;
  color: #475569;
  line-height: 1.6;
}

/* Bootstrap-style row/column fallbacks for legacy service/city pages */
.html-block-section .page-section .row,
.page-content .page-section .row,
.html-block-section .about-caption .row,
.page-content .about-caption .row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.html-block-section [class*="col-"],
.page-content [class*="col-"] {
  grid-column: span 12;
}

.html-block-section .col-md-6,
.html-block-section .col-sm-6,
.page-content .col-md-6,
.page-content .col-sm-6 {
  grid-column: span 6;
}

.html-block-section .col-md-4,
.page-content .col-md-4 {
  grid-column: span 4;
}

.html-block-section .col-md-3,
.page-content .col-md-3,
.html-block-section .col-lg-3,
.page-content .col-lg-3 {
  grid-column: span 3;
}

.html-block-section .col-lg-8,
.page-content .col-lg-8 {
  grid-column: span 8;
}

.html-block-section .offset-lg-1,
.page-content .offset-lg-1 {
  margin-left: 8.333%;
}

@media (max-width: 768px) {
  .html-block-section .page-section .row > [class*="col-"],
  .page-content .page-section .row > [class*="col-"],
  .html-block-section .about-caption .row > [class*="col-"],
  .page-content .about-caption .row > [class*="col-"] {
    grid-column: span 12;
    margin-left: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .html-block-section,
  .html-block-section .container,
  .categories-area,
  .services-area,
  .about-area,
  .testimonial-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .html-block-section .section-tittle h2,
  .page-content .section-tittle h2 {
    font-size: 26px;
  }

  .single-cat,
  .service-card-legacy { padding: 24px 16px; }
}
