/* ==========================================================================
   Malleshwari Safety Nets - Master Stylesheet
   Design: Deep Navy, Vibrant Orange, Clean White & Modern Accents
   ========================================================================== */

:root {
  --primary-navy: #0b1e36;
  --secondary-blue: #15447a;
  --accent-orange: #ff7a00;
  --accent-orange-hover: #e06800;
  --accent-yellow: #fbbb04;
  --whatsapp-color: #25d366;
  --bg-light: #f5f8fa;
  --bg-white: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #5d6b82;
  --text-light: #f0f4f8;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* 1. Global Reset & Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-dark);
  overflow-x: clip;
}

body {
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* 2. Layout & Typography */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 90px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--primary-navy); }
.text-white { color: var(--bg-white) !important; }
.text-orange { color: var(--accent-orange) !important; }
.text-light-gray { color: #cbd5e1 !important; }
.text-center { text-align: center; }

.sub-heading {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto 50px auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* 3. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 122, 0, 0.45);
}

.btn-secondary {
  background-color: var(--secondary-blue);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: #0e335f;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
}

/* 4. Sticky Navbar */
.navbar-wrapper {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 75px;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 2px 12px rgba(11, 30, 54, 0.04);
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
}

.navbar-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-bottom-color: rgba(21, 68, 122, 0.12);
  box-shadow: 0 8px 30px rgba(11, 30, 54, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1350px;
  min-height: 75px;
  margin: 0 auto;
  padding: 8px 20px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 5px 10px rgba(21, 68, 122, .12));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
}

.dropdown-item {
  position: relative;
  padding: 8px 0;
}

.nav-link {
  position: relative;
  font-size: .86rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 11px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.dropdown-item:hover .nav-link,
.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange);
  background: rgba(255, 122, 0, .055);
  border-color: rgba(255, 122, 0, .10);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-item:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-cta-wrapper {
  flex: 0 0 auto;
}

.nav-cta-wrapper .btn {
  box-shadow: 0 8px 20px rgba(255, 122, 0, .24);
}

/* 5. Animated Dropdowns & Right Alignment */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
  z-index: 1000;
}

.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-list > .dropdown-item:nth-last-child(-n+4) .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown-menu.single-column {
  flex-direction: column;
  min-width: 200px;
  gap: 6px;
}

.dropdown-menu.location-grid {
  width: max-content;
  max-width: 680px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.dropdown-menu.location-grid::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu.location-grid::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 200px;
}

.dropdown-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-column a,
.dropdown-menu.single-column a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3f4753;
  padding: 7px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition);
}

.dropdown-column a:hover,
.dropdown-menu.single-column a:hover {
  color: var(--primary-navy);
  background-color: var(--bg-light);
  transform: translateX(4px);
}

.dropdown-column a i,
.dropdown-menu.single-column a i {
  color: var(--accent-orange);
  font-size: 0.95rem;
}

/* 6. Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: var(--transition);
}




/* 7. Service Hero Section */


/* =========================================================
   RESPONSIVE SERVICE HERO - ENHANCED VERSION
   Desktop: image + detailed service content
   Mobile: full-screen image + short content + Call/WhatsApp
========================================================= */

:root {
  --hero-navy: #07111f;
  --hero-navy-2: #0b1b2f;
  --hero-orange: #ff8a00;
  --hero-orange-dark: #ed7400;
  --hero-green: #16c873;
  --hero-white: #ffffff;
  --hero-border: rgba(255, 255, 255, 0.16);
}

/* -----------------------------
   MAIN HERO
----------------------------- */

.service-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 760px;
  height: min(760px, 88vh);
  overflow: hidden;
  background: var(--hero-navy);
  color: var(--hero-white);
}

.service-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

/* -----------------------------
   SLIDES
----------------------------- */

.service-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: scale(1.025);

  transition:
    opacity 0.75s ease,
    transform 1.2s cubic-bezier(.22, .61, .36, 1),
    visibility 0.75s ease;
}

.service-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

/* -----------------------------
   IMAGE
----------------------------- */

.slide-picture {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;
  width: 100%;
  height: 100%;

  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--hero-navy),
    var(--hero-navy-2)
  );
}

.slide-picture source {
  display: none;
}

.slide-picture img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.001);

  transition:
    transform 6s cubic-bezier(.16, 1, .3, 1),
    filter 0.8s ease;

  will-change: transform;
}

.service-slide.active .slide-picture img {
  transform: scale(1.045);
}

/* -----------------------------
   IMAGE GRADIENT / OVERLAY
----------------------------- */

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(3, 11, 22, 0.97) 0%,
      rgba(3, 11, 22, 0.87) 27%,
      rgba(3, 11, 22, 0.57) 49%,
      rgba(3, 11, 22, 0.22) 72%,
      rgba(3, 11, 22, 0.10) 100%
    );

  transition: opacity 0.7s ease;
}

/* subtle bottom depth */
.service-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;

  height: 34%;

  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

/* -----------------------------
   DECORATIVE GRAPHICS
----------------------------- */

