/* ══════════════════════════════
   TOKENS
══════════════════════════════ */
:root {
  --red: #bf1b2c;
  --red2: #961525;
  --blue: #0b2454;
  --blue2: #0d3070;
  --blue3: #0a1f47;
  --gold: #c8a84b;
  --white: #ffffff;
  --offwhite: #f7f5f2;
  --offwhite2: #ece8e2;
  --offwhite3: #e7e2db;
  --offwhite4: #e3dfd8;
  --offwhite5: #faf9f9;
  --gray1: #f0eee9;
  --gray2: #545454;
  --gray3: #1b1b1b;
  --dark: #0a0a0a;
  --text: #1e1e1e;
  --nav-h: 80px;
}
/* ══════════════════════════════
   BASE
══════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
::selection {
  background: var(--red);
  color: #fff;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--offwhite);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}
img {
  max-width: 100%;
  display: block;
}
/* ══════════════════════════════
   CURSOR
══════════════════════════════ */
#c-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#c-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(191, 27, 44, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    width 0.15s,
    height 0.15s,
    border-color 0.15s;
}
#c-ring.big {
  width: 54px;
  height: 54px;
  border-color: var(--red);
}
/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
#topbar {
  background: var(--blue);
  padding: 7px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
#topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
#topbar a:hover {
  color: #fff;
}
#topbar .sep {
  margin: 0 10px;
  opacity: 0.3;
}
#topbar .topbar-info {
  font-size: 0.73rem;
}
#topbar .topbar-info .bi-geo-alt-fill,
#topbar .topbar-info .bi-clock-fill {
  color: var(--white);
}
#topbar .topbar-info span {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  #topbar .topbar-contact,
  #topbar .topbar-contact.d-flex {
    display: none !important;
  }
  #topbar .container > div {
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  #topbar .topbar-info {
    flex-wrap: nowrap !important;
    white-space: nowrap;
    justify-content: center;
    width: 100%;
    font-size: 0.62rem;
    gap: 4px !important;
  }
  #topbar .topbar-info .sep {
    margin: 0 4px;
  }
  #topbar .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#mainNav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1040;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
  padding: 0;
}
#mainNav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
/* =========================
   LOGO
========================= */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 5px 0;
}

/* Logo container */
.logo-icon {
  width: 180px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Logo image */
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .logo-icon {
    width: 140px;
    height: 65px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .logo-icon {
    width: 120px;
    height: 55px;
  }
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(191, 27, 44, 0.06);
}
/* CTA in nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-phone-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background 0.25s,
    transform 0.2s;
  white-space: nowrap;
}
.nav-phone-pill:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.03);
}
.nav-phone-pill i {
  font-size: 0.9rem;
}
/* Mobile toggler */
.tog {
  display: none;
  background: none;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tog span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.tog.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.tog.open span:nth-child(2) {
  opacity: 0;
}
.tog.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-menu a:hover {
  background: rgba(191, 27, 44, 0.07);
  color: var(--red);
}
.mobile-menu .mob-phones {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mob-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff !important;
  padding: 12px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: background 0.2s;
}
.mob-cta-quote:hover {
  background: var(--blue2);
}
.mob-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff !important;
  padding: 12px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: background 0.2s;
}
.mob-cta-call:hover {
  background: var(--red2);
}

/* ══════════════════════════════
   SECTION HELPER
══════════════════════════════ */
.s-eye {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.s-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.s-title span {
  color: var(--red);
}
.s-rule {
  width: 44px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px 0 0;
}
.s-rule.cx {
  margin: 14px auto 0;
}
.s-sub {
  font-size: 1rem;
  color: var(--gray3);
  line-height: 1.75;
  font-weight: 300;
  margin-top: 18px;
  max-width: 560px;
}
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 72px 0;
}
/* Divider */
.wave-div {
  line-height: 0;
  overflow: hidden;
}
.wave-div svg {
  display: block;
  width: 100%;
}
/* ══════════════════════════════
   HERO
══════════════════════════════ */
#home {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--blue); /* fallback jab tak video load ho */
}

