/* ================================================
   ROOT COLORS
   ================================================ */
:root {
  /* ---- Brand Core ---- */
  --primary: #0b2f6b;
  --primary-hover: #082456;
  --primary-light: #e8eef8;

  --secondary: #01224f;
  --secondary-hover: #051f47;
  --secondary-light: #e6ecf5;

  /* ---- Accent (use sparingly — badges, highlights) ---- */
  --accent: #1a6eff;
  --accent-light: #e8f0ff;

  /* ---- Status ---- */
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --info: #3b82f6;
  --info-light: #eff6ff;

  /* ---- Neutrals ---- */
  --dark: #0d1b2a;
  --text: #111827;
  --text-light: #374151;
  --text-muted: #4b5563;

  /* ---- Backgrounds ---- */
  --white: #ffffff;
  --white-light: #e0dddd;
  --light: #f8f9fa;
  --card-special: #f5f5f5;
  --surface: #f1f4f9;

  /* ---- Borders ---- */
  --gray: #e9ecef;
  --gray-dark: #6c757d;
  --border: #dee2e6;
  --border-strong: #ced4da;
}

/* ================================================
   RESET
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow: auto;
  overflow-x: clip;
}

body {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--white);
  overflow-x: clip;
  line-height: 1.6;
}

/* ================================================
   FONT WEIGHTS
   ================================================ */
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

/* ================================================
   TEXT COLORS
   ================================================ */
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}
.text-light-cl {
  color: var(--text-light) !important;
}
.text-success {
  color: var(--success) !important;
}
.text-warning {
  color: var(--warning) !important;
}
.text-danger {
  color: var(--danger) !important;
}
.text-white {
  color: var(--white) !important;
}
.text-dark {
  color: var(--dark) !important;
}

/* ================================================
   BACKGROUND COLORS
   ================================================ */
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-primary-light {
  background-color: var(--primary-light) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-secondary-light {
  background-color: var(--secondary-light) !important;
}
.bg-accent {
  background-color: var(--accent) !important;
}
.bg-accent-light {
  background-color: var(--accent-light) !important;
}
.bg-surface {
  background-color: var(--surface) !important;
}
.bg-card {
  background-color: var(--card-special) !important;
}
.bg-light-cl {
  background-color: var(--light) !important;
}
.bg-success-light {
  background-color: var(--success-light) !important;
}
.bg-warning-light {
  background-color: var(--warning-light) !important;
}
.bg-danger-light {
  background-color: var(--danger-light) !important;
}

/* ================================================
   GLOBAL RESPONSIVE BUTTON GROUP
   ================================================ */
.btn-group-responsive {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-group-responsive .btn {
  margin: 0 !important;
}

@media (max-width: 575.98px) {
  .btn-group-responsive {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }

  .btn-group-responsive .btn {
    width: 100% !important;
    text-align: center;
  }
}

/* ==========================================
   GLOBAL PAGE HERO SECTION
========================================== */

.page-hero-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #0b2f6b 0%, #01224f 60%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
}

.page-badge {
  display: inline-block;
  background: #fff;
  color: var(--secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2.4rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }
}

/* ==============================================
   GLOBAL SECTION BADGES, HEADINGS, DESCRIPTIONS
==============================================  */

.section-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-badge-light {
  display: inline-block;
  background: var(--white);
  color: var(--primary) !important;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 2px solid var(--primary);
}

/* Light Sections */

.section-title {
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.section-description {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Dark Sections */

.section-title-light {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.section-description-light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================
   NAVBAR - BLIGHT FORCE™
   ================================================ */

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  background: var(--white) !important;
  box-shadow: 0 2px 10px rgba(11, 47, 107, 0.08);
  padding: 0.4rem 0;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid var(--gray);
  width: 100%;
  overflow: visible;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(11, 47, 107, 0.15);
}

/* ---- MAIN CONTAINER ---- */
.navbar .container-lg {
  max-width: 1600px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  gap: 0;
}

/* ---- LOGO ---- */
.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0;
  text-decoration: none;
}

.logo-desktop {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-mobile {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: none;
}

@media (max-width: 991.98px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
}

/* ---- COLLAPSE — takes remaining space, centers nav ---- */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex: 1 1 0%;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
}

/* ---- NAV LIST ---- */
.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
  }
}

/* ---- NAV LINKS ---- */
.nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding: 0.5rem 0.6rem !important;
  white-space: nowrap;
  transition: color 0.25s ease;
  text-decoration: none;
  display: block;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--primary) !important;
}
.nav-link.active {
  color: var(--primary) !important;
  font-weight: 700;
}

/* Desktop underline */
@media (min-width: 992px) {
  .nav-item:not(.dropdown) .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  .nav-item:not(.dropdown) .nav-link:hover::after,
  .nav-item:not(.dropdown) .nav-link.active::after {
    width: 60%;
  }
}

/* ---- DROPDOWN ARROW ---- */
.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  margin-left: 0.2rem;
}
.dropdown:hover .dropdown-arrow,
.dropdown.show .dropdown-arrow {
  transform: rotate(180deg);
}

/* ---- DESKTOP RIGHT: search + buttons ---- */
.navbar-right-desktop {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
}

@media (min-width: 992px) {
  .navbar-right-desktop {
    display: flex;
  }
}

/* ---- SEARCH BOX ---- */
.navbar-search-inline {
  display: flex;
  align-items: center;
  background: #f1f4f9;
  border: 1.5px solid var(--gray);
  border-radius: 6px;
  overflow: hidden;
  height: 34px;
  transition: border-color 0.25s ease;
}

.navbar-search-inline:focus-within {
  border-color: var(--primary);
  background: var(--white);
}

.navbar-search-inline input {
  border: none;
  background: transparent;
  padding: 0 0.5rem;
  font-size: 0.78rem;
  color: var(--text);
  outline: none;
  width: 140px;
  font-family: inherit;
  height: 100%;
}

.navbar-search-inline input::placeholder {
  color: var(--text-muted);
}

.navbar-search-inline button {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0 0.6rem;
  height: 100%;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-search-inline button:hover {
  background: var(--primary-hover);
}

/* Responsive search width */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-search-inline input {
    width: 90px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar-search-inline input {
    width: 110px;
  }
}
@media (min-width: 1400px) {
  .navbar-search-inline input {
    width: 150px;
  }
}

/* ---- APPLY NOW BUTTON ---- */
.navbar .btn-navbar-main {
  background-color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.78rem;
  height: 34px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navbar .btn-navbar-main:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 47, 107, 0.3);
}

/* Responsive button text — hide on smaller desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .btn-navbar-main {
    font-size: 0.72rem;
    padding: 0 0.65rem;
  }
  .nav-link {
    font-size: 0.74rem;
    padding: 0.5rem 0.38rem !important;
  }
}

/* ---- MOBILE RIGHT: search icon + hamburger ---- */
.navbar-mobile-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 1031;
}

@media (min-width: 992px) {
  .navbar-mobile-right {
    display: none;
  }
}

.navbar-search-toggle {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: 1.5px solid var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.navbar-search-toggle:hover,
.navbar-search-toggle:focus {
  background: var(--primary-hover);
  outline: none;
}

.navbar-toggler {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  background: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
  border-radius: 7px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.navbar-toggler:hover {
  background: var(--primary-hover) !important;
}

.navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}

/* ---- DROPDOWN MENU ---- */
.navbar .dropdown-menu {
  min-width: 230px;
  padding: 0.5rem 0;
  background: var(--white);
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(11, 47, 107, 0.15);
  z-index: 1050;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
  }
  .navbar .dropdown-menu.show {
    display: block;
  }
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeDown 0.25s ease;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.navbar .dropdown-item i {
  color: var(--primary);
  width: 18px;
  font-size: 0.85rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  color: var(--primary);
  background: rgba(11, 47, 107, 0.06);
  border-left-color: var(--primary);
}

/* ================================================
   MOBILE COLLAPSE MENU (< 992px)
   ================================================ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray);
    border-bottom: 2px solid var(--gray);
    box-shadow: 0 8px 20px rgba(11, 47, 107, 0.12);
    z-index: 1029;
    padding: 0.5rem 0.75rem 1rem;
    overflow: hidden;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 0.65rem 0.9rem !important;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .nav-link:hover {
    background: rgba(11, 47, 107, 0.05);
  }
  .nav-link.active {
    background: rgba(11, 47, 107, 0.08);
  }

  .navbar .dropdown-menu {
    position: static !important;
    box-shadow: none;
    border: 1px solid var(--gray);
    border-radius: 8px;
    margin: 0.25rem 0 0 0.75rem;
    background: #f8f9fa;
  }

  .navbar-apply-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .navbar-apply-mobile .btn-navbar-main,
  .navbar-apply-mobile {
    width: 100%;
    justify-content: center;
    height: 6rem;
    font-size: 0.9rem;
    display: flex;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  }

  .navbar-apply-mobile .btn-navbar-main {
    background-color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    color: var(--white) !important;
  }
}

@media (min-width: 992px) {
  .navbar-apply-mobile {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    padding: 0.3rem 0;
  }
  .logo-mobile {
    height: 48px;
  }
  .navbar .container-lg {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ================================================
   SEARCH POPUP OVERLAY
   ================================================ */
.search-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 35, 0.75);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-popup-box {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  margin: 0 1rem;
}

.search-popup-overlay.open .search-popup-box {
  transform: translateY(0);
}

.search-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.search-popup-header h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.search-popup-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s ease;
  line-height: 1;
}

.search-popup-close:hover {
  color: var(--primary);
}

