/* =========================================================
   MATASHON HOSPITALITY SERVICES - ULTRA-PREMIUM STYLESHEET
   Refined Corporate Hospitality Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Color Palette */
  --navy: #07182E;
  --navy-deep: #051224;
  --navy-2: #0B2545;
  --navy-3: #0B3B6E;
  --blue: #165CCC;
  --blue-light: #2575FC;
  --blue-accent: #1E60FF;
  --orange: #FF7A00;
  --orange-hover: #E66A00;
  --orange-light: #FFF2E6;
  --yellow: #FFB703;
  --gold: #FF9F0A;
  --gold-glow: rgba(255, 183, 3, 0.35);
  --ink: #0F1D2F;
  --ink-light: #2D3E53;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --light: #F8FAFC;
  --light-2: #F1F5F9;
  --white: #FFFFFF;
  --line: #E2E8F0;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(255, 183, 3, 0.3);

  /* Shadows & Elevations */
  --shadow-sm: 0 4px 12px rgba(7, 24, 46, 0.04);
  --shadow-md: 0 10px 30px rgba(7, 24, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(7, 24, 46, 0.12);
  --shadow-xl: 0 30px 70px rgba(7, 24, 46, 0.18);
  --shadow-gold: 0 12px 35px rgba(255, 122, 0, 0.22);
  --shadow-blue: 0 12px 35px rgba(22, 92, 204, 0.2);

  /* Borders & Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease-spring);
}

/* Base Reset & Typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background-color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--blue-accent));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Accessibility Skip Link */
.skip-link {
  position: fixed;
  left: -999px;
  top: 14px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 99999;
  box-shadow: var(--shadow-lg);
  transition: left 0.2s ease;
}

.skip-link:focus {
  left: 16px;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #D3E0F3;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar i {
  color: var(--yellow);
  font-size: 0.9rem;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: #E2E8F0;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* =========================================================
   SITE HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 35px rgba(7, 24, 46, 0.08);
  padding: 0;
}

.navbar {
  padding: 14px 0;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled .navbar {
  padding: 9px 0;
}

.navbar-brand img {
  width: 260px;
  height: auto;
  transition: width 0.3s ease;
}

.site-header.is-scrolled .navbar-brand img {
  width: 225px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy) !important;
  padding: 0.65rem 1rem !important;
  position: relative;
  border-radius: var(--radius-full);
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-spring);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--blue-accent) !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  padding: 0.85rem 1.6rem;
  border-width: 1.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s var(--ease-spring);
}

.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg,
      transparent 30%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 70%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.75s ease;
  pointer-events: none;
  z-index: 1;
}

.btn:hover::before {
  transform: rotate(25deg) translateX(100%);
}

.btn-brand {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9000 100%);
  border-color: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.28);
}

.btn-brand:hover {
  background: linear-gradient(135deg, #F06E00 0%, #E67E00 100%);
  border-color: #E66A00;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.38);
}

.btn-dark-brand {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
  color: #FFFFFF;
  border-color: var(--navy-2);
  box-shadow: 0 10px 25px rgba(11, 59, 110, 0.22);
}

.btn-dark-brand:hover {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #FFFFFF;
  border-color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(7, 24, 46, 0.32);
}

.btn-outline-brand {
  border-color: var(--navy-3);
  color: var(--navy-3);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--navy-3);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--navy-deep);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

/* =========================================================
   SECTION HEADINGS & KICKERS
   ========================================================= */
.section-padding {
  padding: 100px 0;
}

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

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  background: rgba(255, 122, 0, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 122, 0, 0.18);
}

.section-kicker.kicker-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--yellow);
}

.section-kicker .kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.section-title {
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0.5rem 0 1.2rem;
}

.section-title span {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title.text-white span {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFA800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  height: min(780px, calc(100vh - 44px));
  min-height: 620px;
  position: relative;
  background: var(--navy-deep);
}

.heroSwiper,
.hero-slide {
  height: 100%;

}

.hero-slide {
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(5, 18, 36, 0.95) 0%,
      rgba(7, 30, 60, 0.85) 45%,
      rgba(7, 30, 60, 0.45) 75%,
      rgba(5, 18, 36, 0.3) 100%);
  z-index: 1;
}

.hero-caption {
  max-width: 760px;
  color: #FFFFFF;
  padding: 3.5rem 0;
  position: relative;
  z-index: 3;
}