/* Video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Gradient overlay — video ke upar */
/* #home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 36, 84, 0.65) 0%,
    rgba(11, 36, 84, 0.45) 55%,
    rgba(191, 27, 44, 0.35) 100%
  );
  z-index: 1;
  pointer-events: none;
} */

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 36, 84, 0.6) 0%,
    rgba(11, 36, 84, 0.4) 55%,
    rgba(191, 27, 44, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Content video ke upar aaye */
.hero-diag,
.hero-body,
.hero-stats {
  position: relative;
  z-index: 2;
}

/* Mobile pe video band, image fallback */
@media (max-width: 768px) {
  .hero-video-bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 160px;
}
/* Floating diagonal accent */
/* .hero-diag {
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  width: 42%;
  background: rgba(255, 255, 255, 0.03);
  transform: skewX(-8deg);
  pointer-events: none;
  overflow: hidden;
} */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.hero-tag i {
  color: var(--gold);
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 22px;
}
.hero-h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 15px 34px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(191, 27, 44, 0.4);
}
.btn-red:hover {
  background: var(--red2);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 44px rgba(191, 27, 44, 0.5);
}
.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.btn-outline-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: scale(1.04);
}
/* Hero stats bar */
.hero-stats {
  background: var(--blue);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.hs-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hs-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.hs-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.hs-sub {
  font-size: 0.68rem;
  color: rgb(214, 214, 214);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hs-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .hs-item {
    width: 45%;
  }
}
@media (max-width: 400px) {
  .hs-item {
    width: 100%;
  }
}

/* ══════════════════════════════
   STORM ALERT SECTION
══════════════════════════════ */
#storm-alert {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--gray2);
  /* border-bottom: 1px solid var(--gray2); */
}
.storm-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* Left */
.storm-left {
  flex: 1 1 0;
  max-width: none;
}
.storm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 14px;
  animation: pulse-ring 2s ease-out infinite;
}
.storm-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 12px;
}
.storm-sub {
  font-size: 0.88rem;
  color: rgb(22, 22, 22);
  line-height: 1.75;
  margin-bottom: 20px;
}
.storm-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.st-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.st-item i {
  color: var(--white);
}
.st-item:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(191, 27, 44, 0.3);
}

.storm-right {
  flex: 2 1 0;
  max-width: none;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.storm-card-body {
  padding: 30px 28px 20px;
}
.storm-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.storm-input {
  flex: 1 1 0;
  min-width: 0;
  background: var(--offwhite5);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.storm-input::placeholder {
  color: rgba(0, 0, 0, 0.85);
}
.storm-input:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(191, 27, 44, 0.08);
}
.storm-btn {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(191, 27, 44, 0.3);
}
.storm-btn:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(191, 27, 44, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .storm-left {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .storm-inner {
    flex-direction: column;
    gap: 28px;
  }
  .storm-left,
  .storm-right {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .storm-left {
    text-align: center;
  }
  .storm-trust {
    justify-content: center;
  }
  .storm-badge {
    margin: 0 auto 14px;
  }
  .storm-row {
    flex-direction: column;
  }
  .storm-input,
  .storm-btn {
    width: 100%;
  }
  .storm-btn {
    justify-content: center;
  }
  .storm-card-body {
    padding: 35px 25px 35px;
  }
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#services {
  background: var(--offwhite);
  padding: 100px 0;
}

/* ── New Image Cards ── */
.svc2-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.svc2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(11, 36, 84, 0.12);
}
.svc2-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.svc2-card:hover .svc2-img img {
  transform: scale(1.06);
}
.svc2-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(11, 36, 84, 0.55) 100%
  );
}
.svc2-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(191, 27, 44, 0.4);
}
.svc2-body {
  padding: 24px 26px 28px;
}
.svc2-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.svc2-body p {
  font-size: 0.86rem;
  color: var(--gray3);
  line-height: 1.75;
  margin-bottom: 16px;
}
.learn-a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.learn-a:hover {
  gap: 11px;
  color: var(--red2);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  #services {
    padding: 72px 0;
  }
}
@media (max-width: 575px) {
  .svc2-img {
    height: 180px;
  }
  .svc2-body {
    padding: 18px 18px 22px;
  }
  .svc2-body h4 {
    font-size: 1rem;
  }
}
/* ══════════════════════════════
   WHY US
══════════════════════════════ */
#why {
  background: var(--white);
  padding: 100px 0;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: 10px;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(11, 36, 84, 0.08);
  background: var(--white);
}
.why-card:hover {
  background: var(--offwhite);
  transform: translateX(4px);
  box-shadow: 0 16px 48px rgba(11, 36, 84, 0.13);
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.why-card:hover .why-icon-wrap {
  background: var(--red);
}
.why-icon-wrap i {
  font-size: 1.3rem;
  color: #fff;
}
.why-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.86rem;
  color: var(--gray3);
  line-height: 1.7;
}