.search-popup-inner {
  display: flex;
  gap: 0.5rem;
}

.search-popup-input {
  flex: 1;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.25s ease;
}

.search-popup-input:focus {
  border-color: var(--primary);
}

.search-popup-submit {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 0.8rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.search-popup-submit:hover {
  background: var(--primary-hover);
}

@media (max-width: 576px) {
  .search-popup-overlay {
    padding-top: 70px;
  }
  .search-popup-inner {
    flex-direction: column;
  }
  .search-popup-submit {
    width: 100%;
  }
  .search-popup-box {
    padding: 1.5rem;
  }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
}

.btn-secondary {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--white) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
}

.btn-light {
  background-color: var(--white) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 47, 107, 0.35);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover) !important;
  border-color: var(--secondary-hover) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 34, 79, 0.35);
}

.btn-light:hover {
  background-color: var(--white-light) !important;
  border-color: var(--white-light) !important;
  color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-light {
  color: var(--white) !important;
  border-color: var(--white) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
}

.btn-outline-light:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

/* ================================================
   HERO SECTION - BLIGHT FORCE™
   ================================================ */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background-image: url("../images/home/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5, 15, 35, 0.92) 0%,
    rgba(5, 15, 35, 0.8) 50%,
    rgba(5, 15, 35, 0.4) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

/* ------------------------------------------------
   Typography
------------------------------------------------ */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 500px;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.25s;
}

/* ------------------------------------------------
   Search Bar
------------------------------------------------ */
.hero-search-wrap {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.35s;
}

.hero-search-group {
  display: flex;
  max-width: 570px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-search-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  border: none;
  outline: none;
  color: var(--text);
  background: var(--white);
}

.hero-search-input::placeholder {
  color: #494949;
}

.hero-search-btn {
  background: var(--primary);
  border: none;
  padding: 0 1.25rem;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-search-btn:hover {
  background: var(--primary-hover);
}

/* ------------------------------------------------
   Buttons wrap
------------------------------------------------ */
.hero-buttons {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.45s;
}

/* ------------------------------------------------
   Animation
------------------------------------------------ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
    background-position: 70% center;
  }
  .hero-inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-search-group {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 90vh;
    background-position: 60% center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

/* ================================================
   NATIONAL STATS SECTION
   ================================================ */
.national-stats-section {
  position: relative;
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.national-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(11, 47, 107, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(11, 47, 107, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* Cards */
.ns-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 0 4px 16px rgba(11, 47, 107, 0.06);
}

.ns-card:hover {
  border-color: var(--secondary);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(11, 47, 107, 0.15);
}

.ns-card-featured {
  background: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 30px rgba(11, 47, 107, 0.2);
}

.ns-card-featured:hover {
  border-color: var(--secondary);
  box-shadow: 0 20px 50px rgba(11, 47, 107, 0.25);
}

.ns-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.ns-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}

.ns-card:hover .ns-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Default card — dark number */
.ns-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

/* Default card label */
.ns-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

/* Featured (dark bg) card label — white */
.ns-card-featured .ns-label {
  color: var(--white) !important;
}

/* Default card desc */
.ns-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Featured (dark bg) card desc — white */
.ns-card-featured .ns-desc {
  color: var(--white) !important;
}

.ns-card-featured .ns-number {
  color: var(--white);
}

.ns-card-featured .ns-label {
  color: rgba(255, 255, 255, 0.75);
}

.ns-card-featured .ns-desc {
  color: rgba(255, 255, 255, 0.65);
}

.ns-card-featured .ns-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.ns-card-featured .ns-divider {
  background: var(--white);
}

.ns-divider {
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

/* Info Strip */
.ns-info-strip {
  background: var(--card-special);
  border: 1.5px solid var(--gray);
  border-radius: 12px;
  padding: 1.25rem 2rem;
}

.ns-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  justify-content: center;
}

.ns-strip-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .national-stats-section {
    padding: 4rem 0;
  }
  .ns-number {
    font-size: 2.8rem;
  }
  .ns-card {
    padding: 2rem 1.5rem;
  }
  .ns-info-strip {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .ns-number {
    font-size: 2.4rem;
  }
  .ns-strip-item {
    justify-content: flex-start;
  }
}

/* ================================================
   MAP SECTION
   ================================================ */

/* ---- Section Wrapper ---- */
.map-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

/* ---- Map outer box ---- */
.map-wrapper-outer {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(11, 47, 107, 0.07);
  position: relative;
}

/* ---- Legend ---- */
.map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.dot-available {
  background: #0b2f6b;
}
.dot-reserved {
  background: #f59e0b;
}
.dot-sold {
  background: #dc2626;
}

/* ---- Info Panel ---- */
.map-info-panel {
  display: none;
  margin-top: 1.5rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(11, 47, 107, 0.08);
  animation: panelFadeIn 0.3s ease;
}

.map-info-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-info-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-info-state {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  flex: 1;
}

.map-info-status {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.status-available {
  background: #e8eef8;
  color: #0b2f6b;
  border: 1.5px solid #0b2f6b;
}

.status-reserved {
  background: #fef3c7;
  color: #92400e;
  border: 1.5px solid #f59e0b;
}

.status-sold {
  background: #fee2e2;
  color: #991b1b;
  border: 1.5px solid #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
  .map-section {
    padding: 4rem 0;
  }
  .map-wrapper-outer {
    padding: 1rem;
  }
  .map-legend {
    gap: 1rem;
  }
  .map-info-state {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .map-legend {
    gap: 0.75rem;
  }
  .legend-item {
    font-size: 0.8rem;
  }
}

/* ================================================
   HOW BLIGHT FORCE™ WORKS SECTION
   ================================================ */

.how-it-works-section {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

/* ---- Header ---- */
.hiw-header-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* ---- Grid wrapper with connecting line ---- */
.hiw-grid-wrapper {
  position: relative;
}

.hiw-grid-wrapper::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(10% + 1.5rem);
  width: calc(80% - 3rem);
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-light),
    var(--primary) 30%,
    var(--primary) 70%,
    var(--primary-light)
  );
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .hiw-grid-wrapper::before {
    display: none;
  }
}

/* ---- Card ---- */
.hiw-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 20px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(11, 47, 107, 0.05);
}

.hiw-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 47, 107, 0.13);
}

/* ---- Accent (Profit) card ---- */
.hiw-card-accent {
  background: var(--primary);
  border-color: var(--primary);
}

.hiw-card-accent:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 47, 107, 0.25);
}

/* ---- Number ring ---- */
.hiw-num-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--primary-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  /* "Punches out" the connecting line visually */
  box-shadow: 0 0 0 5px var(--light);
  transition: all 0.3s ease;
}

.hiw-card:hover .hiw-num-ring {
  border-color: var(--primary);
  background: var(--primary-light);
}

.hiw-card-accent .hiw-num-ring {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  box-shadow: 0 0 0 5px var(--primary);
}

.hiw-card-accent:hover .hiw-num-ring {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  color: var(--white) !important;
}

/* ---- Icon ---- */
.hiw-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.1rem;
  transition: all 0.3s ease;
}

.hiw-card:hover .hiw-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
}

.hiw-card-accent .hiw-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.hiw-card-accent:hover .hiw-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(6deg);
}

/* ---- Title ---- */
.hiw-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.65rem;
}

.hiw-card-accent .hiw-title {
  color: var(--white);
}

/* ---- Description ---- */
.hiw-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.hiw-card-accent .hiw-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Profit tag (accent card only) ---- */
.hiw-profit-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  margin-top: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .how-it-works-section {
    padding: 4rem 0;
  }
  .hiw-card {
    padding: 1.5rem 1.1rem;
  }
}

@media (max-width: 767px) {
  .hiw-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .hiw-num-ring {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }
}

/* ================================================
   HOMEPAGE LATEST NEWS SECTION
   ================================================ */

.latest-news-section {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.latest-news-section .section-header-news {
  text-align: center;
  margin-bottom: 3rem;
}

.latest-news-section .section-header-news h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.latest-news-section .section-header-news p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.latest-news-section .news-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .latest-news-section {
    padding: 4rem 0;
  }

  .latest-news-section .section-header-news h2 {
    font-size: 1.8rem;
  }
}

/* ================================================
   HOMEPAGE FEATURED SERVICES SECTION
   ================================================ */

.feat-srv-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

/* ── BIG CARDS (top row) ────────────────────── */

.feat-srv-card {
  background: var(--card-special);
  border: 2px solid var(--gray);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.feat-srv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.feat-srv-card:hover::after {
  width: 100%;
}

.feat-srv-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11, 47, 107, 0.12);
}

/* Hero variant — featured card */
.feat-srv-card--hero {
  background: var(--primary-light);
  border-color: var(--primary);
}

.feat-srv-card--hero::after {
  background: var(--secondary);
  width: 100%;
}

.feat-srv-card--hero:hover {
  background: var(--primary);
}

.feat-srv-card--hero:hover .feat-srv-title,
.feat-srv-card--hero:hover .feat-srv-step,
.feat-srv-card--hero:hover .feat-srv-desc,
.feat-srv-card--hero:hover .feat-srv-tags li {
  color: var(--white);
}

.feat-srv-card--hero:hover .feat-srv-tags i {
  color: rgba(255, 255, 255, 0.7);
}

.feat-srv-card--hero:hover .feat-srv-cta {
  background: var(--white);
  color: var(--primary) !important;
}

/* Most Requested badge */
.feat-srv-card-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--warning);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}