.service-slide::before {
  content: "";

  position: absolute;

  width: 540px;
  height: 540px;

  top: -230px;
  right: -150px;

  z-index: 3;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(255,255,255,0.018),
    0 0 0 140px rgba(255,255,255,0.014),
    0 0 0 210px rgba(255,255,255,0.010);

  opacity: 0.8;

  pointer-events: none;

  animation: heroOrbit 22s linear infinite;
}

@keyframes heroOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* small light glows */
.service-slide .slide-content-wrap::before,
.service-slide .slide-content-wrap::after {
  content: "";
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(1px);
}

.service-slide .slide-content-wrap::before {
  width: 180px;
  height: 180px;

  left: -90px;
  bottom: 70px;

  background: rgba(255, 138, 0, 0.08);
}

.service-slide .slide-content-wrap::after {
  width: 120px;
  height: 120px;

  right: 15%;
  top: 13%;

  border: 1px solid rgba(255,255,255,0.08);
}

/* -----------------------------
   CONTENT WRAPPER
----------------------------- */

.slide-content-wrap {
  position: relative;
  z-index: 5;

  width: min(1180px, calc(100% - 48px));
  min-height: 100%;
  height: 100%;
  margin-inline: auto;

  display: flex;
  align-items: center;

  padding: 80px 0 120px;
}

/* -----------------------------
   DESKTOP CONTENT
----------------------------- */

.desktop-service-content {
  width: min(680px, 62%);

  color: #fff;

  opacity: 0;
  transform: translateY(26px);

  transition:
    opacity 0.75s ease 0.12s,
    transform 0.8s cubic-bezier(.22, .61, .36, 1) 0.12s;
}

.service-slide.active .desktop-service-content {
  opacity: 1;
  transform: translateY(0);
}

/* LABEL */

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;
  padding: 9px 15px;

  color: #fff;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2px;

  border: 1px solid var(--hero-border);
  border-radius: 999px;

  background: rgba(255,255,255,0.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 8px 30px rgba(0,0,0,0.14);
}

.service-label i {
  color: var(--hero-orange);
  font-size: 1.05rem;
}

/* TITLE */

.desktop-service-content h1 {
  max-width: 760px;

  margin: 0 0 22px;

  color: #fff;

  font-size: clamp(2.65rem, 4.15vw, 5rem);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -2.4px;
  text-wrap: balance;
}

.desktop-service-content h1 span {
  color: var(--hero-orange);

  text-shadow:
    0 8px 28px rgba(255,138,0,0.16);
}

/* DESCRIPTION */

.desktop-service-content p {
  max-width: 625px;

  margin: 0 0 27px;

  color: rgba(255,255,255,0.84);

  font-size: 1.05rem;
  line-height: 1.72;
}

/* SERVICE POINTS */

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;

  margin: 0 0 30px;
}

.service-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(255,255,255,0.94);

  font-size: 0.86rem;
  font-weight: 750;
}

.service-points i {
  color: #45e997;
  font-size: 1rem;
}

/* -----------------------------
   DESKTOP BUTTONS
----------------------------- */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 19px;

  border-radius: 11px;

  color: #fff;
  text-decoration: none;

  font-size: 0.93rem;
  font-weight: 800;

  border: 1px solid transparent;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

.hero-btn:focus-visible,
.slider-arrow:focus-visible,
.slider-dot:focus-visible {
  outline: 3px solid rgba(255,138,0,0.45);
  outline-offset: 3px;
}

/* quote */
.quote-btn {
  background: linear-gradient(
    135deg,
    #ff9b24,
    #ff7900
  );

  box-shadow:
    0 14px 34px rgba(255,138,0,0.23);
}

.quote-btn:hover {
  box-shadow:
    0 18px 40px rgba(255,138,0,0.30);
}

/* call */
.call-btn {
  border-color: rgba(255,255,255,0.23);

  background: rgba(255,255,255,0.10);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.call-btn:hover {
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.35);
}

/* whatsapp */
.whatsapp-btn {
  background: #16c873;

  box-shadow:
    0 14px 34px rgba(22,200,115,0.20);
}

.whatsapp-btn:hover {
  background: #10b566;

  box-shadow:
    0 18px 38px rgba(22,200,115,0.27);
}

/* -----------------------------
   MOBILE CONTENT DEFAULT
----------------------------- */

.mobile-service-content {
  display: none;
}

/* -----------------------------
   SLIDER NAVIGATION
----------------------------- */