/* ══════════════════════════════
   OWNER
══════════════════════════════ */
#about {
  background: var(--offwhite);
  padding: 100px 0;
}
.owner-name {
  font-size: clamp(2rem, 4vw, 3rem);
}
.owner-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.owner-bio {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 16px;
}
.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.owner-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 16px 16px 16px;
}
.owner-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  display: block;
}
.owner-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  background: var(--blue);
  border-radius: 12px;
  z-index: 1;
}
.owner-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 38%;
  background: var(--red);
  border-radius: 12px;
  z-index: 0;
  opacity: 0.22;
}
.owner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.o-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
}
.o-badge i {
  color: var(--red);
}
.lic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 9px 18px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}

@media (max-width: 575px) {
  .owner-img-wrap {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
#testimonials {
  background: var(--white);
  padding: 100px 0;
}
.test-card {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 36px 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 36, 84, 0.1);
}

.stars {
  color: #eaa705;
  margin-bottom: 10px;
  font-size: 18px;
}
.test-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.test-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
}
.test-loc {
  font-size: 0.75rem;
  color: var(--gray3);
}
/* ══════════════════════════════
   FAQ
══════════════════════════════ */
#faq {
  background: var(--offwhite);
  padding: 48px 0 100px;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-q[aria-expanded="true"] {
  color: var(--red);
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    transform 0.3s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--red);
  transform: rotate(45deg);
}
.faq-q[aria-expanded="true"] .faq-icon i {
  color: #fff;
}
.faq-icon i {
  font-size: 0.75rem;
  color: var(--gray3);
}
.faq-a {
  font-size: 0.88rem;
  color: var(--gray3);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ── FAQ Side Cards ── */
.faq-side-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.faq-side-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: #fff;
}
.faq-side-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 4px;
}
.faq-side-val {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s;
}
a.faq-side-val:hover {
  color: var(--red);
}

/* ══════════════════════════════
   CTA STRIP
══════════════════════════════ */
#contact-cta {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 50px
  );
}
.cta-h {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-wh {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-wh:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  color: var(--red);
}

.btn-outline-b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.btn-outline-b:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.04);
}
/* ══════════════════════════════
   CONTACT / QUOTE FORM
══════════════════════════════ */
#contact {
  background: var(--blue);
  padding: 100px 0;
}
.quote-form-wrap {
  background: var(--white);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}
.qf-header {
  border-bottom: none;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.qf-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #fff;
}
.qf-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 4px;
}
.qf-sub {
  font-size: 0.78rem;
  color: rgb(0 0 0 / 80%);
  margin: 0;
}
.qf-body {
  padding: 32px;
  background: var(--white);
}
.qf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.qf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: black;
}
.qf-label i {
  color: var(--red);
  margin-right: 4px;
}
.qf-input {
  background: var(--offwhite);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  transition:
    border-color 0.25s,
    background 0.25s;
  width: 100%;
  outline: none;
}
.qf-input::placeholder {
  color: rgba(0, 0, 0, 0.85);
}
.qf-input:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(191, 27, 44, 0.08);
}
.qf-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(0,0,0,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.qf-select option {
  background: #fff;
  color: var(--text);
}
.qf-textarea {
  resize: vertical;
  min-height: 110px;
}
.qf-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(191, 27, 44, 0.3);
  animation: pulse-ring 2s ease-out infinite;
}
.qf-submit:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(191, 27, 44, 0.4);
  animation: none;
}
.qf-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: black;
  margin: 12px 0 0;
}
.qf-disclaimer i {
  color: var(--gold);
  margin-right: 4px;
}