/* Icon */
.feat-srv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.feat-srv-card:hover .feat-srv-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Step tag */
.feat-srv-step {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* Title */
.feat-srv-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

/* Desc */
.feat-srv-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
  transition: color 0.3s ease;
}

/* Tags list */
.feat-srv-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feat-srv-tags li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.feat-srv-tags i {
  color: var(--success);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

/* CTA link */
.feat-srv-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.25s ease;
  margin-top: auto;
}

.feat-srv-cta:hover {
  background: var(--primary-hover);
  transform: translateX(3px);
}

/* ── COMPACT TILES (bottom row) ─────────────── */

.feat-srv-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feat-srv-tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.feat-srv-tile:hover::after {
  width: 100%;
}

.feat-srv-tile:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(11, 47, 107, 0.12);
}

/* danger emergency tile */
.feat-srv-tile--danger:hover {
  border-color: var(--danger);
}

.feat-srv-tile--danger::after {
  background: var(--danger);
}

.feat-srv-tile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feat-srv-tile:hover .feat-srv-tile-icon {
  transform: scale(1.12) rotate(6deg);
}

.feat-srv-tile-body {
  flex: 1;
  min-width: 0;
}

.feat-srv-tile-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 1px 0.6rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.feat-srv-tile-body h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.feat-srv-tile-body p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.feat-srv-tile-arrow {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.feat-srv-tile:hover .feat-srv-tile-arrow {
  transform: translateX(4px);
}

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 991px) {
  .feat-srv-section {
    padding: 4rem 0;
  }
  .feat-srv-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .feat-srv-tile {
    padding: 1.1rem;
  }
  .feat-srv-tile-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .feat-srv-tile-body h5 {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .feat-srv-card {
    padding: 1.5rem 1.25rem;
  }
  .feat-srv-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .feat-srv-title {
    font-size: 1rem;
  }
}

/* ================================================
   STATS SECTION (MODERNIZED)
   ================================================ */

.stats-section {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Background pattern from the first snippet */
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
  pointer-events: none;
}

.stat-item {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1; /* Ensures text stays above the pattern */
}

/* Float effect on hover */
.stat-item:hover {
  transform: translateY(-8px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(11, 47, 107, 0.15);
}

/* Scale and Rotate effect on hover */
.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(360deg);
}

.stat-item h3 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item p {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.stat-bar {
  width: 60px;
  height: 4px;
  background: var(--white) !important;
  margin: 0 auto;
  border-radius: 2px;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
  padding: 6rem 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
}

.cta-section .container-lg {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(11, 47, 107, 0.3);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(11, 47, 107, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(11, 47, 107, 0.5);
  }
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto;
}

/* Newsletter Form */
.cta-form {
  margin-top: 2.5rem;
}

.newsletter-input-group {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-input {
  border: none;
  padding: 1.25rem 2rem !important;
  font-size: 1rem !important;
  background: var(--white);
  color: var(--text);
  border-radius: 50px 0 0 50px !important;
}

.newsletter-input:focus {
  box-shadow: none;
  outline: none;
  background: var(--white);
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.btn-cta-primary {
  background-color: var(--secondary) !important;
  border: none;
  color: var(--white) !important;
  font-weight: 700;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  border-radius: 0 50px 50px 0 !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-primary:hover {
  color: var(--white-light) !important;
  transform: translateX(-3px);
  box-shadow: 0 5px 20px rgba(11, 47, 107, 0.3);
}

.cta-privacy-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.cta-privacy-text i {
  color: var(--white);
}

/* Trust Badges */
.cta-trust-badges {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-item {
  padding: 1.5rem;
}

.trust-badge-item i {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.trust-badge-item h4 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.trust-badge-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter-input {
    border-radius: 12px 12px 0 0 !important;
    padding: 1rem 1.5rem;
  }

  .btn-cta-primary {
    border-radius: 0 0 12px 12px !important;
    padding: 1rem 2rem;
    width: 100%;
  }

  .trust-badge-item {
    padding: 1rem;
  }

  .trust-badge-item i {
    font-size: 2rem;
  }

  .trust-badge-item h4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .trust-badge-item h4 {
    font-size: 1.5rem;
  }
}

/* ================================================
   ABOUT PAGE STYLING
   ================================================ */

.about-hero-section {
  padding: 6rem 0;
  background: var(--white);
}

.about-hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-hero-title span {
  color: var(--accent);
}

.about-hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Stats Mini Row */
.about-stats-mini {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray);
}

.stat-mini-item h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-mini-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Hero Image */
.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ------------------------------------------------
   MISSION & VISION SECTION
------------------------------------------------ */
.mission-vision-section {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.mission-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  height: 100%;
  border: 2px solid var(--gray);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: 0;
}

.mission-card.vision-card::before {
  background: var(--secondary);
}

.mission-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(11, 47, 107, 0.12);
  transform: translateY(-6px);
}

.mission-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.75rem;
  transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
}

.mission-icon.secondary {
  background: var(--secondary);
}

.mission-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.mission-card p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray);
}

.mission-list li:last-child {
  border-bottom: none;
}

.mission-list i {
  color: var(--success);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ------------------------------------------------
   OUR STORY / HISTORY SECTION
------------------------------------------------ */
.our-story-section {
  padding: 6rem 0;
  background: var(--white);
}

.story-image-wrapper {
  position: relative;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.story-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.story-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.story-content p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Milestones Grid */
.story-milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.milestone-item {
  background: var(--light);
  padding: 1.4rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.milestone-item:hover {
  background: var(--primary-light);
  transform: translateX(4px);
}

.milestone-year {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.milestone-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 500;
}

/* ------------------------------------------------
   WHY BLIGHT FORCE™ SECTION
------------------------------------------------ */
.why-blight-section {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.why-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 2px solid var(--gray);
  transition: all 0.35s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.why-card:hover::after {
  width: 100%;
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 36px rgba(11, 47, 107, 0.12);
  transform: translateY(-8px);
}

.why-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.35s ease;
}

.why-icon.primary {
  background: var(--primary);
  color: var(--white);
}
.why-icon.secondary {
  background: var(--secondary);
  color: var(--white);
}
.why-icon.success {
  background: var(--success);
  color: var(--white);
}
.why-icon.info {
  background: var(--info);
  color: var(--white);
}

.why-card:hover .why-icon {
  transform: scale(1.12) rotate(6deg);
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ------------------------------------------------
   STRATEGIC PARTNERS SECTION
------------------------------------------------ */
.partners-section {
  padding: 6rem 0;
  background: var(--white);
}

.partner-card {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.partner-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 47, 107, 0.1);
  transform: translateY(-5px);
}

.partner-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.partner-icon.primary {
  background: var(--primary);
  color: var(--white);
}
.partner-icon.secondary {
  background: var(--secondary);
  color: var(--white);
}
.partner-icon.success {
  background: var(--success);
  color: var(--white);
}
.partner-icon.warning {
  background: var(--warning);
  color: var(--dark);
}

.partner-card:hover .partner-icon {
  transform: scale(1.1) rotate(8deg);
}

.partner-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.partner-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ------------------------------------------------
   ABOUT PAGE CTA SECTION  (reuses .cta-section)
------------------------------------------------ */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0b2f6b 0%, #01224f 60%, #0d1b2a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
  pointer-events: none;
}

.about-cta-section h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about-cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.about-cta-section .btn-group-responsive {
  position: relative;
  z-index: 1;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 2.4rem;
  }
  .story-milestones {
    grid-template-columns: 1fr;
  }
  .about-hero-image img,
  .story-image-wrapper img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .about-hero-section,
  .mission-vision-section,
  .our-story-section,
  .why-blight-section,
  .leadership-section,
  .impact-section,
  .partners-section,
  .about-cta-section {
    padding: 4rem 0;
  }

  .about-hero-title {
    font-size: 2rem;
  }
  .about-hero-text {
    font-size: 1rem;
  }
  .about-stats-mini {
    gap: 1.5rem;
  }
  .stat-mini-item h3 {
    font-size: 1.8rem;
  }
  .mission-card {
    padding: 2rem;
  }
  .mission-card h2 {
    font-size: 1.5rem;
  }
  .story-content h3 {
    font-size: 1.6rem;
  }
  .about-cta-section h2 {
    font-size: 2rem;
  }

  .about-hero-image img,
  .story-image-wrapper img {
    height: 280px;
  }

  .leader-image,
  .leader-avatar {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 1.75rem;
  }
  .about-stats-mini {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .stat-mini-item {
    flex: 1 1 calc(33% - 0.5rem);
    text-align: center;
  }

  .about-cta-section h2 {
    font-size: 1.6rem;
  }
  .impact-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  .story-milestones {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ================================================
   LOGIN PAGE
   ================================================ */

/* ── FORM CARD WIDTH ──────────────────────────── */
.login-col {
  max-width: 680px;
  width: 100%;
}

/* ── ERROR ALERT ─────────────────────────────── */
.login-error-box {
  display: none;
  background: var(--danger-light);
  border: 1.5px solid var(--danger);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #991b1b;
  font-size: 0.92rem;
}

.login-error-box i {
  margin-right: 0.5rem;
}

/* ── REMEMBER / FORGOT ROW ───────────────────── */
.login-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.login-forgot-link {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.login-forgot-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* ── SECURITY NOTE ───────────────────────────── */
.login-security-note {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.login-security-note i {
  margin-right: 0.25rem;
}

/* ── DIVIDER ─────────────────────────────────── */
.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.login-divider hr {
  flex: 1;
  border: none;
  border-top: 2px solid var(--gray);
  margin: 0;
}

.login-divider-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── APPLY BUTTON ────────────────────────────── */
.login-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: all 0.3s ease;
}

.login-apply-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 47, 107, 0.25);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .login-col {
    max-width: 100%;
  }
}

/* ================================================
   APPLY-NOW PAGE — ALREADY HAVE ACCOUNT BANNER
   ================================================ */

.apply-login-banner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem;
  background: var(--primary-light) !important;
  border: 2px solid var(--primary) !important;
  border-radius: 14px !important;
  padding: 1.25rem 1.75rem !important;
  margin-bottom: 1.75rem !important;
  flex-wrap: wrap;
}

.apply-login-banner-left {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.apply-login-banner-icon {
  width: 48px !important;
  height: 48px !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  flex-shrink: 0;
}

.apply-login-banner-title {
  font-size: 0.97rem !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin: 0 0 0.25rem 0 !important;
  display: block;
}

.apply-login-banner-sub {
  font-size: 0.83rem !important;
  color: var(--text-light) !important;
  margin: 0 !important;
  line-height: 1.5;
  display: block;
}

.apply-login-banner-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem;
  background: var(--primary) !important;
  color: var(--white) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
  border: none !important;
}

.apply-login-banner-btn:hover {
  background: var(--primary-hover) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 47, 107, 0.3);
}

@media (max-width: 575px) {
  .apply-login-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem 1.25rem !important;
  }
  .apply-login-banner-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ================================================
   OWN A STATE PAGE — STYLING
   ================================================ */

/* BENEFITS SECTION */
.oas-benefits-section {
  padding: 6rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
}

.oas-benefit-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 18px;
  padding: 2.75rem 2.25rem;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
}

.oas-benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11, 47, 107, 0.13);
}