.hero-slider-controls {
  position: absolute;

  left: 50%;
  bottom: 28px;

  z-index: 12;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.slider-arrow {
  width: 43px;
  height: 43px;

  flex: 0 0 43px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 1px solid rgba(255,255,255,0.23);
  border-radius: 50%;

  color: #fff;

  background: rgba(4,13,25,0.36);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  cursor: pointer;

  font-size: 1rem;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.slider-arrow:hover {
  transform: scale(1.08);

  background: var(--hero-orange);
  border-color: var(--hero-orange);
}

.slider-dots {
  min-height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;
}

.slider-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(255,255,255,0.42);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.slider-dot:hover {
  transform: scale(1.2);
}

.slider-dot.active {
  width: 28px;

  background: var(--hero-orange);
}

/* -----------------------------
   COUNTER
----------------------------- */

.hero-service-counter {
  position: absolute;

  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 30px;

  z-index: 12;

  display: flex;
  align-items: center;
  gap: 9px;

  color: #fff;
}

.current-slide-number {
  font-size: 1.2rem;
  font-weight: 850;
}

.total-slide-number {
  color: rgba(255,255,255,0.52);

  font-size: 0.78rem;
  font-weight: 700;
}

.counter-line {
  width: 38px;
  height: 1px;

  background: rgba(255,255,255,0.28);
}

/* -----------------------------
   TABLET
----------------------------- */

@media (max-width: 1100px) {

  .service-hero {
    min-height: 700px;
    height: 700px;
  }

  .slide-content-wrap {
    width: min(100% - 40px, 1050px);
  }

  .desktop-service-content {
    width: min(650px, 65%);
  }

  .desktop-service-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .desktop-service-content p {
    max-width: 560px;
  }

}

/* -----------------------------
   MOBILE
----------------------------- */

@media (max-width: 768px) {

  .service-hero {
    min-height: 100svh;
    height: 100svh;
    max-height: none;

    background: #07111f;
  }

  .service-slider {
    min-height: 100%;
  }

  .service-slide {
    min-height: 100%;
  }

  /* Separate mobile image positioning */
  .slide-picture img {
    object-position: center center;
    filter: saturate(1.02) contrast(1.02);
  }

  .service-slide.active .slide-picture img {
    transform: scale(1.035);
  }

  /* Mobile overlay */
  .slide-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 10, 20, 0.04) 0%,
        rgba(2, 10, 20, 0.10) 28%,
        rgba(2, 10, 20, 0.39) 54%,
        rgba(2, 10, 20, 0.92) 81%,
        rgba(2, 10, 20, 0.99) 100%
      );
  }

  .service-slide::after {
    height: 50%;

    background:
      linear-gradient(
        180deg,
        transparent,
        rgba(0,0,0,0.28)
      );
  }

  .service-slide::before {
    width: 320px;
    height: 320px;

    top: 70px;
    right: -190px;

    opacity: 0.52;
  }

  /* Hide desktop */
  .desktop-service-content {
    display: none;
  }

  /* Content */
  .slide-content-wrap {
    width: 100%;
    min-height: 100svh;
    height: 100%;

    display: flex;
    align-items: flex-end;

    padding:
      30px
      18px
      108px;
  }

  .mobile-service-content {
    width: 100%;

    display: block;

    opacity: 0;
    transform: translateY(24px);

    transition:
      opacity 0.65s ease 0.12s,
      transform 0.75s cubic-bezier(.22,.61,.36,1) 0.12s;
  }

  .service-slide.active .mobile-service-content {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-service-tag {
    display: inline-flex;
    align-items: center;

    margin-bottom: 11px;
    padding: 7px 12px;

    color: #fff;

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;

    background: rgba(255,138,0,0.92);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 0.71rem;
    font-weight: 850;
  }

  .mobile-service-content h2 {
    max-width: 620px;

    margin: 0 0 9px;

    color: #fff;

    font-size: clamp(2rem, 9vw, 3.25rem);
    line-height: 0.99;

    letter-spacing: -1.4px;

    text-wrap: balance;
  }

  .mobile-service-content h2 strong {
    display: block;

    color: #ff9a2a;

    text-shadow:
      0 8px 25px rgba(255,138,0,0.16);
  }

  .mobile-service-content p {
    max-width: 520px;

    margin: 0 0 17px;

    color: rgba(255,255,255,0.88);

    font-size: 0.88rem;
    line-height: 1.48;
  }

  /* Mobile buttons only Call + WhatsApp */
  .mobile-buttons {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 9px;
  }

  .mobile-buttons a {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 0 10px;

    border-radius: 11px;

    color: #fff;
    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 850;

    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .mobile-buttons a:active {
    transform: scale(0.97);
  }

  .mobile-call-btn {
    border: 1px solid rgba(255,255,255,0.24);

    background:
      rgba(255,255,255,0.13);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-whatsapp-btn {
    background:
      linear-gradient(
        135deg,
        #1bd57c,
        #0fb564
      );

    box-shadow:
      0 12px 28px rgba(22,200,115,0.22);
  }

  /* mobile nav */
  .hero-slider-controls {
    left: 50%;
    right: auto;

    bottom: 22px;

    width: auto;

    gap: 9px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    flex-basis: 36px;

    font-size: 0.85rem;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

  .slider-dot.active {
    width: 22px;
  }

  /* counter */
  .hero-service-counter {
    top: 20px;
    right: 17px;
    bottom: auto;

    padding: 7px 10px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;

    background: rgba(4,13,25,0.28);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .current-slide-number {
    font-size: 1rem;
  }

  .total-slide-number {
    font-size: 0.7rem;
  }

  .counter-line {
    width: 22px;
  }

}

/* -----------------------------
   SMALL MOBILE
----------------------------- */

@media (max-width: 420px) {

  .slide-content-wrap {
    padding:
      24px
      14px
      98px;
  }

  .mobile-service-content h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.4rem);
    letter-spacing: -1px;
  }

  .mobile-service-content p {
    font-size: 0.82rem;
  }

  .mobile-buttons a {
    min-height: 47px;

    border-radius: 10px;

    font-size: 0.85rem;
  }

  .hero-slider-controls {
    bottom: 18px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

}

/* -----------------------------
   SHORT PHONE HEIGHT
----------------------------- */

@media (max-height: 700px) and (max-width: 768px) {

  .slide-content-wrap {
    padding-bottom: 87px;
  }

  .mobile-service-tag {
    margin-bottom: 7px;
    padding: 5px 10px;
  }

  .mobile-service-content h2 {
    font-size: 1.78rem;
    margin-bottom: 7px;
  }

  .mobile-service-content p {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .mobile-buttons a {
    min-height: 43px;
  }

}

/* -----------------------------
   LANDSCAPE MOBILE
----------------------------- */

@media (max-width: 900px) and (max-height: 520px) {

  .service-hero {
    min-height: 560px;
    height: 100svh;
  }

  .slide-content-wrap {
    min-height: 560px;

    padding:
      26px
      22px
      75px;
  }

  .mobile-service-content {
    max-width: 620px;
  }

  .mobile-service-content h2 {
    font-size: 2rem;
  }

  .mobile-service-content p {
    max-width: 470px;
    margin-bottom: 10px;
  }

  .mobile-buttons {
    max-width: 430px;
  }

  .hero-slider-controls {
    bottom: 15px;
  }

}

/* -----------------------------
   REDUCED MOTION
----------------------------- */

@media (prefers-reduced-motion: reduce) {

  .service-slide,
  .service-slide::before,
  .slide-picture img,
  .desktop-service-content,
  .mobile-service-content,
  .slider-dot,
  .slider-arrow {
    animation: none !important;
    transition: none !important;
  }

}



/* ==========================================
   MALLLESHWARI SAFETY NETS
   OUR SERVICES - MODERN V3
   Palette: Indigo + Teal + Coral
========================================== */

.our-services-section {
  --ink: #1f2340;
  --ink-soft: #596078;
  --indigo: #5b55e8;
  --indigo-deep: #3932ad;
  --teal: #14a89a;
  --teal-deep: #087d72;
  --coral: #ff7568;
  --violet-soft: #eeecff;
  --teal-soft: #e8faf7;
  --page: #f6f8ff;
  --card: #ffffff;
  --border: #e5e8f5;
  --shadow: rgba(33, 39, 74, .09);

  position: relative;
  padding: 105px 0 115px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 7% 8%, rgba(91,85,232,.12), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(20,168,154,.10), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255,117,104,.07), transparent 28%),
    var(--page);
}

.our-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .6;
  background-image:
    radial-gradient(rgba(91,85,232,.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.our-services-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -230px;
  bottom: 80px;
  z-index: -1;
  border: 1px solid rgba(20,168,154,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(20,168,154,.025),
    0 0 0 130px rgba(91,85,232,.018);
  pointer-events: none;
}

.services-container {
  width: min(1380px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================================
   HEADER
========================================== */

.services-heading {
  max-width: 900px;
  margin: 0 auto 65px;
  text-align: center;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  margin-bottom: 18px;
  border: 1px solid rgba(91,85,232,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--indigo-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(45,50,100,.05);
}

/* No decorative lines around header text */
.services-eyebrow .eyebrow-line {
  display: none;
}

.services-heading h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
}

.services-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--indigo-deep) 42%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.services-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.85;
}

.services-heading p strong {
  color: var(--ink);
  font-weight: 850;
}

/* ==========================================
   GRID
========================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* ==========================================
   CARD
========================================== */

.service-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 35px var(--shadow);
  opacity: 0;
  transform: translateY(26px);
  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .4s ease,
    border-color .3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(135deg, transparent 15%, rgba(91,85,232,.0) 45%, rgba(20,168,154,.0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
}

.service-card.service-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.service-visible:hover {
  transform: translateY(-9px);
  border-color: rgba(91,85,232,.22);
  box-shadow: 0 26px 58px rgba(45,50,100,.14);
}

.service-card.service-visible:hover::before {
  opacity: 1;
}

/* ==========================================
   IMAGE
========================================== */

.service-image-box {
  position: relative;
  height: 252px;
  overflow: hidden;
  background: #e7eafd;
}

.service-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,26,56,.02) 22%, rgba(21,26,56,.08) 56%, rgba(21,26,56,.60) 100%);
  pointer-events: none;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .75s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}

.service-card.service-visible:hover .service-image-box img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.03);
}