.hero-caption .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.hero-caption h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1.4rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.hero-caption h1 span {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-caption p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 640px;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Floating Trust Badges on Hero */
.hero-floating-badge {
  position: absolute;
  right: 5%;
  bottom: 18%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {

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

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

.hero-floating-badge .badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

.hero-floating-badge strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-floating-badge span {
  font-size: 0.78rem;
  color: #CBD5E1;
  font-weight: 600;
}

/* Swiper Custom Navigation */
.swiper-button-prev,
.swiper-button-next {
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 24, 46, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  z-index: 4;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

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

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

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



/* Swiper Active Slide Dynamic Entrance Animations */
.hero-slide.swiper-slide-active .hero-caption .eyebrow {
  animation: heroSlideDown 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

.hero-slide.swiper-slide-active .hero-caption h1 {
  animation: heroSlideRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.22s;
}

.hero-slide.swiper-slide-active .hero-caption p {
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.36s;
}

.hero-slide.swiper-slide-active .hero-caption .d-flex {
  animation: heroSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.48s;
}

.hero-slide.swiper-slide-active .hero-floating-badge {
  animation: heroSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) both, badgeFloat 6s ease-in-out infinite 0.9s;
  animation-delay: 0.4s;
}

@keyframes heroSlideRight {
  0% {
    opacity: 0;
    transform: translate3d(-70px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideLeft {
  0% {
    opacity: 0;
    transform: translate3d(70px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 45px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -35px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/* =========================================================
   HERO SERVICE STRIP
   ========================================================= */
.hero-service-strip {
  position: relative;
  margin-top: -30px;
  z-index: 10;
}

.strip-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(7, 24, 46, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 14px;
  min-height: 80px;
  border-right: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  transition: var(--transition);
  background: #FFFFFF;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item i {
  font-size: 1.35rem;
  color: var(--orange);
  transition: transform 0.3s ease, color 0.3s ease;
}

.strip-item:hover {
  background: var(--light);
  color: var(--blue-accent);
}

.strip-item:hover i {
  transform: scale(1.2) rotate(6deg);
  color: var(--blue-accent);
}

/* =========================================================
   DYNAMIC COUNTER SECTION
   ========================================================= */
.counter-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12), transparent 70%);
  right: -150px;
  top: -200px;
  pointer-events: none;
}

.counter-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.counter-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.counter-item:last-child {
  border-right: none;
}

.counter-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.counter-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.2) 0%, rgba(255, 183, 3, 0.15) 100%);
  border: 1px solid rgba(255, 183, 3, 0.35);
  color: var(--yellow);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.counter-item:hover .counter-icon-wrap {
  transform: scale(1.12);
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
}

.counter-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.counter-number span.counter-suffix {
  color: var(--yellow);
  font-size: 1.8rem;
}

.counter-label {
  font-size: 0.82rem;
  color: #CBD5E1;
  font-weight: 600;
  line-height: 1.3;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-home {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.about-home::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 92, 204, 0.06), transparent 70%);
  right: -100px;
  top: -100px;
  pointer-events: none;
}

.about-visual {
  min-height: 540px;
  position: relative;
}

.about-grid-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 7px solid #FFFFFF;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease;
}

.about-grid-img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 30px 70px rgba(7, 24, 46, 0.22);
}

.about-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-one {
  left: 0;
  top: 30px;
  width: 58%;
  height: 340px;
  z-index: 1;
}

.img-two {
  right: 0;
  top: 0;
  width: 48%;
  height: 275px;
  z-index: 2;
}

.img-three {
  right: 10%;
  bottom: 0;
  width: 52%;
  height: 260px;
  z-index: 3;
}

.about-badge {
  position: absolute;
  left: 45%;
  bottom: 25px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #FFFFFF;
  border: 2px solid rgba(255, 183, 3, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: 0 20px 45px rgba(7, 24, 46, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
}

.about-badge i {
  font-size: 2rem;
  color: var(--yellow);
}

.about-badge strong {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-badge span {
  font-size: 0.74rem;
  color: #CBD5E1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.8rem 0;
}

.feature-pills span {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-pills span i {
  color: var(--orange);
  font-size: 1rem;
}

.feature-pills span:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  color: var(--orange);
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.service-section {
  background: #FFFFFF;
  position: relative;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.3);
}

.service-img-wrap {
  height: 235px;
  position: relative;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-spring);
}

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

.service-category-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(7, 24, 46, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.service-number {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 0.84rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(255, 183, 3, 0.4);
  z-index: 2;
}

.service-card-body {
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-floating-icon {
  position: absolute;
  right: 24px;
  top: -26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9000 100%);
  color: #FFFFFF;
  border: 4px solid #FFFFFF;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-floating-icon {
  transform: scale(1.12) rotate(10deg);
  background: linear-gradient(135deg, var(--blue-accent) 0%, var(--navy-3) 100%);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.service-features-list li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-features-list li i {
  color: var(--orange);
  font-size: 0.9rem;
}

.service-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.service-card-action a {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-action a:hover {
  color: var(--orange);
}

.service-card-action a i {
  transition: transform 0.3s ease;
}

.service-card-action a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   PROCESS WORKFLOW SECTION
   ========================================================= */
.process-section {
  background: linear-gradient(180deg, var(--light) 0%, #FFFFFF 100%);
  position: relative;
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.3);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.step-badge {
  font-size: 1.75rem;
  font-weight: 900;
  color: rgba(11, 59, 110, 0.15);
  font-family: inherit;
  line-height: 1;
}

.process-step-card:hover .step-badge {
  color: var(--orange);
}

.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 92, 204, 0.08) 0%, rgba(255, 122, 0, 0.08) 100%);
  color: var(--navy-3);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border: 1px solid rgba(11, 59, 110, 0.1);
  transition: all 0.3s ease;
}

.process-step-card:hover .step-icon-wrap {
  background: linear-gradient(135deg, var(--navy-3), var(--blue-accent));
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.08);
}

.process-step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.process-step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   WHY US SECTION
   ========================================================= */
.why-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
  left: -200px;
  bottom: -200px;
  pointer-events: none;
}

.why-card {
  height: 100%;
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease-spring), background 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 183, 3, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
  transition: transform 0.3s ease;
}

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

.why-card h3 {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: #CBD5E1;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   PARALLAX CTAS
   ========================================================= */
.parallax-cta {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  background-attachment: fixed;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(5, 18, 36, 0.96) 0%,
      rgba(7, 30, 60, 0.82) 50%,
      rgba(11, 59, 110, 0.55) 100%);
}

.cta-content {
  max-width: 780px;
  color: #FFFFFF;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 650px;
  margin-bottom: 2rem;
}

.mini-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 75px 0;
  color: #FFFFFF;
}

.mini-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(5, 18, 36, 0.96) 0%,
      rgba(11, 59, 110, 0.75) 100%);
}