.oas-benefit-featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(11, 47, 107, 0.2);
}

.oas-benefit-featured:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 24px 60px rgba(11, 47, 107, 0.3);
}

.oas-benefit-featured::after {
  background: var(--white);
}

.oas-benefit-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.oas-benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.oas-benefit-card:hover .oas-benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.oas-benefit-featured .oas-benefit-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Card 1 & 3 icon slightly different shade */
.oas-benefit-primary .oas-benefit-icon {
  background: var(--secondary);
}
.oas-benefit-secondary .oas-benefit-icon {
  background: var(--secondary);
}

.oas-benefit-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.oas-benefit-featured .oas-benefit-title {
  color: var(--white);
}

.oas-benefit-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.oas-benefit-featured .oas-benefit-desc {
  color: rgba(255, 255, 255, 0.8);
}

.oas-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.oas-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.oas-benefit-featured .oas-benefit-list li {
  color: rgba(255, 255, 255, 0.9);
}

.oas-benefit-list i {
  color: var(--success);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.oas-benefit-featured .oas-benefit-list i {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   REVENUE SECTION
   ================================================ */
.oas-revenue-section {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.oas-revenue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
  pointer-events: none;
}

.oas-revenue-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.oas-tier {
  width: 100%;
  position: relative;
  z-index: 1;
}

.oas-tier-inner {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.oas-tier-inner:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.oas-tier-1 .oas-tier-inner {
  border-color: var(--warning);
}
.oas-tier-2 .oas-tier-inner {
  border-color: rgba(255, 255, 255, 0.4);
}
.oas-tier-3 .oas-tier-inner {
  border-color: rgba(255, 255, 255, 0.25);
}
.oas-tier-4 .oas-tier-inner {
  border-color: var(--success);
}

.oas-tier-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.oas-tier-1 .oas-tier-icon {
  background: var(--warning);
  color: var(--dark);
}
.oas-tier-4 .oas-tier-icon {
  background: var(--success);
  color: var(--white);
}

/* Text block sits beside icon */
.oas-tier-text {
  flex: 1;
  min-width: 0;
}

.oas-tier-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 0.25rem;
  display: block;
}

.oas-tier-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.oas-tier-desc {
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

.oas-flow-arrow {
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.5rem 0;
  text-align: center;
}

.oas-rev-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.oas-rev-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.oas-rev-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.oas-rev-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ================================================
   REQUIREMENTS SECTION
   ================================================ */
.oas-requirements-section {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.oas-req-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.35s ease;
}

.oas-req-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(11, 47, 107, 0.12);
  transform: translateY(-6px);
}

.oas-req-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.oas-req-card:hover .oas-req-icon {
  transform: scale(1.1) rotate(6deg);
}

.oas-req-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.oas-req-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.oas-req-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.oas-req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.oas-req-item i {
  color: var(--success);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.oas-req-strip {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}

/* ================================================
   APPLICATION SECTION
   ================================================ */
.oas-apply-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
}

.oas-form-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(11, 47, 107, 0.15);
  border: 2px solid var(--gray);
}

.oas-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.oas-form-header-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.oas-form-body {
  background: var(--white);
  padding: 2.5rem;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.oas-faq-section {
  padding: 6rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
}

.oas-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.oas-faq-item {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.oas-faq-item.open {
  border-color: var(--primary);
}

.oas-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary);
  transition: background 0.2s ease;
  font-family: inherit;
}

.oas-faq-btn:hover {
  background: var(--primary-light);
}

.oas-faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.oas-faq-item.open .oas-faq-icon {
  transform: rotate(45deg);
}

.oas-faq-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--gray);
}

.oas-faq-item.open .oas-faq-body {
  display: block;
}

.oas-faq-body p {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .oas-benefits-section,
  .oas-revenue-section,
  .oas-requirements-section,
  .oas-apply-section,
  .oas-faq-section {
    padding: 4rem 0;
  }

  .oas-tier-inner {
    padding: 1.25rem;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .oas-benefit-card {
    padding: 2rem 1.5rem;
  }
  .oas-form-body {
    padding: 1.5rem;
  }
  .oas-form-header {
    padding: 1.5rem;
  }
  .oas-req-strip {
    padding: 1.25rem;
  }
}

@media (max-width: 575px) {
  .oas-tier-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .oas-tier-title {
    font-size: 0.95rem;
  }
  .oas-rev-number {
    font-size: 1.9rem;
  }
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

/* Contact Main Section */
.contact-main-section {
  padding: 6rem 0;
  background: var(--white);
}

/* Contact Information */
.contact-info-wrapper {
  position: sticky;
  top: 100px;
}

.contact-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: var(--primary-light);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.contact-info-content a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--secondary);
}

/* Social Links */
.contact-social-links {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray);
}

.contact-social-links h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.social-icons-contact {
  display: flex;
  gap: 1rem;
}

.social-icons-contact a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.social-icons-contact a:hover {
  background: var(--secondary);
  color: var(--white-light);
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(1, 34, 79, 0.1);
  border: 2px solid var(--gray);
}

.form-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-input {
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(11, 47, 107, 0.2);
  outline: none;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .contact-input {
  padding-right: 3rem;
}

.input-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.1rem;
  cursor: pointer;
}

textarea.contact-input {
  resize: vertical;
  min-height: 150px;
}

select.contact-input {
  cursor: pointer;
}

/* Submit Button */
.contact-form button[type="submit"] {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* Alert Messages */
.alert {
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-weight: 500;
}

/* Map Section */
.contact-map-section {
  padding: 4rem 0;
  background: var(--light);
}

.map-wrapper {
  box-shadow: 0 8px 30px rgba(1, 34, 79, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0b2f6b 0%, #01224f 60%, #0d1b2a 100%);
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.15rem !important;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-info-wrapper {
    position: static;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 4rem 0 2rem;
  }

  .contact-hero-title {
    font-size: 2.2rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-main-section {
    padding: 4rem 0;
  }

  .contact-section-title {
    font-size: 1.8rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .contact-map-section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .contact-hero-title {
    font-size: 1.8rem;
  }

  .contact-info-item {
    padding: 1rem;
  }

  .social-icons-contact a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ================================================
   REPORT A PROPERTY PAGE STYLING
   ================================================ */

/* ── STEP CARDS SECTION ──────────────────────── */
.rp-steps-section {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.rp-step-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.rp-step-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.rp-step-card:hover::after {
  width: 100%;
}

.rp-step-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11, 47, 107, 0.13);
}

.rp-step-card--featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(11, 47, 107, 0.2);
}

.rp-step-card--featured::after {
  background: var(--white);
}

.rp-step-card--featured:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 24px 60px rgba(11, 47, 107, 0.3);
}

.rp-step-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.rp-step-card:hover .rp-step-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
}

.rp-step-card--featured .rp-step-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.rp-step-card--featured:hover .rp-step-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(6deg);
}

.rp-step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rp-step-card--featured .rp-step-title {
  color: var(--white);
}

.rp-step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.rp-step-card--featured .rp-step-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ── FORM SECTION ────────────────────────────── */
.rp-form-section {
  padding: 4rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray);
}

.rp-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
}

.rp-status-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: rp-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes rp-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.rp-form-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(11, 47, 107, 0.13);
  border: 2px solid var(--gray);
}

.rp-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.rp-form-header-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rp-form-body {
  background: var(--white);
  padding: 2.5rem;
}

.rp-fieldset-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  border-bottom: 2px solid var(--gray);
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.rp-optional-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gray);
  color: var(--text-muted);
  padding: 0.15rem 0.6rem;
  border-radius: 10px;
  margin-left: 0.3rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Checkboxes */
.rp-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.rp-check-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--gray);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.2s ease;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  user-select: none;
}

.rp-check-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.rp-check-item input[type="checkbox"] {
  display: none;
}

.rp-check-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  font-size: 0.65rem;
  color: transparent;
}