.service-number {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 4;
  min-width: 48px;
  height: 31px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(24,27,57,.78);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(9px);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 1.2px;
}

/* ==========================================
   CONTENT - NO LINES
========================================== */

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 29px 28px 28px;
  min-height: 270px;
}

.service-card-content h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.45px;
}

/* Explicitly remove decorative lines below headings */
.service-card-content h3::after {
  content: none !important;
  display: none !important;
}

.service-card-content p {
  flex: 1;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.82;
}

.seo-keyword {
  color: var(--indigo-deep);
  font-weight: 850;
  padding: 1px 4px;
  border-radius: 5px;
  background: linear-gradient(180deg, transparent 25%, rgba(91,85,232,.13) 25%, rgba(91,85,232,.13) 88%, transparent 88%);
}

/* ==========================================
   BUTTON
========================================== */

.service-link {
  width: 100%;
  min-height: 50px;
  padding: 0 16px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-soft), #f5f7ff);
  color: var(--indigo-deep);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 900;
  transition: transform .25s ease, background .3s ease, color .25s ease, box-shadow .25s ease;
}

.text-arrow {
  font-size: 1.25rem;
  color: var(--teal-deep);
  transition: transform .25s ease, color .25s ease;
}

.service-link:hover {
  color: #fff;
  background: linear-gradient(120deg, var(--indigo-deep), var(--indigo) 48%, var(--teal));
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(65,60,190,.18);
}