/* Required field asterisk */
.qf-req {
  color: var(--red);
  font-weight: 800;
  margin-left: 2px;
}
.qf-required-note {
  font-size: 0.72rem;
  color: var(--gray2);
  margin: 0 0 16px;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  #contact {
    padding: 60px 0;
  }
  #contact .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .quote-form-wrap {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  }
  .qf-header {
    padding: 20px 18px;
    gap: 12px;
  }
  .qf-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .qf-title {
    font-size: 1.05rem;
  }
  .qf-sub {
    font-size: 0.7rem;
  }
  .qf-body {
    padding: 18px 16px 24px;
  }
  .qf-field {
    gap: 5px;
  }
  .qf-label {
    font-size: 0.68rem;
  }
  .qf-input {
    padding: 11px 13px;
    font-size: 0.88rem;
    border-radius: 7px;
  }
  .qf-submit {
    padding: 14px 20px;
    font-size: 0.92rem;
    border-radius: 7px;
  }
  .qf-disclaimer {
    font-size: 0.68rem;
  }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #0b2352;
  padding: 64px 0 0;
}
/* =========================
   FOOTER LOGO
========================= */

.ft-footer-logo {
  display: inline-block;
  text-decoration: none;
}

.ft-footer-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Hover Effect */
.ft-footer-logo:hover img {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .ft-footer-logo img {
    max-width: 190px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .ft-footer-logo img {
    max-width: 160px;
  }
}
.ft-logo em {
  color: var(--red);
  font-style: normal;
}
.ft-tag {
  font-size: 0.8rem;
  color: white;
  margin-top: 8px;
  line-height: 1.7;
  max-width: 80%;
}
.ft-h {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.ft-link {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: rgb(214, 214, 214);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.ft-link i {
  font-size: 0.85rem;
  margin-right: 10px;
  color: var(--red);
  font-weight: 900;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.ft-link:hover {
  color: #fff;
  padding-left: 5px;
}

.ft-link:hover i {
  transform: translateX(5px);
  color: #fff;
}
.ft-ci {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  color: rgb(214, 214, 214);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.ft-ci a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.ft-ci i {
  width: 20px;
  font-size: 0.9rem;
  margin-right: 12px;
  color: var(--red);
  font-weight: 900;
  transition: transform 0.3s ease;
}

.ft-ci:hover {
  color: #fff;
  padding-left: 8px;
}

.ft-ci:hover i {
  transform: scale(1.2) translateX(2px);
  color: var(--red);
  color: #fff;
}

.ft-ci:hover a {
  color: #fff;
}
.soc {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.soc:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
}
.ft-lic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 7px 14px;
  border-radius: 5px;
  letter-spacing: 0.06em;
  margin-top: 14px;
}
.ft-bottom {
  margin-top: 44px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.74rem;
  color: rgb(214, 214, 214);
  text-align: center;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .tog {
    display: flex;
  }
  .hero-body {
    padding: 60px 0 100px;
  }
  .owner-img-wrap {
    max-width: 380px;
    margin: 0 auto 60px;
  }
  #c-dot,
  #c-ring {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 72px 0;
  }
  .gal-item:nth-child(1) {
    grid-row: auto;
  }
  .hero-h1 {
    font-size: 2.8rem;
  }
}

/* ══ NAVBAR MOBILE FIX ══ */
@media (max-width: 991px) {
  .nav-inner {
    gap: 8px !important;
    padding: 0 4px;
  }
  .tog {
    flex-shrink: 0;
    margin-left: auto;
  }
}

/* ══ PULSE BUTTON ══ */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(191, 27, 44, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(191, 27, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(191, 27, 44, 0);
  }
}
.pulse-btn {
  animation: pulse-ring 2s ease-out infinite;
  border-radius: 50px;
}
.pulse-btn:hover {
  animation: none;
}

/* ══ SCROLL TO TOP ══ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important; /* ← add this */
  z-index: 9999; /* ← higher z-index */
  opacity: 0;
  pointer-events: none; /* ← add this */
  transform: translateY(16px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.25s;
  box-shadow: 0 6px 24px rgba(11, 36, 84, 0.3);
}
#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* ← show hone pe click enable */
}
#scrollTop:hover {
  background: var(--red);
}

/* ══ STICKY CALL ══ */
.sticky-call {
  position: fixed;
  bottom: 32px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(191, 27, 44, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.sticky-call:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(191, 27, 44, 0.5);
  animation: none;
}
.sticky-call i {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .sticky-call span {
    display: none;
  }
  .sticky-call {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ══ HOVER LIFT — universal cards ══ */
.svc2-card,
.test-card,
.faq-side-card {
  will-change: transform;
}

/* ══ GAL ITEM cursor fix ══ */
.gal-item {
  cursor: pointer;
}

/* ══ WHY CARD left border accent on hover ══ */
.why-card {
  border-left: 3px solid transparent;
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.why-card:hover {
  border-left-color: var(--red);
}

/* ══ STATS BAR item hover ══ */
.hs-item {
  transition: transform 0.3s ease;
}
.hs-item:hover {
  transform: translateY(-3px);
}

/* ══ BADGE POP on about section ══ */
.o-badge {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.o-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 36, 84, 0.12);
}

/* ══ NAV LINK underline slide ══ */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ══ FOOTER LINK hover ══ */
.ft-link {
  transition:
    color 0.2s,
    padding-left 0.2s,
    transform 0.2s;
}

/* ══ SECTION TITLE underline reveal ══ */
.s-rule {
  transform-origin: left;
  transition:
    transform 0.6s ease 0.2s,
    opacity 0.6s ease 0.2s;
  transform: scaleX(0);
  opacity: 0;
}
.s-rule.in-view {
  transform: scaleX(1);
  opacity: 1;
}
.s-rule.cx {
  transform-origin: center;
}

/* ══ HERO TABLET FIX ══ */
@media (max-width: 768px) {
  .hero-body {
    padding: 50px 0 70px;
  }
  .hero-h1 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }
  .hero-p {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hs-sep {
    display: none;
  }
}

/* ══════════════════════════════
   CONTACT PAGE — append to style.css
══════════════════════════════ */

/* ── Hero ── */
#contact-hero {
  background:
    linear-gradient(
      135deg,
      rgba(11, 36, 84, 0.93) 0%,
      rgba(191, 27, 44, 0.65) 100%
    ),
    url("../images/hero-sections/general-hero.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  text-align: center;
}
.ch-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ch-title span {
  color: var(--gold);
}
.ch-sub {
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Contact Main ── */
#contact-main {
  background: var(--offwhite);
  padding: 90px 0 48px;
}

.contact-map-full {
  position: relative;
  margin-top: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(11, 36, 84, 0.1);
}

@media (max-width: 767px) {
  .contact-map-full iframe {
    height: 260px;
  }
}

/* ── Info Blocks ── */
.ci-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.ci-block:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(11, 36, 84, 0.09);
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 4px;
}
.ci-val {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s;
}
a.ci-val:hover {
  color: var(--red);
}
.ci-plain {
  cursor: default;
}

/* ── Hours Card ── */
.hours-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 22px 22px 16px;
  margin-bottom: 18px;
}
.hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hours-head i {
  color: var(--red);
  font-size: 1rem;
}
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.86rem;
}
.hours-row:last-child {
  border-bottom: none;
}
.h-day {
  font-weight: 600;
  color: var(--text);
}
.h-time.open {
  color: #1a8a3d;
  font-weight: 700;
  font-size: 0.82rem;
}
.h-time.closed {
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
}
.hours-note {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(191, 27, 44, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Map ── */
.map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(11, 36, 84, 0.1);
}
.map-wrap iframe {
  display: block;
}
.map-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-badge i {
  color: var(--gold);
}

/* ── Trust row below form ── */
.ct-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--blue);
  flex: 1 1 auto;
  min-width: 120px;
  justify-content: center;
}
.ct-badge i {
  color: var(--red);
}