.rp-check-item input[type="checkbox"]:checked + .rp-check-box {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.rp-check-item:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

/* Upload */
.rp-upload-zone {
  border: 2px dashed var(--border-strong);
  border-radius: 12px;
  min-height: 160px;
  background: var(--light);
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.rp-upload-zone:hover,
.rp-upload-drag {
  border-color: var(--primary);
  background: var(--primary-light);
}

.rp-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.rp-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.rp-upload-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.rp-upload-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.rp-upload-sub {
  font-size: 0.87rem;
  color: var(--text-muted);
}
.rp-upload-browse {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}
.rp-upload-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.rp-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem;
}

.rp-preview-item {
  position: relative;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gray);
}

.rp-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rp-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(239, 68, 68, 0.9);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}
.rp-preview-remove:hover {
  background: #dc2626;
}

/* Anon note */
.rp-anon-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
}
.rp-anon-note i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Success */
.rp-success-icon {
  width: 90px;
  height: 90px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
}

.rp-success-ref {
  display: inline-block;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  padding: 9px 7px 12px 7px;
  border-radius: 8px;
}

/* ── WHAT HAPPENS NEXT SECTION ───────────────── */
.rp-next-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.rp-next-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.rp-next-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.rp-next-card:hover::after {
  width: 100%;
}

.rp-next-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11, 47, 107, 0.13);
}

.rp-next-card--featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(11, 47, 107, 0.2);
}

.rp-next-card--featured::after {
  background: var(--white);
}

.rp-next-card--featured:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.rp-next-card-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.rp-next-card:hover .rp-next-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
}

.rp-next-card--featured .rp-next-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.rp-next-card--featured:hover .rp-next-card-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(6deg);
}

.rp-next-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.65rem;
}

.rp-next-card--featured .rp-next-card-title {
  color: var(--white);
}

.rp-next-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.rp-next-card--featured .rp-next-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
  .rp-next-section {
    padding: 4rem 0;
  }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 991px) {
  .rp-steps-section,
  .rp-next-section {
    padding: 4rem 0;
  }
  .rp-form-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .rp-form-body,
  .rp-form-header {
    padding: 1.5rem;
  }
  .rp-next-card {
    padding: 2rem 1.5rem;
  }
  .rp-next-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}

@media (max-width: 575px) {
  .rp-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .rp-preview-item {
    width: 80px;
    height: 65px;
  }
  .rp-next-card-title {
    font-size: 0.9rem;
  }
  .rp-next-card-desc {
    font-size: 0.82rem;
  }
}

/* ============================================
     NEWS PAGE CSS
     ============================================*/

/* Filter Bar */
.news-filter-section {
  padding: 1.5rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 72px;
  z-index: 100;
}
.news-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-filter-left {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.news-filter-btn {
  background: var(--white);
  border: 2px solid var(--gray);
  color: var(--text);
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.news-filter-btn:hover,
.news-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.news-search-wrap {
  position: relative;
}
.news-search-input {
  border: 2px solid var(--gray);
  border-radius: 6px;
  padding: 0.45rem 2.5rem 0.45rem 1rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s ease;
  font-family: inherit;
  width: 220px;
}
.news-search-input:focus {
  border-color: var(--primary);
}
.news-search-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Cat Badges */
.news-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  z-index: 2;
}
.cat-territory {
  background: var(--primary);
  color: var(--white);
}
.cat-contracts {
  background: var(--success);
  color: var(--white);
}
.cat-industry {
  background: var(--info);
  color: var(--white);
}
.cat-events {
  background: var(--warning);
  color: var(--dark);
}

/* Meta Row */
.news-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-date,
.news-read-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Author */
.news-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.author-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Listing */
.news-listing-section {
  padding: 3.5rem 0 5rem;
  background: var(--white);
}
.news-section-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.news-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.section-header-news {
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray);
  padding-bottom: 1rem;
}

/* News Card */
.news-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}
.news-card {
  border: 2px solid var(--gray);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  height: 100%;
  transition: all 0.3s ease;
}
.news-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.13);
}
.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.08);
}
.news-card-body {
  padding: 1.4rem;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin: 0.6rem 0 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.news-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}
.read-more-link {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* Pagination */
.news-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray);
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.page-next {
  width: auto;
  padding: 0 1rem;
}
.page-dots {
  color: var(--text-muted);
  font-weight: 700;
}

/* Sidebar */
.news-sidebar {
  position: sticky;
  top: 130px;
}
.sidebar-widget {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}
.widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray);
}
.widget-newsletter {
  background: var(--primary);
  border-color: var(--primary);
  text-align: center;
}
.widget-newsletter .widget-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.widget-newsletter h4 {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.widget-newsletter p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.widget-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  outline: none;
  font-family: inherit;
}
.widget-btn {
  width: 100%;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.widget-btn:hover {
  background: var(--white-light);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

/* Categories */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--gray);
  background: var(--white);
  transition: all 0.25s ease;
}
.category-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.cat-count {
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .news-sidebar {
    position: static;
    margin-top: 3rem;
  }
  .news-grid-wrap {
    padding-right: 0 !important;
  }
  .news-featured-img {
    min-height: 300px;
  }
  .news-featured-content {
    padding: 2rem;
  }
  .news-featured-title {
    font-size: 1.35rem;
  }
}
@media (max-width: 767px) {
  .news-filter-section {
    top: 60px;
  }
  .news-search-input {
    width: 180px;
  }
  .news-featured-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .news-filter-left {
    gap: 0.35rem;
  }
  .news-filter-btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
  .news-search-wrap {
    width: 100%;
  }
  .news-search-input {
    width: 100%;
  }
}

/* ================================================
   NEWS DETAIL PAGE
   ================================================ */

/* ================================================
   HERO SECTION
   ================================================ */
.nd-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b2f6b 0%, #01224f 60%, #0d1b2a 100%);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.nd-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.12;
  pointer-events: none;
}

.nd-hero-overlay {
  display: none; /* overlay handled by bg gradient */
}

.nd-hero-inner {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.nd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.83rem;
  flex-wrap: wrap;
}

.nd-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nd-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.nd-breadcrumb i.fa-chevron-right {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
}

.nd-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Hero Badge */
.nd-hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}

/* Hero Title */
.nd-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* Hero Subtitle */
.nd-hero-subtitle {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 780px;
}

/* Hero Meta Bar */
.nd-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nd-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nd-author-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nd-author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.nd-author-date {
  display: block;
  font-size: 0.78rem;
  color: var(--white);
}

/* Share row — hero variant */
.nd-share-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nd-share-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.nd-share-btn-hero {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nd-share-btn-hero:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ================================================
   CONTENT SECTION
   ================================================ */
.nd-content-section {
  padding: 4rem 0 5rem;
  background: var(--white);
}

/* ================================================
   ARTICLE BODY
   ================================================ */
.nd-article-body {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.85;
}

.nd-article-body h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray);
}

.nd-article-body p {
  margin-bottom: 1.25rem;
}

/* Highlight Box */
.nd-highlight-box {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.nd-highlight-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.85rem;
}

.nd-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nd-highlight-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.nd-highlight-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--success);
  font-size: 0.8rem;
}

/* States Grid */
.nd-states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.nd-state-item {
  background: var(--light);
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.nd-state-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.nd-state-item i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* Pullquote */
.nd-pullquote {
  border-left: 5px solid var(--primary);
  background: var(--light);
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.6;
}

.nd-pullquote cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Article List */
.nd-article-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.nd-article-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.nd-article-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--success);
  font-size: 0.85rem;
}

/* Info Box */
.nd-info-box {
  display: flex;
  gap: 1rem;
  background: var(--info-light);
  border-left: 4px solid var(--info);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.nd-info-box i {
  color: var(--info);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Share Bottom */
.nd-share-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 1.25rem 0;
  border-top: 2px solid var(--gray);
}

/* Share Btn — light bg version (article body) */
.nd-share-btn {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nd-share-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Author Box */
.nd-author-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 2.5rem;
}

.nd-author-avatar-lg {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nd-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nd-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nd-author-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.3rem;
}

.nd-author-box-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.nd-author-box-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ================================================
   SIDEBAR
   ================================================ */
.nd-sidebar {
  position: sticky;
  top: 90px;
}

/* Featured Image in Sidebar */
.nd-sidebar-featured-img {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gray);
  margin-bottom: 1.75rem;
  box-shadow: 0 6px 24px rgba(11, 47, 107, 0.1);
}

.nd-sidebar-featured-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nd-sidebar-featured-img:hover img {
  transform: scale(1.04);
}

.nd-img-caption {
  display: block;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  padding: 0.55rem 1rem;
  font-style: italic;
  line-height: 1.4;
}

/* Sidebar Widget */
.nd-sidebar-widget {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.nd-widget-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray);
}