.service-link:hover .text-arrow {
  color: #fff;
  transform: translateX(5px);
}

/* ==========================================
   CTA
========================================== */

.services-bottom-cta {
  position: relative;
  margin-top: 58px;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(110deg, #28225d 0%, #4d45b9 55%, #0e988a 100%);
  box-shadow: 0 22px 48px rgba(47,44,117,.20);
}

.services-bottom-cta::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -85px;
  top: -115px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.025);
}

.services-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.services-cta-content span {
  color: rgba(255,255,255,.72);
  font-size: .79rem;
  font-weight: 750;
}

.services-cta-content strong {
  color: #fff;
  font-size: 1.17rem;
  font-weight: 900;
}

.services-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-cta-btn {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  background: #ffffff;
  color: var(--indigo-deep);
  text-decoration: none;
  font-size: .83rem;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
}

.services-cta-btn-light {
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
}

.services-cta-btn-light:hover {
  background: rgba(255,255,255,.17);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-card-content {
    min-height: 255px;
  }
}

@media (max-width: 700px) {
  .our-services-section {
    padding: 72px 0 78px;
  }

  .services-container {
    width: min(100% - 22px, 560px);
  }

  .services-heading {
    margin-bottom: 42px;
  }

  .services-heading h2 {
    font-size: 2.08rem;
    letter-spacing: -1px;
  }

  .services-heading p {
    font-size: .91rem;
    line-height: 1.76;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card.service-visible:hover {
    transform: none;
  }

  .service-image-box {
    height: 225px;
  }

  .service-card-content {
    min-height: 0;
    padding: 26px 21px 25px;
  }

  .service-card-content h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
  }

  .service-card-content p {
    font-size: .92rem;
    line-height: 1.78;
    margin-bottom: 22px;
  }

  .services-bottom-cta {
    margin-top: 38px;
    padding: 22px 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .services-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services-cta-btn {
    width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 420px) {
  .services-container {
    width: calc(100% - 18px);
  }

  .services-heading h2 {
    font-size: 1.92rem;
  }

  .services-eyebrow {
    font-size: .67rem;
    letter-spacing: 1.7px;
  }

  .service-image-box {
    height: 205px;
  }

  .service-card-content {
    padding: 23px 18px 22px;
  }

  .service-link {
    min-height: 47px;
  }

  .services-cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-image-box img,
  .service-link,
  .text-arrow,
  .services-cta-btn {
    transition: none !important;
  }
}












/* ==========================================
   MALLESHWARI SAFETY NETS
   ABOUT SECTION
========================================== */

.ms-about-section {

  position: relative;

  padding: 110px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(22, 163, 114, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 95% 90%,
      rgba(30, 92, 170, 0.07),
      transparent 30%
    ),
    #f8fafc;

}


/* ==========================================
   CONTAINER
========================================== */

.ms-about-container {

  width:
    min(
      1380px,
      calc(100% - 50px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(430px, 0.9fr)
    minmax(0, 1.1fr);

  gap: 80px;

  align-items: center;

}


/* ==========================================
   LEFT VISUAL
========================================== */

.ms-about-visual {

  position: relative;

  padding: 16px;

}


/* ==========================================
   IMAGE CARD
========================================== */

.ms-about-image-card {

  position: relative;

  width: 100%;

  height: 620px;

  overflow: hidden;

  border-radius: 30px;

  background: #fff;

  border: 1px solid
    rgba(22,163,114,0.18);

  box-shadow:
    0 15px 30px
      rgba(14, 35, 57, 0.08),

    0 35px 90px
      rgba(14, 35, 57, 0.20),

    0 0 0 8px
      rgba(22,163,114,0.035);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;

}


.ms-about-image-card:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 20px 40px
      rgba(14,35,57,0.10),

    0 45px 100px
      rgba(14,35,57,0.25),

    0 0 0 10px
      rgba(22,163,114,0.045);

}


/* ==========================================
   IMAGE
========================================== */

.ms-about-image-card > img {

  width: 100%;

  height: 100%;

  display: block;

  min-height: 0 !important;

  object-fit: fill;

  object-position: center;

  transition:
    transform 0.9s
    cubic-bezier(.22,.61,.36,1);

}


.ms-about-image-card:hover > img {

  transform: scale(1.025);

}


/* ==========================================
   IMAGE OVERLAY
========================================== */

.ms-about-image-overlay {

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(5,20,35,0.02) 15%,
      rgba(5,20,35,0.04) 45%,
      rgba(5,20,35,0.72) 100%
    );

}


/* ==========================================
   TOP ACCENT
========================================== */

.ms-about-image-card::before {

  content: "";

  position: absolute;

  z-index: 4;

  top: 20px;

  left: 20px;

  width: 85px;

  height: 5px;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      #16a372 0%,
      #16a372 65%,
      #dba832 65%,
      #dba832 100%
    );

}


/* ==========================================
   TRUST BADGE
========================================== */

.ms-image-badge {

  position: absolute;

  top: 32px;

  right: 30px;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 16px;

  border-radius: 14px;

  background:
    rgba(12, 28, 47, 0.88);

  backdrop-filter:
    blur(14px);

  border:
    1px solid
    rgba(255,255,255,0.12);

  color: #fff;

  box-shadow:
    0 12px 30px
    rgba(0,0,0,0.18);

}


.ms-badge-dot {

  width: 10px;

  height: 10px;

  flex: 0 0 10px;

  border-radius: 50%;

  background: #27cf93;

  box-shadow:
    0 0 0 5px
    rgba(39,207,147,0.14);

}


.ms-image-badge strong {

  display: block;

  font-size: 0.75rem;

  line-height: 1.2;

}


.ms-image-badge small {

  display: block;

  margin-top: 3px;

  color: #b5c4d3;

  font-size: 0.62rem;

}


/* ==========================================
   IMAGE BRAND LABEL
========================================== */

.ms-image-brand {

  position: absolute;

  left: 30px;

  bottom: 28px;

  z-index: 5;

  color: #fff;

  text-shadow:
    0 4px 18px
    rgba(0,0,0,0.28);

}


.ms-image-brand span {

  display: block;

  margin-bottom: 5px;

  color: #e1b038;

  font-size: 0.67rem;

  font-weight: 850;

  letter-spacing: 2.5px;

}


.ms-image-brand strong {

  display: block;

  font-size: 1.6rem;

  letter-spacing: 0.5px;

}


/* ==========================================
   RIGHT CONTENT
========================================== */

.ms-about-content {

  max-width: 780px;

}


/* ==========================================
   EYEBROW
========================================== */

.ms-about-eyebrow {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 16px;

  color: #14966f;

  font-size: 0.72rem;

  font-weight: 850;

  letter-spacing: 1.9px;

}


.ms-eyebrow-dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #dcae34;

  box-shadow:
    0 0 0 5px
    rgba(220,174,52,0.12);

}