/* ── Responsive ── */
@media (max-width: 575px) {
  #contact-main {
    padding: 60px 0;
  }
  #contact-hero {
    padding: 60px 0 50px;
  }
  .ci-block {
    padding: 14px 16px;
  }
  .ct-trust-row {
    gap: 8px;
  }
  .ct-badge {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
}

/* ══════════════════════════════
   SINGLE PAGES STYLING
══════════════════════════════ */

/* ══════════════════════════════
   SERVICES PAGE
══════════════════════════════ */

/* ── Hero ── */
#services-hero {
  background:
    linear-gradient(
      135deg,
      rgba(11, 36, 84, 0.93) 0%,
      rgba(191, 27, 44, 0.65) 100%
    ),
    url("../images/hero-sections/general-hero.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  text-align: center;
}

/* ── Main section ── */
#services-main {
  background: var(--offwhite);
  padding: 90px 0 100px;
}

/* Card cursor */
.svc-clickable {
  cursor: pointer;
}

/* Detail button reset */
.svc-detail-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
}

/* ══════════════════════════════
   SERVICE MODAL
══════════════════════════════ */
.svc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 40, 0.82);
  z-index: 99990;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.svc-modal-overlay.open {
  display: flex;
}

.svc-modal {
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  animation: modalPop 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Close button */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    transform 0.2s;
  color: var(--blue);
}
.svc-modal-close:hover {
  background: var(--red);
  color: #fff;
  transform: rotate(90deg);
}