/* TOC */
.nd-toc {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nd-toc-item {
  font-size: 0.86rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1.4;
}

.nd-toc-item:hover,
.nd-toc-item.active {
  color: var(--primary);
  background: var(--primary-light);
  border-left-color: var(--primary);
}

/* Related */
.nd-related-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nd-related-item {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.4rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nd-related-item:hover {
  background: var(--primary-light);
}

.nd-related-thumb {
  width: 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.nd-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nd-related-text span {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.nd-related-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nd-related-item:hover .nd-related-text span {
  color: var(--primary);
}

/* ================================================
   MORE STORIES
   ================================================ */
.nd-more-section {
  padding: 5rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
}

/* ================================================
   NEWS CARD (reuse from news.php)
   ================================================ */
.news-card-title-link {
  text-decoration: none;
  display: block;
}
.news-card-title-link:hover .news-card-title {
  color: var(--dark);
}
.read-more-link {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
}
.read-more-link:hover {
  color: var(--dark);
}
.news-card {
  border: 2px solid var(--gray);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  height: 100%;
  transition: all 0.3s ease;
}
.news-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.13);
}
.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.08);
}
.news-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  z-index: 2;
}
.cat-territory {
  background: var(--white);
  color: var(--primary);
}
.cat-contracts {
  background: var(--success);
  color: var(--white);
}
.cat-industry {
  background: var(--info);
  color: var(--white);
}
.cat-events {
  background: var(--warning);
  color: var(--dark);
}
.news-card-body {
  padding: 1.4rem;
}
.news-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-date,
.news-read-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin: 0.6rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-footer {
  display: flex;
  align-items: center;
}
.read-more-link {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .nd-sidebar {
    position: static;
    margin-top: 2.5rem;
  }
  .nd-hero-title {
    font-size: 1.85rem;
  }
  .nd-hero-subtitle {
    font-size: 0.97rem;
  }
  .nd-sidebar-featured-img img {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .nd-hero-section {
    padding: 2.5rem 0 3rem;
  }
  .nd-hero-title {
    font-size: 1.55rem;
  }
  .nd-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .nd-states-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nd-pullquote {
    padding: 1.25rem;
    font-size: 1rem;
  }
  .nd-author-box {
    flex-direction: column;
  }
  .nd-article-body h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 575px) {
  .nd-hero-title {
    font-size: 1.35rem;
  }
  .nd-hero-subtitle {
    font-size: 0.9rem;
  }
  .nd-states-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nd-share-bottom {
    flex-wrap: wrap;
  }
}

/* ================================================
   SERVICES PAGE STYLING
   ================================================ */

.srv-filter-section {
  padding: 1.5rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.srv-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.srv-filter-left {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.srv-filter-btn {
  background: var(--white);
  border: 2px solid var(--gray);
  color: var(--text);
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.srv-filter-btn:hover,
.srv-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.srv-search-wrap {
  position: relative;
}

.srv-search-input {
  border: 2px solid var(--gray);
  border-radius: 6px;
  padding: 0.45rem 2.5rem 0.45rem 1rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s ease;
  font-family: inherit;
  width: 220px;
}

.srv-search-input:focus {
  border-color: var(--primary);
}

.srv-search-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  pointer-events: none;
}

/* ================================================
   SERVICES PAGE — MAIN LIST
   ================================================ */

.srv-list-section {
  padding: 3.5rem 0 5rem;
  background: var(--white);
}

.srv-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray);
  padding-bottom: 1rem;
}

.srv-list-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.srv-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Service Item (list row) ───────────────────── */

.srv-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 2px solid var(--gray);
  border-radius: 14px;
  background: var(--white);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.srv-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.srv-item:hover::after {
  width: 100%;
}

.srv-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(11, 47, 107, 0.1);
  transform: translateY(-3px);
}

.srv-item-featured {
  background: var(--primary-light);
  border-color: var(--primary);
}

.srv-item-featured::after {
  background: var(--secondary);
  width: 100%;
}

/* Icon */
.srv-item-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.srv-item:hover .srv-item-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Body */
.srv-item-body {
  flex: 1;
  min-width: 0;
}

.srv-item-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.srv-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* Category badge colors */
.badge-land {
  background: #e8eef8;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.badge-demolition {
  background: #fee2e2;
  color: #991b1b;
  border: 1.5px solid #ef4444;
}
.badge-cleanup {
  background: #d1fae5;
  color: #065f46;
  border: 1.5px solid var(--success);
}
.badge-securing {
  background: #fef3c7;
  color: #92400e;
  border: 1.5px solid var(--warning);
}
.badge-remediation {
  background: #eff6ff;
  color: #1e40af;
  border: 1.5px solid var(--info);
}

.srv-step-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--gray);
}

.srv-featured-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--warning);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}

.srv-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.srv-item-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.srv-item-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.srv-item-tags li {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.srv-item-tags i {
  color: var(--success);
  font-size: 0.7rem;
}

/* CTA button on item */
.srv-item-cta {
  flex-shrink: 0;
  align-self: center;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.srv-item-cta:hover {
  background: var(--primary-hover);
  transform: translateX(3px);
}

/* ================================================
   SERVICES PAGE — SIDEBAR
   ================================================ */

.srv-sidebar {
  position: sticky;
  top: 130px;
}

.srv-widget {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.srv-widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray);
}

/* CTA widget */
.srv-widget-cta {
  background: var(--primary);
  border-color: var(--primary);
  text-align: center;
}

.srv-widget-cta .srv-widget-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.srv-widget-cta h4 {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.srv-widget-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* Category list */
.srv-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.srv-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--gray);
  background: var(--white);
  transition: all 0.25s ease;
}

.srv-cat-item:hover,
.srv-cat-item.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.srv-cat-count {
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
}

/* 14-Step process list */
.srv-process-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.srv-process-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text);
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray);
}

.srv-process-item:last-child {
  border-bottom: none;
}

.srv-process-num {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ================================================
   SERVICES PAGE — CTA STRIP
   ================================================ */

.srv-cta-strip {
  padding: 3rem 0;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================
   SERVICE DETAIL PAGE — PROCESS STEPS
   ================================================ */

.srv-detail-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0 2rem;
  position: relative;
}

.srv-detail-process::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  z-index: 0;
}

.srv-detail-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.srv-detail-step-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--white);
  position: relative;
  z-index: 2;
}

.srv-detail-step-body {
  background: var(--light);
  border: 1.5px solid var(--gray);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  flex: 1;
  transition: all 0.25s ease;
}

.srv-detail-step-body:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.srv-detail-step-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.srv-detail-step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ================================================
   SERVICE DETAIL PAGE — RELATED SERVICE CARDS
   ================================================ */

.srv-related-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.srv-related-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  gap: 0.4rem;
}

.srv-related-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.13);
}

.srv-related-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.srv-related-card:hover .srv-related-icon {
  transform: scale(1.1) rotate(6deg);
}

.srv-related-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin: 0.25rem 0;
}

.srv-related-step {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.srv-related-cta {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.srv-related-card:hover .srv-related-cta {
  color: var(--secondary);
}

/* ================================================
   RESPONSIVE — SERVICES
   ================================================ */

@media (max-width: 991px) {
  .srv-sidebar {
    position: static;
    margin-top: 3rem;
  }
  .srv-list-wrap {
    padding-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .srv-filter-section {
    top: 60px;
  }
  .srv-search-input {
    width: 180px;
  }
  .srv-item {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .srv-item-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .srv-filter-left {
    gap: 0.35rem;
  }
  .srv-filter-btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
  .srv-search-wrap {
    width: 100%;
  }
  .srv-search-input {
    width: 100%;
  }
  .srv-item {
    padding: 1.25rem 1rem;
  }
  .srv-item-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .srv-detail-process::before {
    display: none;
  }
  .srv-detail-step-num {
    box-shadow: none;
  }
}

/* ================================================
   TERRITORIES PAGE STYLING
   ================================================ */

/* ── HERO LEGEND ─────────────────────────────── */
.terr-hero-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.terr-legend-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.terr-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.terr-dot-available {
  background: #10b981;
}
.terr-dot-reserved {
  background: #f59e0b;
}
.terr-dot-sold {
  background: #dc2626;
}

/* ── SECTION 1: MAP ──────────────────────────── */
.terr-map-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.terr-map-outer {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(11, 47, 107, 0.07);
  overflow: hidden;
}

#usa-map {
  width: 100%;
  height: 460px;
}

/* Map Info Panel */
.terr-map-panel {
  display: none;
  margin-top: 1.5rem;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(11, 47, 107, 0.08);
  animation: terrPanelIn 0.3s ease;
}

.terr-map-panel.active {
  display: block;
}

@keyframes terrPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terr-map-panel-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.terr-map-panel-left {
  flex: 1;
  min-width: 160px;
}

.terr-map-state-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.terr-map-state-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.terr-map-state-meta i {
  color: var(--primary);
}

.terr-map-panel-center {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.terr-panel-stat {
  text-align: center;
  padding: 0.6rem 1.1rem;
  background: var(--light);
  border: 1.5px solid var(--gray);
  border-radius: 10px;
  min-width: 130px;
}

.terr-panel-stat span {
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.terr-panel-stat small {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.terr-map-panel-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Quick Stats Strip */
.terr-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 14px;
  overflow: hidden;
  flex-wrap: wrap;
}

.terr-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 2.5rem;
  flex: 1;
  min-width: 120px;
}

.terr-strip-divider {
  width: 1px;
  height: 40px;
  background: var(--gray);
  flex-shrink: 0;
}

.terr-strip-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.terr-num-available {
  color: #10b981;
}
.terr-num-reserved {
  color: #f59e0b;
}
.terr-num-sold {
  color: #dc2626;
}

.terr-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SECTION 2: STATE CARDS ──────────────────── */
.terr-cards-section {
  padding: 6rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray);
}

/* Filter Row */
.terr-card-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.terr-card-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 2px solid var(--gray);
  color: var(--text);
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.terr-card-filter-btn:hover,
.terr-card-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.terr-card-search-wrap {
  position: relative;
}

.terr-card-search {
  border: 2px solid var(--gray);
  border-radius: 6px;
  padding: 0.45rem 2.5rem 0.45rem 1rem;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s ease;
  font-family: inherit;
  width: 220px;
}

.terr-card-search:focus {
  border-color: var(--primary);
}

.terr-card-search-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  pointer-events: none;
}

/* State Card */
.terr-state-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.terr-state-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.terr-state-card:hover::after {
  width: 100%;
}

.terr-state-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.12);
}