.mini-cta h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

/* =========================================================
   ENQUIRY & LEAD FORM SECTION
   ========================================================= */
.enquiry-section {
  background: var(--light);
  position: relative;
}

.enquiry-intro {
  height: 100%;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-2) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.enquiry-intro::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15), transparent 70%);
  right: -100px;
  bottom: -100px;
  pointer-events: none;
}

.enquiry-intro h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1rem;
}

.enquiry-intro p {
  color: #CBD5E1;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-mini-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-mini {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.contact-mini:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 183, 3, 0.3);
}

.contact-mini i {
  font-size: 1.5rem;
  color: var(--yellow);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 183, 3, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-mini small {
  display: block;
  color: #94A3B8;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-mini strong {
  font-size: 1.05rem;
  color: #FFFFFF;
}

/* Interactive Lead Form */
.lead-form-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-xl);
}

.lead-form-header {
  margin-bottom: 1.75rem;
}

.lead-form-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.lead-form-header p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.service-pills-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.service-pill-btn {
  background: var(--light);
  border: 1.5px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.service-pill-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #FFFFFF;
}

.service-pill-btn.active {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--blue-accent) 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(22, 92, 204, 0.25);
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: var(--radius-md);
  border: 1.5px solid #DCE4EF;
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.14);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  background: #FFFFFF;
  position: relative;
}

.faq-accordion .accordion-item {
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(22, 92, 204, 0.3) !important;
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  padding: 22px 24px;
  box-shadow: none !important;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--blue-accent);
  background: #F8FAFF;
}

.faq-accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(22, 92, 204, 0.08);
  color: var(--blue-accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-accordion-icon {
  background: var(--blue-accent);
  color: #FFFFFF;
}

.accordion-body {
  color: var(--ink-light);
  font-size: 0.94rem;
  line-height: 1.7;
  padding: 0 24px 24px 74px;
}

/* =========================================================
   SERVICE EXPECTATIONS / QUALITY ASSURANCE
   ========================================================= */
.expect-section {
  background: var(--light);
}

.expect-card {
  height: 100%;
  padding: 38px 30px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.expect-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.3);
}

.expect-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 59, 110, 0.08) 0%, rgba(255, 122, 0, 0.08) 100%);
  color: var(--navy-3);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border: 1px solid rgba(11, 59, 110, 0.1);
  transition: all 0.3s ease;
}