/* Image header */
.svc-modal-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.svc-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(11, 36, 84, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  gap: 14px;
}
.svc-modal-badge {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(191, 27, 44, 0.45);
}
.svc-modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

/* Body */
.svc-modal-body {
  padding: 24px 26px 28px;
}

/* Feature pills */
.svc-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.svc-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(11, 36, 84, 0.07);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(11, 36, 84, 0.12);
}

/* Details list */
.svc-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.svc-modal-list li i {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA row */
.svc-modal-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.svc-modal-quote {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 15px 24px;
  border-radius: 8px;
}

.svc-modal-call {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--offwhite);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 13px 16px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.svc-modal-call:hover {
  background: var(--blue);
  transform: translateX(3px);
}
.svc-modal-call:hover .svc-call-label,
.svc-modal-call:hover .svc-call-num {
  color: #fff;
}
.svc-modal-call > i {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.svc-modal-call:hover > i {
  background: var(--red);
}
.svc-modal-call div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-call-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray3);
  transition: color 0.2s;
}
.svc-call-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  transition: color 0.2s;
}

/* Scrollbar inside modal */
.svc-modal::-webkit-scrollbar {
  width: 4px;
}
.svc-modal::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .svc-modal-img {
    height: 180px;
  }
  .svc-modal-body {
    padding: 18px 18px 22px;
  }
  .svc-modal-title {
    font-size: 1.3rem;
  }
  #services-main {
    padding: 60px 0 72px;
  }
  #services-hero {
    padding: 60px 0 50px;
  }
}

/* ══════════════════════════════
   GALLERY PAGE
══════════════════════════════ */

/* ── Hero ── */
#gallery-hero {
  background:
    linear-gradient(
      135deg,
      rgba(11, 36, 84, 0.93) 0%,
      rgba(191, 27, 44, 0.65) 100%
    ),
    url("../images/hero-sections/general-hero.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  text-align: center;
}

/* ── Filter Tabs ── */
#gallery-filters {
  background: var(--white);
  padding: 32px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.gf-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.gf-tab {
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 9px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  margin-bottom: 28px;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
}
.gf-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.gf-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(11, 36, 84, 0.22);
  transform: translateY(-1px);
}

/* ── Gallery Main ── */
#gallery-main {
  background: var(--offwhite);
  padding: 56px 0 100px;
}