.terr-card-reserved {
  background: #fffbeb;
  border-color: #f59e0b;
}

.terr-card-reserved::after {
  background: #f59e0b;
  width: 100%;
}

.terr-card-sold {
  background: #fef2f2;
  border-color: #fca5a5;
  opacity: 0.85;
}

.terr-card-sold::after {
  background: #dc2626;
  width: 100%;
}

.terr-card-sold:hover {
  transform: none;
  box-shadow: none;
}

/* Card Highlight (on map click) */
.terr-card-highlight {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(11, 47, 107, 0.15) !important;
  transform: translateY(-5px) !important;
}

/* Card Header */
.terr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.terr-card-code {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
}

.terr-card-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.terr-status-available {
  background: #d1fae5;
  color: #065f46;
  border: 1.5px solid #10b981;
}

.terr-status-reserved {
  background: #fef3c7;
  color: #92400e;
  border: 1.5px solid #f59e0b;
}

.terr-status-sold {
  background: #fee2e2;
  color: #991b1b;
  border: 1.5px solid #dc2626;
}

.terr-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

/* Card Stats */
.terr-card-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.terr-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: var(--light);
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
  text-align: center;
  gap: 0.2rem;
}

.terr-card-stat i {
  color: var(--primary);
  font-size: 0.8rem;
}

.terr-card-stat span {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.terr-card-stat small {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Market */
.terr-card-market {
  background: var(--light);
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.terr-card-market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.terr-card-market-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.terr-card-market-label i {
  color: var(--primary);
}

.terr-card-market-value {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text);
  text-align: right;
}

.terr-value-highlight {
  color: var(--primary);
}

/* Card Button */
.terr-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
  text-align: center;
}

.terr-card-btn:hover {
  background: var(--primary-hover);
  transform: translateX(2px);
}

.terr-card-btn-reserved {
  background: #fef3c7;
  color: #92400e !important;
  cursor: default;
  font-size: 0.8rem;
}

.terr-card-btn-reserved:hover {
  background: #fef3c7;
  transform: none;
}

.terr-card-btn-sold {
  background: #fee2e2;
  color: #991b1b !important;
  cursor: default;
  font-size: 0.8rem;
}

.terr-card-btn-sold:hover {
  background: #fee2e2;
  transform: none;
}

/* ── SECTION 3: MICHIGAN SHOWCASE ────────────── */
.terr-showcase-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

/* Left dark card */
.terr-showcase-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 18px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.terr-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
  pointer-events: none;
}

.terr-showcase-badge {
  display: inline-block;
  background: var(--warning);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.terr-showcase-code {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.terr-showcase-state {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-top: -0.5rem;
}

.terr-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.terr-showcase-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
  transition: background 0.25s ease;
}

.terr-showcase-stat:hover {
  background: rgba(255, 255, 255, 0.18);
}

.terr-showcase-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.terr-showcase-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.terr-showcase-value {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.terr-showcase-value-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.terr-showcase-value-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
}

/* Right detail cards */
.terr-showcase-detail-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.25s ease;
}

.terr-showcase-detail-card:hover {
  border-color: var(--primary);
}

.terr-showcase-detail-card h5 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.1rem;
}

/* Detail list */
.terr-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.terr-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

.terr-detail-list i {
  color: var(--success);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Market bars */
.terr-market-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

.terr-market-row span:first-child {
  width: 110px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.terr-market-bar {
  flex: 1;
  height: 8px;
  background: var(--gray);
  border-radius: 4px;
  overflow: hidden;
}

.terr-market-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.terr-market-pct {
  width: 36px;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* City list */
.terr-city-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.terr-city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray);
}

.terr-city-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.terr-city-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.terr-city-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.terr-city-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.terr-city-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* City badge variants */
.terr-city-badge-high {
  background: var(--danger-light);
  color: #991b1b;
}
.terr-city-badge-med {
  background: var(--warning-light);
  color: #92400e;
}
.terr-city-badge-active {
  background: var(--success-light);
  color: #065f46;
}

/* Total count color */
.terr-num-total {
  color: var(--primary);
}

/* Apply form misc */
.terr-apply-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.terr-submit-btn {
  padding: 1rem;
}

.terr-form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Success state */
.terr-success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.terr-success-text {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 400px;
  margin: 1rem auto 0;
}

/* Map sold button */
.terr-btn-sold {
  background: var(--danger-light);
  color: #991b1b;
  cursor: default;
}

/* CTA strip sub text */
.terr-cta-sub {
  color: rgba(255, 255, 255, 0.8);
}

/* ── CTA STRIP ───────────────────────────────── */
.terr-cta-strip {
  padding: 3rem 0;
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 991px) {
  .terr-map-section,
  .terr-cards-section,
  .terr-showcase-section {
    padding: 4rem 0;
  }

  #usa-map {
    height: 340px;
  }

  .terr-map-panel-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .terr-map-panel-right {
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
  }

  .terr-strip-item {
    padding: 1rem 1.5rem;
  }

  .terr-showcase-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .terr-apply-header,
  .terr-apply-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  #usa-map {
    height: 260px;
  }

  .terr-card-filter {
    gap: 0.35rem;
  }

  .terr-card-filter-btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }

  .terr-card-search-wrap {
    width: 100%;
  }

  .terr-card-search {
    width: 100%;
  }

  .terr-showcase-card {
    padding: 1.75rem;
  }

  .terr-showcase-state {
    font-size: 1.6rem;
  }

  .terr-showcase-value {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .terr-strip {
    flex-wrap: wrap;
  }

  .terr-strip-divider {
    display: none;
  }

  .terr-strip-item {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid var(--gray);
  }
}

@media (max-width: 575px) {
  .terr-map-panel {
    padding: 1.1rem;
  }

  .terr-map-state-name {
    font-size: 1.15rem;
  }

  .terr-panel-stat {
    min-width: 110px;
  }

  .terr-showcase-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .terr-showcase-stat-num {
    font-size: 1.15rem;
  }

  .terr-apply-body {
    padding: 1.25rem;
  }

  .terr-card-filter {
    flex-direction: column;
    align-items: flex-start;
  }

  .terr-card-filter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   TESTIMONIALS PAGE STYLING
   ================================================ */

/* ── STATS STRIP ────────────────────────────────── */
.tst-stats-strip-section {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.tst-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 16px;
  overflow: hidden;
  flex-wrap: wrap;
}

.tst-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  flex: 1;
  min-width: 140px;
}

.tst-strip-divider {
  width: 1px;
  height: 50px;
  background: var(--gray);
  flex-shrink: 0;
}

.tst-strip-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.tst-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* ── FILTER BAR ─────────────────────────────────── */
.tst-filter-section {
  padding: 1.5rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.tst-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tst-filter-left {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tst-filter-btn {
  background: var(--white);
  border: 2px solid var(--gray);
  color: var(--text);
  padding: 0.45rem 1.1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.tst-filter-btn:hover,
.tst-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.tst-filter-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tst-filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.tst-sort-select {
  border: 2px solid var(--gray);
  border-radius: 6px;
  padding: 0.4rem 2rem 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--text);
  outline: none;
  cursor: pointer;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' 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 0.6rem center;
  background-size: 10px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease;
}

.tst-sort-select:focus {
  border-color: var(--primary);
}

/* ── STARS ──────────────────────────────────────── */
.tst-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tst-stars-sm {
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  letter-spacing: 1.5px;
}

.tst-stars-light {
  color: #fde68a;
}

/* ── TAGS ───────────────────────────────────────── */
.tst-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tst-tag-operator {
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.tst-tag-city {
  background: #eff6ff;
  color: #1e40af;
  border: 1.5px solid var(--info);
}
.tst-tag-county {
  background: var(--success-light);
  color: #065f46;
  border: 1.5px solid var(--success);
}
.tst-tag-partner {
  background: #fef3c7;
  color: #92400e;
  border: 1.5px solid var(--warning);
}
.tst-tag-revenue {
  background: var(--success-light);
  color: #065f46;
  border: 1.5px solid var(--success);
}
.tst-tag-state {
  background: var(--light);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

/* ── TESTIMONIAL GRID CARDS ─────────────────────── */
.tst-grid-section {
  padding: 6rem 0;
  /* background: var(--light); */
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.tst-card {
  background: var(--light);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tst-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.tst-card:hover::after {
  width: 100%;
}

.tst-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.13);
}

/* Dark variant */
.tst-card-dark {
  background: var(--primary);
  border-color: var(--primary);
}

.tst-card-dark::after {
  background: var(--white);
}

.tst-card-dark:hover {
  border-color: var(--secondary);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.25);
}

/* Card Header */
.tst-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.tst-card-author {
  flex: 1;
  min-width: 0;
}

.tst-card-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tst-card-dark .tst-card-author strong {
  color: var(--white);
}

.tst-card-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tst-card-dark .tst-card-author span {
  color: rgba(255, 255, 255, 0.65);
}

/* Category badge — top right */
.tst-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tst-badge-operator {
  background: var(--primary-light);
  color: var(--primary);
}
.tst-badge-city {
  background: #eff6ff;
  color: #1e40af;
}
.tst-badge-county {
  background: var(--success-light);
  color: #065f46;
}
.tst-badge-partner {
  background: var(--warning-light);
  color: #92400e;
}

.tst-card-dark .tst-badge-operator,
.tst-card-dark .tst-badge-city,
.tst-card-dark .tst-badge-county,
.tst-card-dark .tst-badge-partner {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Quote */
.tst-card-quote {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.tst-card-dark .tst-card-quote {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.tst-card-footer {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ── PAGINATION ─────────────────────────────────── */
.tst-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tst-page-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray);
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.tst-page-btn:hover,
.tst-page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ── VIDEO TESTIMONIALS ─────────────────────────── */
.tst-video-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.tst-video-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.tst-video-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.13);
}

.tst-video-thumb {
  position: relative;
  height: 200px;
  background: var(--primary);
  overflow: hidden;
  cursor: pointer;
}

.tst-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tst-video-card:hover .tst-video-thumb img {
  transform: scale(1.06);
}

.tst-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 47, 107, 0.4);
  transition: background 0.3s ease;
  cursor: pointer;
}

.tst-video-card:hover .tst-video-play {
  background: rgba(11, 47, 107, 0.55);
}

.tst-video-play i {
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.tst-video-card:hover .tst-video-play i {
  transform: scale(1.12);
}

.tst-video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.tst-video-body {
  padding: 1.4rem;
}

.tst-video-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.tst-video-body h5 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.tst-video-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── CITY / COUNTY PARTNERS STRIP ───────────────── */
.tst-partners-section {
  padding: 5rem 0;
  background: var(--light);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.tst-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.tst-partner-item {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  transition: all 0.25s ease;
}

.tst-partner-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-3px);
}

.tst-partner-item i {
  color: var(--secondary);
}

/* ── CTA SECTION ────────────────────────────────── */
.tst-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0b2f6b 0%, #01224f 60%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.tst-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>')
    repeat;
  opacity: 0.1;
  pointer-events: none;
}

.tst-cta-inner {
  position: relative;
  z-index: 1;
}

.tst-cta-inner h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.tst-cta-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 991px) {
  .tst-stats-strip-section,
  .tst-grid-section,
  .tst-video-section,
  .tst-partners-section,
  .tst-cta-section {
    padding: 4rem 0;
  }

  .tst-featured-card {
    padding: 2.5rem;
  }

  .tst-featured-stats {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
  }

  .tst-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tst-strip-item {
    padding: 1.25rem 1.75rem;
  }
}