/* ==========================================
   TITLE
========================================== */

.ms-about-title {

  margin: 0 0 23px;

  color: #152a43;

  font-size:
    clamp(
      2.5rem,
      4vw,
      4.15rem
    );

  line-height: 1.04;

  letter-spacing: -1.9px;

  font-weight: 850;

}


.ms-about-title span {

  display: block;

  color: #14966f;

}


/* ==========================================
   PARAGRAPHS
========================================== */

.ms-about-content > p {

  margin: 0 0 18px;

  color: #607286;

  font-size: 1rem;

  line-height: 1.82;

}


.ms-about-intro {

  color: #455a70 !important;

  font-size: 1.08rem !important;

}


.ms-about-content p strong {

  color: #172d47;

}


.ms-about-content p a {

  color: #14966f;

  font-weight: 780;

  text-decoration: none;

  transition:
    color 0.25s ease;

}


.ms-about-content p a:hover {

  color: #d29921;

}


/* ==========================================
   SEO BOX
========================================== */

.ms-seo-box {

  margin: 27px 0;

  padding: 20px 22px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(20,150,111,0.07),
      rgba(223,176,57,0.07)
    );

  border:
    1px solid
    rgba(20,150,111,0.12);

  box-shadow:
    0 10px 25px
    rgba(17,45,69,0.04);

}


.ms-seo-heading {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 10px;

}


.ms-seo-icon {

  width: 38px;

  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 11px;

  background:
    linear-gradient(
      135deg,
      #14966f,
      #087b5b
    );

  color: #fff;

  font-size: 1rem;

  box-shadow:
    0 8px 18px
    rgba(20,150,111,0.18);

}


.ms-seo-heading strong {

  display: block;

  color: #18304b;

  font-size: 0.93rem;

  font-weight: 820;

}


.ms-seo-heading span {

  display: block;

  margin-top: 2px;

  color: #7b8b9c;

  font-size: 0.66rem;

}


.ms-seo-box p {

  margin: 0;

  color: #687a8e;

  font-size: 0.88rem;

  line-height: 1.72;

}


.ms-seo-box p strong {

  color: #14966f;

}


/* ==========================================
   FEATURES
========================================== */

.ms-about-features {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 17px 30px;

  margin-top: 27px;

}


.ms-feature {

  display: flex;

  align-items: flex-start;

  gap: 11px;

}