/* ── Masonry Grid ── */
.gallery-masonry {
  columns: 4;
  column-gap: 14px;
}
@media (max-width: 1100px) {
  .gallery-masonry {
    columns: 3;
  }
}
@media (max-width: 767px) {
  .gallery-masonry {
    columns: 2;
    column-gap: 10px;
  }
}
@media (max-width: 400px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* ── Gallery Item ── */
.gm-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #d8d8d8;
  background-image: linear-gradient(
    90deg,
    #d4d4d4 25%,
    #e8e8e8 50%,
    #d4d4d4 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}
.gm-item.img-loaded {
  background: #0a0a0a;
  background-image: none;
  animation: none;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media (max-width: 767px) {
  .gm-item {
    margin-bottom: 10px;
  }
}

.gm-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gm-item:hover img {
  transform: scale(1.07);
}

/* Hover overlay */
.gm-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(8, 24, 60, 0.92) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.gm-item:hover .gm-overlay {
  opacity: 1;
}

.gm-overlay-inner {
  padding: 18px 16px;
  width: 100%;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}
.gm-item:hover .gm-overlay-inner {
  transform: translateY(0);
}

/* Zoom icon */
.gm-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(0.85);
  transition:
    background 0.22s,
    border-color 0.22s,
    opacity 0.22s,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gm-item:hover .gm-zoom {
  background: var(--red);
  border-color: var(--red);
  opacity: 1;
  transform: scale(1);
}

.gm-caption {
  font-size: 0.83rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.gm-loc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}
.gm-loc i {
  color: var(--gold);
  font-size: 0.68rem;
}

/* Category badge */
.gm-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(11, 36, 84, 0.78);
  color: #fff;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.gm-item:hover .gm-cat-badge {
  opacity: 0;
  transform: translateY(-4px);
}

/* Filter animation */
.gm-hidden {
  display: none !important;
}
.gm-visible {
  display: block;
  animation: gmFadeIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes gmFadeIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Empty state */
.gf-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 20px;
  color: var(--gray3);
}
.gf-empty i {
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.15);
}
.gf-empty p {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.gal-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 20, 0.97);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.gal-lb.open {
  display: flex;
  animation: lbIn 0.28s ease both;
}
@keyframes lbIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Close */
.gal-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-family: sans-serif;
  line-height: 1;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gal-lb-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(90deg) scale(1.1);
}

/* Prev / Next */
.gal-lb-prev,
.gal-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  font-family: sans-serif;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gal-lb-prev {
  left: 20px;
}
.gal-lb-next {
  right: 20px;
}
.gal-lb-prev:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.12) translateX(-3px);
}
.gal-lb-next:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.12) translateX(3px);
}

/* Inner container */
.gal-lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(88vw, 1100px);
  max-height: 90vh;
  animation: lbPopIn 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes lbPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lb-img {
  max-width: min(88vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  display: block;
  user-select: none;
}

/* Caption + counter */
.gal-lb-caption {
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
}
.gal-lb-counter {
  margin-top: 6px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Dots */
.gal-lb-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
}
.gal-lb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.gal-lb-dot.active {
  background: var(--red);
  transform: scale(1.35);
}
.gal-lb-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .gal-lb-prev {
    left: 10px;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
  .gal-lb-next {
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
  .gal-lb-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .lb-img {
    max-height: 72vh;
    border-radius: 8px;
  }
}

/* ── Small screen tweaks ── */
@media (max-width: 575px) {
  #gallery-main {
    padding: 40px 0 72px;
  }
  #gallery-filters {
    padding: 20px 0 0;
  }
  .gf-tab {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
  .gm-caption {
    font-size: 0.76rem;
  }
  .gm-item {
    border-radius: 8px;
  }
}

/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */

/* ── Hero ── */
#about-hero {
  background:
    linear-gradient(
      135deg,
      rgba(11, 36, 84, 0.93) 0%,
      rgba(191, 27, 44, 0.65) 100%
    ),
    url("../images/hero-sections/general-hero.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  text-align: center;
}

/* ── Mission Strip ── */
#about-mission {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.am-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .am-grid {
    grid-template-columns: 1fr;
  }
}

