:root {
  --bg: #081633;
  --bg-soft: #0f2148;
  --white: #ffffff;
  --text: #10213f;
  --muted: #60708e;
  --gold: #d7a03f;
  --gold-2: #f0c262;
  --red: #d7202d;
  --blue: #2d7cff;
  --shadow: 0 18px 50px rgba(5, 18, 49, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.why-choose-container {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
}

.section-space {
  padding: 88px 0;
}

/* Common */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-gold {
  color: #0c1a37;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(215, 160, 63, 0.32);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-blue {
  color: var(--white);
  background: linear-gradient(135deg, #2875ff, #56a1ff);
  box-shadow: 0 12px 30px rgba(45, 124, 255, 0.35);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(4, 17, 46, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo a,
.footer-logo a {
  display: inline-flex;
  align-items: center;
}

.header-logo-only {
  width: 265px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.footer-site-logo {
  width: 245px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.logo-text {
  display: none;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul li {
  position: relative;
}

.main-nav > ul > li > a {
  color: var(--white);
  font-weight: 600;
}

.active-link {
  position: relative;
}

.active-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-2);
}

.has-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 980px;
  padding: 30px 28px;
  border-radius: 24px;
  background: #f7f7fa;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  box-shadow: 0 25px 60px rgba(5, 18, 49, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 99;
}

.has-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-head,
.mobile-menu-top,
.menu-toggle,
.menu-close,
.mobile-contact-wrap {
  display: none;
}

.mega-column h4 {
  font-size: 13px;
  margin-bottom: 10px;
  color: #6f7f9c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-subtitle {
  margin-top: 20px;
}

.mega-column ul li {
  margin-bottom: 8px;
}

.mega-column ul li a {
  display: block;
  color: #324766;
  font-size: 15px;
  font-weight: 600;
}

.mega-column ul li a:hover {
  color: var(--red);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("../images/hero-bg.jpeg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 18, 53, 0.55), rgba(4, 18, 53, 0.78)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  padding: 96px 0;
}

.hero-badge {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content h1 span {
  display: block;
  color: var(--gold-2);
}

.hero-content p {
  max-width: 820px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about-section {
  background: #f8fbff;
}

.about-text {
  max-width: 980px;
  margin: 0 auto;
}

.about-section p {
  text-align: center;
  color: #51617f;
  font-size: 18px;
  margin-bottom: 18px;
}

/* Mission / Vision */
.mission-vision-section {
  background: linear-gradient(rgba(6, 20, 52, 0.38), rgba(6, 20, 52, 0.42)),
    url("../images/mission.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.top-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.glass-card {
  display: flex;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(4, 17, 46, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(4, 17, 46, 0.2);
}

.glass-card-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 28px;
  background: var(--red);
  color: var(--white);
}

.glass-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.88);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  background: var(--white);
  border-radius: 28px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(5, 18, 49, 0.16);
}

.feature-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: #fdecee;
  font-size: 32px;
  color: var(--red);
}

.feature-box h4 {
  font-size: 21px;
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--muted);
  font-size: 16px;
}

/* Services */
.services-section {
  background: linear-gradient(rgba(9, 12, 34, 0.76), rgba(9, 12, 34, 0.76)),
    url("../images/services-bg.png") center/cover no-repeat;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(5, 18, 49, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(5, 18, 49, 0.22);
}

.service-image {
  height: 240px;
  overflow: hidden;
}

.service-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.03);
}

.service-icon {
  position: absolute;
  top: 205px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 28px;
  border: 6px solid var(--white);
}

.service-content {
  padding: 62px 22px 26px;
  text-align: center;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-content p {
  color: var(--muted);
  font-size: 16px;
}

/* Why Choose */
.why-choose-section {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  overflow: hidden;
  padding: 28px 0;
}

.why-heading {
  margin-bottom: 14px;
}

.why-heading h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 6px;
}

.why-heading p {
  font-size: 15px;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 18px;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(5, 18, 49, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(5, 18, 49, 0.12);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.why-right {
  width: 100%;
  min-width: 0;
}

.why-visual {
  width: calc(100% + 70px);
  min-height: 360px;
  margin-right: -70px;
  border-radius: 80px 0 0 80px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(5, 18, 49, 0.14);
  background: transparent;
}

.large-why-bg {
  background: url("../images/why-choose-bg.png") center center no-repeat;
  background-size: cover;
}

/* Coverage */
.coverage-section {
  background: #071633;
}

.coverage-map-wrap {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.coverage-map-wrap iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: url("../images/contact-bg.png") center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 49, 0.72), rgba(5, 18, 49, 0.8));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
}

.cta-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9cc0ff;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  margin-bottom: 26px;
}

/* Footer */
.site-footer {
  background: #030d28;
  color: var(--white);
}

.footer-grid {
  padding: 66px 0 38px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 32px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.8;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a:hover {
  color: var(--gold-2);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  text-align: center;
  padding: 18px 15px 24px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Floating */
.floating-buttons {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 14px 34px rgba(5, 18, 49, 0.28);
  transition: transform 0.22s ease;
}

.float-btn:hover {
  transform: translateY(-4px);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #18c85d);
  box-shadow:
    0 0 0 8px rgba(37, 211, 102, 0.08),
    0 14px 34px rgba(37, 211, 102, 0.38),
    0 0 28px rgba(37, 211, 102, 0.26);
}

.top-btn {
  background: linear-gradient(135deg, #2875ff, #4da0ff);
}

/* Mobile Menu Buttons */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 18, 49, 0.16);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: #1e2b4d;
  transition: 0.25s ease;
}

.menu-close {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #344765;
  box-shadow: 0 10px 24px rgba(5, 18, 49, 0.1);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 700;
  color: #0c1a37;
  background: linear-gradient(135deg, #d7a03f, #f0c262);
  box-shadow: 0 14px 30px rgba(215, 160, 63, 0.26);
}

.mobile-contact-btn span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(12, 26, 55, 0.1);
  font-size: 13px;
}

/* Tablet */
@media (max-width: 1150px) {
  .services-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
  }

  .why-visual {
    width: 100%;
    margin-right: 0;
    min-height: 320px;
    border-radius: 24px;
  }

  .large-why-bg {
    background-size: cover;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu {
    width: 900px;
  }
}

/* Mobile menu / tablet nav */
@media (max-width: 920px) {
  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-close {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(390px, 100%);
    height: 100vh;
    background: rgba(245, 247, 252, 0.985);
    backdrop-filter: blur(8px);
    box-shadow: -14px 0 40px rgba(5, 18, 49, 0.18);
    padding: 18px 16px 24px;
    z-index: 280;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .main-nav.mobile-open {
    transform: translateX(0);
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .mobile-menu-brand {
    display: flex;
    align-items: center;
  }

  .mobile-menu-logo {
    width: 180px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
  }

  .main-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
    color: #1d2a4b;
    font-size: 17px;
    font-weight: 700;
  }

  .active-link::after {
    display: none;
  }

  .has-dropdown > a i {
    color: #7b89a5;
    font-size: 14px;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 16px 34px rgba(5, 18, 49, 0.1);
  }

  .has-dropdown.open .mega-menu {
    display: grid !important;
  }

  .mega-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .mega-kicker {
    display: block;
    color: #7182a2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .mega-menu-head h5 {
    font-size: 16px;
    color: #1d2a4b;
  }

  .mega-pill {
    background: #eef4ff;
    color: #3574ff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
  }

  .mega-column h4 {
    font-size: 12px;
    margin-bottom: 8px;
    color: #70809f;
    letter-spacing: 1px;
  }

  .mega-column ul li {
    margin-bottom: 5px;
  }

  .mega-column ul li a {
    font-size: 14px;
    color: #344765;
    font-weight: 500;
  }

  .mobile-contact-wrap {
    display: block;
    margin-top: 22px;
  }

  .header-logo-only {
    width: 215px;
    max-height: 72px;
  }

  .footer-site-logo {
    width: 210px;
    max-height: 70px;
  }

  .top-cards {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(34px, 6vw, 54px);
  }

  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .container,
  .why-choose-container {
    width: min(100%, calc(100% - 22px));
  }

  .section-space {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  .section-heading p {
    font-size: 15px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 60px;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    font-size: 11px;
    letter-spacing: 1.6px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  .about-section p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
  }

  .top-cards,
  .feature-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 22px 18px;
    border-radius: 26px;
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }

  .glass-card-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
    border-radius: 18px;
  }

  .glass-card h3 {
    font-size: 19px;
  }

  .glass-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .feature-box {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 14px;
  }

  .feature-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .feature-box p {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-card {
    border-radius: 26px;
  }

  .service-image {
    height: 188px;
  }

  .service-icon {
    top: 156px;
    width: 72px;
    height: 72px;
    font-size: 24px;
    border-width: 5px;
  }

  .service-content {
    padding: 50px 18px 22px;
  }

  .service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-left {
    gap: 12px;
  }

  .why-card {
    flex-direction: column;
    text-align: center;
    padding: 16px 14px;
    gap: 10px;
  }

  .why-card-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .why-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .why-visual {
    width: 100%;
    margin-right: 0;
    min-height: 220px;
    border-radius: 20px;
  }

  .large-why-bg {
    background-size: cover;
  }

  .coverage-map-wrap iframe {
    height: 250px;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-label {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .cta-content h2 {
    font-size: 25px;
    line-height: 1.15;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .footer-grid {
    gap: 24px;
    padding: 50px 0 28px;
  }

  .footer-about p,
  .footer-col ul li,
  .footer-col a {
    font-size: 15px;
  }

  .float-btn {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .header-logo-only {
    width: 170px;
    max-height: 58px;
  }

  .footer-site-logo {
    width: 165px;
    max-height: 56px;
  }

  .main-nav {
    width: 100%;
    padding: 16px 14px 22px;
  }

  .mobile-menu-top {
    margin-bottom: 18px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    gap: 4px;
  }

  .menu-toggle span {
    width: 19px;
    height: 2.5px;
  }

  .menu-close {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .main-nav > ul > li > a {
    font-size: 16px;
    padding: 11px 4px;
  }

  .mega-menu {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .mega-column ul li a {
    font-size: 14px;
  }

  .mobile-contact-btn {
    min-height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .section-heading h2,
  .cta-content h2 {
    font-size: 23px;
  }

  .hero-content p,
  .about-section p,
  .glass-card p,
  .feature-box p,
  .service-content p,
  .why-card p,
  .cta-content p {
    font-size: 14px;
  }

  .header-logo-only {
    width: 148px;
    max-height: 52px;
  }

  .footer-site-logo {
    width: 146px;
    max-height: 50px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-menu-head {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
}