@media (max-width: 767px) {
  .tst-filter-section {
    top: 60px;
  }

  .tst-featured-card {
    padding: 1.75rem;
  }

  .tst-featured-quote {
    font-size: 1rem;
  }

  .tst-featured-stats {
    grid-template-columns: 1fr 1fr;
  }

  .tst-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tst-cta-inner h2 {
    font-size: 2rem;
  }

  .tst-strip-divider {
    display: none;
  }

  .tst-strip-item {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid var(--gray);
  }
}

@media (max-width: 575px) {
  .tst-filter-left {
    gap: 0.35rem;
  }

  .tst-filter-btn {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }

  .tst-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .tst-featured-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .tst-feat-stat-num {
    font-size: 1.35rem;
  }

  .tst-partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .tst-video-thumb {
    height: 170px;
  }

  .tst-cta-inner h2 {
    font-size: 1.6rem;
  }
}

/* ================================================
   POLICIES PAGES - COMBINED STYLES
   Privacy Policy, Terms of Service, Cookie Policy
   ================================================ */

/* ================================================
   POLICY CONTENT SECTION
   ================================================ */
.policy-content-section {
  padding: 5rem 0;
  background: var(--white);
}

.policy-content-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(1, 34, 79, 0.08);
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--gray);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--secondary);
}

.policy-subsection-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.policy-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-text a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-text a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.policy-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.policy-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.9rem;
}

.policy-list li strong {
  color: var(--primary);
  font-weight: 700;
}

.policy-list li a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.policy-list li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ================================================
   POLICY ALERT BOX
   ================================================ */
.policy-alert {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.policy-alert i {
  color: #ef4444;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.policy-alert p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

/* Info Alert Variant */
.policy-alert.info {
  background: rgba(59, 130, 246, 0.1);
  border-left-color: var(--info);
}

.policy-alert.info i {
  color: var(--info);
}

/* ================================================
   POLICY CONTACT BOX
   ================================================ */
.policy-contact-box {
  background: var(--light);
  border: 2px solid var(--secondary);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.policy-contact-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.policy-contact-box p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-contact-box p:last-child {
  margin-bottom: 0;
}

.policy-contact-box i {
  color: var(--secondary);
  font-size: 1.1rem;
  width: 20px;
}

.policy-contact-box a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.policy-contact-box a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ================================================
   COOKIE TABLE STYLES
   ================================================ */
.cookie-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
}

.cookie-table thead {
  background: var(--primary);
}

.cookie-table thead th {
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
}

.cookie-table tbody tr {
  border-bottom: 1px solid var(--gray);
}

.cookie-table tbody tr:last-child {
  border-bottom: none;
}

.cookie-table tbody tr:hover {
  background: var(--primary-light);
}

.cookie-table tbody td {
  padding: 1rem 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary);
}

/* ================================================
   RELATED POLICIES SECTION
   ================================================ */
.related-policies-section {
  padding: 5rem 0;
  background: var(--light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.policy-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.policy-card {
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.policy-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(1, 34, 79, 0.15);
  transform: translateY(-5px);
}

.policy-card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.policy-card:hover .policy-card-icon {
  color: var(--white-light);
  transform: scale(1.1) rotate(5deg);
}

.policy-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.policy-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.policy-arrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-card:hover .policy-arrow {
  color: var(--primary);
}

.policy-arrow i {
  transition: transform 0.3s ease;
}

.policy-card:hover .policy-arrow i {
  transform: translateX(5px);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 992px) {
  .policy-hero-title {
    font-size: 2.8rem;
  }

  .policy-section-title {
    font-size: 1.7rem;
  }

  .policy-subsection-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .policy-content-wrapper {
    padding: 2rem 1.5rem;
  }

  .policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .policy-section-title {
    font-size: 1.5rem;
    padding-left: 0.75rem;
  }

  .policy-subsection-title {
    font-size: 1.1rem;
  }

  .policy-text {
    font-size: 0.95rem;
  }

  .policy-list li {
    font-size: 0.95rem;
    padding-left: 1.75rem;
  }

  .policy-contact-box {
    padding: 1.5rem;
  }

  .cookie-table {
    font-size: 0.85rem;
  }

  .cookie-table thead th,
  .cookie-table tbody td {
    padding: 0.75rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .policy-card {
    padding: 2rem;
  }

  .policy-card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .policy-hero-title {
    font-size: 1.8rem;
  }

  .policy-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .policy-content-wrapper {
    padding: 1.5rem 1rem;
  }

  .policy-section-title {
    font-size: 1.3rem;
  }

  .policy-alert {
    padding: 1rem;
    gap: 0.75rem;
  }

  .policy-alert i {
    font-size: 1.2rem;
  }

  .policy-contact-box {
    padding: 1.25rem;
  }

  .policy-contact-box h4 {
    font-size: 1.1rem;
  }

  .policy-contact-box p {
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-table thead th,
  .cookie-table tbody td {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
  }

  .policy-card {
    padding: 1.5rem;
  }

  .policy-card h4 {
    font-size: 1.2rem;
  }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
  .related-policies-section {
    display: none;
  }

  .policy-content-wrapper {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .policy-section {
    page-break-inside: avoid;
  }

  .policy-alert {
    border: 1px solid #ef4444;
  }
}

/* ================================================
   FOOTER - WHITE DESIGN
   ================================================ */

.footer-white {
  background-color: var(--white);
  border-top: 3px solid var(--secondary);
  padding: 0;
}

.footer-logo img {
  max-width: 270px !important;
  height: auto;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links li a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.footer-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-links li a:hover::before {
  width: 5px;
}
/* Footer Logo Link */
.footer-logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-logo a:hover {
  opacity: 0.8;
}

/* Footer Brand Link in Copyright */
.footer-brand-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s ease;
}

.footer-brand-link:hover {
  color: var(--secondary);
}

.footer-brand-link strong {
  font-weight: 800;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact li a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--secondary);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--white-light);
  transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray);
  margin-top: 2rem;
}

.footer-bottom p {
  color: var(--text);
  font-size: 0.9rem;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-bottom-links li a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-white {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-bottom {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0 !important;
  }

  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-image-container img {
    margin-top: 2rem;
  }

  .floating-element {
    display: none;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-main-image {
    grid-row: auto;
    height: 300px;
  }

  .about-secondary-image {
    height: 200px;
  }

  .about-stats-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .why-content {
    padding-top: 2rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .newsletter-form .form-control {
    border-radius: 50px !important;
    margin-bottom: 1rem;
    width: 100%;
  }

  .newsletter-form .btn {
    border-radius: 50px !important;
    width: 100%;
  }

  .stat-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.3rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .trust-item h4 {
    font-size: 1.3rem;
  }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.min-vh-90 {
  min-height: 90vh;
}

.position-relative {
  position: relative;
}

.gap-3 {
  gap: 1rem;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.shadow-lg {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ================================================
   SCROLLBAR STYLING
   ================================================ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* ================================================
   SCROLL TO TOP BUTTON
   ================================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(11, 47, 107, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(11, 47, 107, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top i {
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 1rem;
  }
}

select.contact-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  /* Modern Arrow Icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' 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") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 12px !important;
  padding-right: 40px !important;
  cursor: pointer;
}

input.contact-input {
  background-image: none !important;
}