.am-item {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s;
  box-shadow: 0 8px 32px rgba(11, 36, 84, 0.08);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.am-item:hover {
  background: var(--offwhite);
  transform: translateY(-6px);
  z-index: 2;
}
.am-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.am-item:hover .am-icon {
  background: var(--red);
}
.am-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.am-item p {
  font-size: 0.88rem;
  color: var(--gray3);
  line-height: 1.75;
  margin: 0;
}

/* ── Owner Story ── */
#about-owner {
  background: var(--offwhite);
  padding: 100px 0;
}

/* ── Stats ── */
#about-stats {
  background: var(--blue);
  padding: 64px 0;
}
.as-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.as-item {
  text-align: center;
  padding: 0 48px;
  transition: transform 0.3s;
}
.as-item:hover {
  transform: translateY(-4px);
}
.as-num {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.as-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.as-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .as-item {
    padding: 20px 28px;
  }
  .as-sep {
    display: none;
  }
}

/* ── Why Section ── */
#about-why {
  background: var(--white);
  padding: 100px 0;
}

/* ── Service Areas ── */
#about-areas {
  background: var(--offwhite);
  padding: 100px 0;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  cursor: default;
}
.area-pill i {
  color: var(--red);
  font-size: 0.8rem;
}
.area-pill:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 36, 84, 0.18);
}
.area-pill:hover i {
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 575px) {
  #about-hero {
    padding: 60px 0 50px;
  }
  #about-owner {
    padding: 60px 0;
  }
  #about-why {
    padding: 60px 0;
  }
  #about-areas {
    padding: 60px 0;
  }
  #about-stats {
    padding: 44px 0;
  }
  .am-item {
    padding: 28px 20px;
  }
}

/* ══════════════════════════════
   POLICY PAGES
══════════════════════════════ */

/* ── Hero ── */
#policy-hero {
  background:
    linear-gradient(
      135deg,
      rgba(11, 36, 84, 0.93) 0%,
      rgba(191, 27, 44, 0.65) 100%
    ),
    url("../images/hero-sections/general-hero.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  text-align: center;
}

/* ── Body Section ── */
#policy-body {
  background: var(--offwhite);
  padding: 80px 0 100px;
}

/* ── Wrapper ── */
.policy-wrap {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11, 36, 84, 0.08);
}

/* ── Intro ── */
.policy-intro {
  background: var(--blue);
  padding: 32px 40px;
}
.policy-intro p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}

/* ── Each Block ── */
.policy-block {
  padding: 36px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s;
}
.policy-block:last-child {
  border-bottom: none;
}
.policy-block:hover {
  background: var(--offwhite);
}

/* ── Heading ── */
.policy-block h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

/* ── Text ── */
.policy-block p {
  font-size: 0.9rem;
  color: var(--gray2);
  line-height: 1.85;
  margin-bottom: 12px;
}
.policy-block p:last-child {
  margin-bottom: 0;
}

/* ── List ── */
.policy-block ul {
  margin: 8px 0 14px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-block ul li {
  font-size: 0.88rem;
  color: var(--gray2);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.policy-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ── Contact block at bottom ── */
.policy-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}
.pc-item i {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.pc-item a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.pc-item a:hover {
  color: var(--red);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .policy-intro {
    padding: 24px 22px;
  }
  .policy-block {
    padding: 28px 22px;
  }
  #policy-hero {
    padding: 60px 0 50px;
  }
  #policy-body {
    padding: 48px 0 72px;
  }
}

/* ══════════════════════════════
   FORM FEEDBACK MESSAGES
══════════════════════════════ */

/* Spinner for loading state */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spin-icon {
  display: inline-block;
  animation: spin 0.7s linear infinite;
}

/* Feedback message box */
.form-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  transition: opacity 0.4s ease;
}
.form-msg i {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-msg--success {
  background: rgba(26, 138, 61, 0.09);
  border: 1.5px solid rgba(26, 138, 61, 0.25);
  color: #1a5c2d;
}
.form-msg--success i {
  color: #1a8a3d;
}
.form-msg--error {
  background: rgba(191, 27, 44, 0.08);
  border: 1.5px solid rgba(191, 27, 44, 0.25);
  color: #7a0e1a;
}
.form-msg--error i {
  color: var(--red);
}