.ms-feature-check {

  width: 27px;

  height: 27px;

  flex: 0 0 27px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    rgba(20,150,111,0.10);

  color: #14966f;

  font-size: 0.78rem;

}


.ms-feature strong {

  display: block;

  margin-bottom: 3px;

  color: #1a3049;

  font-size: 0.84rem;

  font-weight: 820;

}


.ms-feature small {

  display: block;

  color: #78889a;

  font-size: 0.71rem;

  line-height: 1.5;

}


/* ==========================================
   SERVICE RANGE
========================================== */

.ms-service-range {

  margin-top: 27px;

}


.ms-service-range span {

  display: block;

  margin-bottom: 5px;

  color: #14966f;

  font-size: 0.66rem;

  font-weight: 850;

  letter-spacing: 1.4px;

}


.ms-service-range strong {

  color: #38516b;

  font-size: 0.78rem;

  font-weight: 720;

}


/* ==========================================
   ACTION BUTTONS
========================================== */

.ms-about-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 27px;

}


.ms-about-primary-btn,
.ms-about-call-btn,
.ms-about-whatsapp-btn {

  min-height: 51px;

  padding: 0 19px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  border-radius: 11px;

  text-decoration: none;

  font-size: 0.84rem;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;

}


.ms-about-primary-btn {

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #14966f,
      #087d5b
    );

  box-shadow:
    0 12px 28px
    rgba(20,150,111,0.20);

}


.ms-about-primary-btn:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 17px 35px
    rgba(20,150,111,0.28);

}


.ms-about-call-btn {

  color: #182d47;

  background: #fff;

  border:
    1px solid #dce5ed;

}


.ms-about-call-btn:hover {

  transform:
    translateY(-3px);

  border-color:
    #14966f;

  color:
    #14966f;

}


.ms-about-whatsapp-btn {

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #20c879,
      #0fab66
    );

  box-shadow:
    0 12px 26px
    rgba(32,200,121,0.18);

}


.ms-about-whatsapp-btn:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 17px 33px
    rgba(32,200,121,0.25);

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

  .ms-about-container {

    grid-template-columns: 1fr;

    gap: 55px;

  }


  .ms-about-visual {

    width:
      min(
        760px,
        100%
      );

    margin: 0 auto;

  }


  .ms-about-content {

    max-width: 900px;

    margin: 0 auto;

  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

  .ms-about-section {

    padding: 75px 0 85px;

  }


  .ms-about-container {

    width:
      calc(100% - 28px);

  }


  .ms-about-visual {

    padding: 8px;

  }


  .ms-about-image-card {

    height: 470px;

    border-radius: 22px;

    box-shadow:
      0 15px 30px
        rgba(14,35,57,0.09),

      0 30px 65px
        rgba(14,35,57,0.20);

  }


  .ms-image-badge {

    top: 22px;

    right: 20px;

    padding: 9px 11px;

  }


  .ms-image-badge strong {

    font-size: 0.65rem;

  }


  .ms-image-badge small {

    font-size: 0.55rem;

  }


  .ms-image-brand {

    left: 20px;

    bottom: 20px;

  }


  .ms-image-brand span {

    font-size: 0.56rem;

    letter-spacing: 1.8px;

  }


  .ms-image-brand strong {

    font-size: 1.15rem;

  }


  .ms-about-title {

    font-size: 2.25rem;

    letter-spacing: -1px;

  }


  .ms-about-content > p {

    font-size: 0.92rem;

    line-height: 1.74;

  }


  .ms-about-intro {

    font-size: 1rem !important;

  }


  .ms-seo-box {

    padding: 17px;

  }


  .ms-about-features {

    grid-template-columns: 1fr;

    gap: 15px;

  }


  .ms-about-actions {

    display: grid;

    grid-template-columns: 1fr;

  }


  .ms-about-primary-btn,
  .ms-about-call-btn,
  .ms-about-whatsapp-btn {

    width: 100%;

  }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {

  .ms-about-container {

    width:
      calc(100% - 20px);

  }


  .ms-about-image-card {

    height: 410px;

    border-radius: 19px;

  }


  .ms-image-badge {

    max-width: 170px;

  }


  .ms-about-title {

    font-size: 2rem;

  }


  .ms-about-content > p {

    font-size: 0.89rem;

  }

}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

  .ms-about-image-card,
  .ms-about-image-card > img,
  .ms-about-primary-btn,
  .ms-about-call-btn,
  .ms-about-whatsapp-btn {

    transition: none !important;

    transform: none !important;

  }

}







/* 8. Service Cards & Grids */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-icon-floating {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background-color: var(--accent-orange);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.card-link {
  font-weight: 700;
  color: var(--secondary-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--accent-orange);
  gap: 10px;
}

/* 9. Mini Cards & Features */
.mini-card {
  background-color: var(--bg-light);
  padding: 25px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.mini-card:hover {
  background-color: var(--bg-white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange);
}

.mini-card-icon {
  font-size: 2rem;
  color: var(--secondary-blue);
  margin-bottom: 12px;
  display: inline-block;
}

.mini-card h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature-box:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 122, 0, 0.15);
  color: var(--accent-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--bg-white);
}