.expect-card:hover .expect-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.expect-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.expect-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   PAGE HEADER (ABOUT, SERVICES, CONTACT)
   ========================================================= */
.page-header {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: #FFFFFF;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(5, 18, 36, 0.95) 0%,
      rgba(7, 30, 60, 0.85) 50%,
      rgba(11, 59, 110, 0.5) 100%);
  background: linear-gradient(90deg, rgba(5, 18, 36, 0.95) 10%, rgba(7, 30, 60, 0.85) 30%, rgb(11 59 110 / 39%) 100%);
    }


.page-header h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 1rem;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #E2E8F0;
  font-weight: 700;
  font-size: 0.9rem;
}

.breadcrumb-item a:hover {
  color: var(--yellow);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--yellow);
}

/* =========================================================
   CONTACT DETAILS & GUJARAT MAP
   ========================================================= */
.contact-details {
  background: var(--light);
}

.detail-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 0, 0.3);
}

.detail-card>i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: inline-block;
}

.detail-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-section {
  padding: 0 0 100px;
  background: var(--light);
}

.map-placeholder {
  min-height: 400px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #EAF2FB 0%, #FFFFFF 100%);
  border: 2px dashed #B7C9DF;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.map-placeholder i {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.map-placeholder h2 {
  font-weight: 800;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.gujarat-city-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 750px;
}

.gujarat-city-badges span {
  /* background: #FFFFFF;
  border: 1px solid var(--line); */
  padding: 6px 14px;
  /* border-radius: var(--radius-full); */
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  /* box-shadow: 0 2px 8px rgba(7, 24, 46, 0.04); */
  display: flex;
  align-items: center;
  gap: 6px;

}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #94A3B8;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 92, 204, 0.06), transparent 70%);
  left: -150px;
  top: -150px;
  pointer-events: none;
}

.footer-logo {
  width: 275px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 420px;
}

.site-footer h3 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 99px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.site-footer li i {
  color: var(--yellow);
  margin-right: 8px;
}

.site-footer a {
  color: #CBD5E1;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  color: #FFFFFF;
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.8rem;
  color: #64748B;
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 700;
}

/* =========================================================
   FLOATING ACTIONS DOCK
   ========================================================= */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  position: relative;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  color: #FFFFFF;
}

.float-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  animation: pulseWhatsapp 3s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.float-btn.call {
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.35);
}

.float-btn.notify {
  background: var(--navy-3);
}

.float-btn.top {
  background: #FFFFFF;
  color: var(--navy-deep);
  opacity: 0;
  pointer-events: none;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
}

.float-btn.top.show {
  opacity: 1;
  pointer-events: auto;
}

.float-btn.top svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.float-btn.top circle {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.1s linear;
}

/* =========================================================
   AOS ANIMATIONS & MOTION ENHANCEMENTS
   ========================================================= */
[data-aos] {
  will-change: transform, opacity;
}


/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    margin-top: 14px;
    border: 1px solid var(--line);
  }

  .hero-section {
    height: 680px;
    min-height: 580px;
  }

  .hero-floating-badge {
    display: none;
  }

  .hero-caption {
    padding: 2.5rem 0;
  }

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

  .counter-item:nth-child(2) {
    border-right: none;
  }

  .counter-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-visual {
    min-height: 480px;
  }

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

  .parallax-cta {
    background-attachment: scroll;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    width: 215px;
  }

  .hero-section {
    height: 640px;
  }

  .hero-caption h1 {
    font-size: 2.6rem;
  }

  .hero-caption p {
    font-size: 1rem;
  }

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

  .hero-service-strip {
    margin-top: 0;
  }

  .strip-container {
    border-radius: 0;
  }

  .strip-item {
    font-size: 0.78rem;
    min-height: 65px;
    padding: 12px 6px;
    border-bottom: 1px solid var(--line);
  }

  .counter-wrap {
    grid-template-columns: 1fr;
  }

  .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 20px;
  }

  .counter-item:last-child {
    border-bottom: none;
  }

  .about-visual {
    min-height: 420px;
  }

  .img-one {
    width: 65%;
    height: 260px;
  }

  .img-two {
    width: 48%;
    height: 210px;
  }

  .img-three {
    width: 54%;
    height: 220px;
    right: 4%;
  }

  .about-badge {
    left: 40%;
    bottom: 15px;
    padding: 12px 18px;
  }

  .lead-form-card,
  .enquiry-intro {
    padding: 28px 20px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }

  .page-header {
    min-height: 320px;
  }

  .page-header h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-caption h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-visual {
    min-height: 380px;
  }

  .img-one {
    height: 220px;
  }

  .img-two {
    height: 180px;
  }

  .img-three {
    height: 190px;
  }

  .footer-logo {
    width: 230px;
  }
}