.feature-box p {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* 10. About Us */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-orange);
  color: var(--bg-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.exp-number {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-blue);
  margin-bottom: 15px;
}

.about-checklist {
  margin: 25px 0 35px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.check-item i {
  color: var(--accent-orange);
  font-size: 1.15rem;
}

/* 11. Gallery & Lightbox */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  border-color: var(--accent-orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 30, 54, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--bg-white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-cat {
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
}

.view-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 800px;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

#lightboxImg {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  margin: 0 auto;
}

.lightbox-caption {
  color: var(--bg-white);
  margin-top: 12px;
  font-weight: 600;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}

.lightbox-close { top: 20px; right: 25px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--accent-orange); }

/* 12. Steps & Stats */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.step-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e2e8f0;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: #fff3e6;
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
}

.step-card h4 {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-section {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value, .stat-value-text {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-top: -15px;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* 13. Testimonials */
.testimonial-carousel-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: none;
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars {
  color: var(--accent-yellow);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-navy);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.carousel-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  border-color: var(--accent-orange);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent-orange);
  width: 24px;
  border-radius: 10px;
}

/* 14. Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-orange);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-val {
  font-weight: 700;
  color: var(--primary-navy);
}

.form-container {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.form-container h3 {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.error-msg {
  color: #dc2626;
  font-size: 0.75rem;
  display: none;
  margin-top: 4px;
}

.form-group.error input,
.form-group.error select {
  border-color: #dc2626;
}

.form-group.error .error-msg {
  display: block;
}

.form-feedback {
  margin-top: 15px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background-color: #def7ec;
  color: #03543f;
  border: 1px solid #84e1bc;
}

/* 15. Footer */
.site-footer {
  background-color: var(--primary-navy);
  color: #cbd5e1;
  padding: 70px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo .brand-name {
  color: var(--bg-white);
}

.footer-about-text {
  font-size: 0.9rem;
  margin-top: 15px;
  line-height: 1.6;
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-links li, .footer-contact-info li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info i {
  color: var(--accent-orange);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.85rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 16. Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.35rem;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.float-whatsapp {
  background-color: var(--whatsapp-color);
  animation: pulse-green 2.5s infinite;
}

.float-call {
  background-color: var(--secondary-blue);
}

.float-top {
  background-color: var(--primary-navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn:hover {
  transform: scale(1.08);
}

@keyframes pulse-green {
  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); }
}

/* 17. Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1100px) {
  .navbar-wrapper,
  .nav-container {
    min-height: 68px;
  }

  .nav-container {
    padding: 7px 16px;
  }

  .brand-logo-img {
    height: 44px;
    max-width: 190px;
  }

  .hamburger-btn {
    display: flex;
    position: relative;
    z-index: 100001;
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(21, 68, 122, .05);
    transition: background .2s ease;
  }

  .hamburger-btn:hover,
  .hamburger-btn.active {
    background: rgba(255, 122, 0, .09);
  }

  .hamburger-btn .bar {
    width: 100%;
    height: 2.5px;
    background: var(--primary-navy);
    border-radius: 4px;
    transform-origin: center;
    transition: transform .25s ease, opacity .2s ease;
  }

  .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: calc(100dvh - 68px);
    background: rgba(255, 255, 255, .985);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 16px 24px;
    box-shadow: 0 18px 35px rgba(11, 30, 54, .14);
    border-top: 1px solid rgba(226, 232, 240, .9);
    transform: translateX(-102%);
    visibility: hidden;
    opacity: 0;
    transition: transform .3s ease, opacity .25s ease, visibility .3s ease;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active,
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }

  .dropdown-item {
    width: 100%;
    padding: 2px 0;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
    font-size: .94rem;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu,
  .dropdown-menu.location-grid,
  .dropdown-menu.single-column {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-left: 2px solid rgba(255, 122, 0, .22) !important;
    border-radius: 0 !important;
    padding: 6px 0 8px 10px !important;
    margin: 0 0 3px 8px;
    display: none;
    flex-direction: column !important;
    gap: 3px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
  }

  .dropdown-column {
    min-width: 100% !important;
    width: 100% !important;
  }

  .dropdown-heading {
    margin-top: 6px;
  }

  .dropdown-column a,
  .dropdown-menu.single-column a {
    white-space: normal !important;
    font-size: .86rem;
    padding: 9px 10px;
  }

  .dropdown-item.open > .dropdown-menu {
    display: flex !important;
  }

  .nav-cta-wrapper {
    margin-top: 12px;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
  }

  .nav-cta-wrapper .btn {
    width: 100%;
    min-height: 46px;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .form-row, .about-checklist {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .floating-actions {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Final UI Polish & Sticky Navbar Safeguards
   ========================================================================== */

[id] {
  scroll-margin-top: 92px;
}

section,
header {
  scroll-margin-top: 92px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 600px) {
  .navbar-wrapper,
  .nav-container {
    min-height: 64px;
  }

  .nav-menu {
    top: 64px;
    height: calc(100dvh - 64px);
  }

  .brand-logo-img {
    height: 40px;
    max-width: 175px;
  }

  [id] {
    scroll-margin-top: 78px;
  }
}