/* =========================================================
   GALLERY SECTION & LIGHTBOX IMAGE VIEWER
   ========================================================= */
.gallery-section {
  background: #FFFFFF;
  position: relative;
}

.gallery-page-section {
  padding: 80px 0 100px;
}

/* Category Filter Tabs */
.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-filter-btn {
  background: var(--light);
  color: var(--navy);
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.gallery-filter-btn i {
  color: var(--orange);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.gallery-filter-btn:hover {
  background: #FFFFFF;
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-3) 100%);
  color: #FFFFFF;
  border-color: var(--navy-2);
  box-shadow: var(--shadow-md);
}

.gallery-filter-btn.active i {
  color: var(--yellow);
}

.gallery-filter-btn .badge-count {
  font-size: 0.76rem;
  opacity: 0.75;
}

/* Gallery Cards Grid */
.gallery-grid {
  transition: all 0.4s ease;
}

.gallery-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.is-hidden {
  display: none !important;
  opacity: 0;
  transform: scale(0.92);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  outline: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring), border-color 0.4s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.4);
}

.gallery-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #07182E;
}

.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-thumb img {
  transform: scale(1.09);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(7, 24, 46, 0.15) 0%,
      rgba(7, 24, 46, 0.4) 40%,
      rgba(5, 18, 36, 0.95) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.9;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
  background: linear-gradient(180deg,
      rgba(7, 24, 46, 0.25) 0%,
      rgba(7, 24, 46, 0.6) 40%,
      rgba(5, 18, 36, 0.98) 100%);
}

.gallery-zoom-icon {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s var(--ease-spring);
}

.gallery-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(255, 122, 0, 0.4);
}

.gallery-card-content {
  transform: translateY(6px);
  transition: transform 0.35s var(--ease-spring);
}

.gallery-card:hover .gallery-card-content {
  transform: translateY(0);
}

.gallery-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 183, 3, 0.16);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.gallery-card-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gallery-card-desc {
  color: #CBD5E1;
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.85;
}

/* =========================================================
   LIGHTBOX IMAGE VIEWER MODAL
   ========================================================= */
.matashon-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.matashon-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 36, 0.96);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.lightbox-dialog {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  padding: 16px 24px;
}

/* Lightbox Header Bar */
.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-category {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  color: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.lightbox-counter {
  color: #E2E8F0;
  font-size: 0.84rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--yellow);
  transform: scale(1.08);
}

.lightbox-close-btn {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #FFA5A5;
}

.lightbox-close-btn:hover {
  background: #EF4444;
  border-color: #EF4444;
  color: #FFFFFF;
}

/* Lightbox Stage (Image & Nav Arrows) */
.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 10px auto;
  gap: 16px;
  min-height: 0;
}

.lightbox-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7, 24, 46, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-spring);
  z-index: 5;
}

.lightbox-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFFFFF;
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

.lightbox-viewport {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lightbox-img-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 58vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.35s ease;
  user-select: none;
}

.lightbox-image.is-animating {
  opacity: 0;
  transform: scale(0.96);
}

.lightbox-image.is-zoomed {
  max-height: 82vh;
  max-width: 96vw;
  cursor: zoom-out;
}

.lightbox-spinner {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(5, 18, 36, 0.4);
  border-radius: var(--radius-md);
}

.lightbox-spinner.is-loading {
  display: grid;
}

/* Lightbox Footer & Thumbnail Strip */
.lightbox-footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-caption {
  text-align: center;
  max-width: 850px;
}

.lightbox-caption h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.lightbox-caption p {
  color: #CBD5E1;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

.lightbox-thumbs-container {
  width: 100%;
  overflow-x: auto;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lightbox-thumbs-container::-webkit-scrollbar {
  height: 4px;
}

.lightbox-thumbs-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
}

.lightbox-thumbs-track {
  display: inline-flex;
  gap: 8px;
  padding: 2px 4px;
}

.lightbox-thumb {
  width: 58px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.45;
  cursor: pointer;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.5);
  transform: scale(1.06);
}

/* Lightbox Mobile Adjustments */
@media (max-width: 767.98px) {
  .lightbox-dialog {
    padding: 12px 14px;
  }

  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .lightbox-image {
    max-height: 50vh;
    max-width: 94vw;
  }

  .lightbox-caption h4 {
    font-size: 1rem;
  }

  .lightbox-caption p {
    font-size: 0.78rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .lightbox-thumb {
    width: 48px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}