/* =========================================================
   AASK ENTERPRISES — Premium Design System
   Brand: Deep Blue + Logo Orange
   ========================================================= */

:root {
  --blue: #0b4f8a;
  --blue-dark: #073560;
  --blue-deep: #052847;
  --blue-soft: #e8f1f8;
  --orange: #e87722;
  --orange-dark: #c96112;
  --orange-soft: #fff3e8;
  --navy: #0c1e32;
  --text: #1d2b3a;
  --muted: #5a6b7d;
  --border: #dce3eb;
  --bg: #f6f8fb;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(12, 30, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(12, 30, 50, 0.08);
  --shadow-lg: 0 16px 40px rgba(12, 30, 50, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1240px;
  --header-h: 78px;
  --transition: 0.25s ease;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange);
}

:focus-visible {
  outline: 3px solid rgba(232, 119, 34, 0.45);
  outline-offset: 2px;
}

.container-site {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}

.text-muted-custom { color: var(--muted); }

/* Buttons */
.btn {
  --bs-btn-border-radius: 10px;
  font-weight: 560;
  padding: 0.72rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary-brand {
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(232, 119, 34, 0.28);
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  background: var(--orange-dark);
  color: #fff !important;
}

.btn-secondary-brand {
  background: var(--blue);
  color: #fff !important;
}

.btn-secondary-brand:hover,
.btn-secondary-brand:focus {
  background: var(--blue-dark);
  color: #fff !important;
}

.btn-outline-brand {
  background: transparent;
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
}

.btn-outline-brand:hover {
  background: var(--blue);
  color: #fff !important;
}

.btn-outline-light-custom {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light-custom:hover {
  background: #fff;
  color: var(--blue) !important;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff !important;
}

.btn-call {
  background: var(--blue);
  color: #fff !important;
}

.btn-sm-custom {
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
  height: var(--header-h);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav > a,
.nav-dropdown > button {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown > button:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
  z-index: 50;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.dropdown-panel a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 1035;
  padding: 1rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a,
.mobile-nav .mobile-drop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-weight: 500;
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-size: 1rem;
}

.mobile-sub {
  display: none;
  padding-left: 0.75rem;
  background: var(--bg);
}

.mobile-sub.open { display: block; }

.mobile-sub a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
}

.mobile-cta {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

body.nav-open { overflow: hidden; }

/* ========== HERO SLIDER ========== */
.hero-slider-section {
  background: #fff;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  background: #f3f6fa;
  width: 100%;
}

.hero-slider .carousel-inner {
  width: 100%;
}

.hero-slider .carousel-item {
  text-align: center;
  background: #f3f6fa;
}

.hero-slide-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-slider .carousel-indicators {
  margin-bottom: 0.85rem;
  z-index: 5;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(11, 79, 138, 0.35);
  border: 0;
  opacity: 1;
}

.hero-slider .carousel-indicators .active {
  background-color: var(--orange);
}

.hero-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: auto;
  padding: 0 0.75rem;
  opacity: 1;
}

.hero-slider .carousel-control-prev:hover .hero-control,
.hero-slider .carousel-control-next:hover .hero-control {
  background: var(--orange);
  color: #fff;
}

.hero-action-bar {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  padding: 1rem 0;
  border-bottom: 3px solid var(--orange);
}

.hero-action-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.hero-action-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.98rem;
  flex: 1 1 220px;
}

.hero-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-action-btns .btn {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  min-height: 44px;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg);
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 680px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .section-label {
  justify-content: center;
}

.section-head.center .section-label::before {
  display: none;
}

/* Cards */
.card-soft {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-soft:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 79, 138, 0.18);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.icon-box.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.service-card .card-soft h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}

.link-arrow:hover { color: var(--orange); }

/* Feature / Why choose */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover::before { opacity: 1; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card:nth-child(even) .step-num {
  background: var(--orange);
}

/* About preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1.1rem;
}

.stat-box:nth-child(2) { background: var(--orange); }
.stat-box:nth-child(3) { background: var(--blue-dark); }
.stat-box:nth-child(4) { background: var(--navy); }

.stat-box strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.stat-box span {
  font-size: 0.82rem;
  opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, #1a5f9c);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Reviews placeholder */
.reviews-box {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.reviews-box .stars {
  color: #f5a623;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.15rem;
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  text-align: center;
}

.contact-card i {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-card a,
.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 79, 138, 0.12);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.address-panel {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}

.address-panel h3 { color: #fff; }
.address-panel p,
.address-panel a {
  color: rgba(255, 255, 255, 0.88);
}

.address-panel a:hover { color: #fff; }

/* Page hero / breadcrumbs */
.page-hero {
  background:
    linear-gradient(120deg, var(--blue-deep), var(--blue));
  color: #fff;
  padding: 2.5rem 0 2.25rem;
}

.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 640px; }

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.86rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav a { color: #fff; }
.breadcrumb-nav a:hover { color: var(--orange); }
.breadcrumb-nav span { opacity: 0.7; }

/* Service detail */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.content-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.content-block h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--orange-soft);
}

.doc-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-list li,
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.7rem;
  color: var(--muted);
}

.doc-list li::before,
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--orange);
  font-size: 0.85rem;
}

.process-list {
  counter-reset: proc;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  counter-increment: proc;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
  align-items: start;
}

.process-list li::before {
  content: counter(proc, decimal-leading-zero);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.82rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-weight: 560;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-weight: 600;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  padding: 0 1.1rem 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.assist-card {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.assist-card h3 { color: #fff; }
.assist-card p { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; }

.assist-card .btn { width: 100%; margin-bottom: 0.55rem; }

.quick-info {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.quick-info li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.quick-info i { color: var(--orange); margin-top: 0.2rem; }

/* Services directory */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.search-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.search-wrap i {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.category-block {
  margin-bottom: 2.5rem;
}

.category-block h2 {
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.category-block h2 i { color: var(--orange); }

.service-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dir-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.dir-card:hover {
  border-color: rgba(11, 79, 138, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.dir-card.hidden { display: none; }

/* Policies */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer .footer-logo {
  height: 52px;
  width: auto;
  background: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.site-footer a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
}

.social-links a:hover {
  background: var(--orange);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.86rem;
}

.footer-copy {
  display: grid;
  gap: 0.25rem;
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-credit strong {
  color: #fff;
  font-weight: 600;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.policy-links a {
  display: inline;
  margin: 0;
  font-size: 0.84rem;
}

/* Floating helpers */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1020;
  cursor: pointer;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1025;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(12, 30, 50, 0.08);
  grid-template-columns: repeat(3, 1fr);
}

.mobile-action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.65rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
}

.mobile-action-bar a i { font-size: 1.1rem; color: var(--blue); }
.mobile-action-bar a.wa i { color: #25d366; }
.mobile-action-bar a.assist {
  background: var(--orange);
  color: #fff;
}
.mobile-action-bar a.assist i { color: #fff; }

/* Utilities */
.mt-section { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-orange { color: var(--orange); }
.bg-soft { background: var(--bg); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fadeUp 0.6s ease both;
}

/* ========== RESPONSIVE ========== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
iframe,
video,
embed,
object {
  max-width: 100%;
}

.cta-banner-actions .btn,
.assist-card .btn,
.hero-action-btns .btn,
.mobile-cta .btn {
  white-space: normal;
}

.footer-contact-item,
.address-panel,
.quick-info,
.policy-content,
.content-block {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1199px) {
  .main-nav > a {
    padding: 0.5rem 0.55rem;
    font-size: 0.88rem;
  }

  .header-actions .btn-sm-custom {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 1100px) {
  .about-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
  }

  .feature-grid,
  .service-dir-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    justify-content: flex-start;
  }

  .map-frame {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .main-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
  }

  .brand-logo img {
    height: 42px;
  }

  .mobile-action-bar {
    display: grid;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .scroll-top {
    bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px));
    right: 0.75rem;
  }

  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    display: none;
  }

  .hero-slider .carousel-indicators {
    margin-bottom: 0.55rem;
  }

  .hero-action-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .hero-action-btns {
    justify-content: center;
  }

  .hero-action-btns .btn {
    flex: 1 1 calc(50% - 0.55rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  .filter-bar {
    gap: 0.45rem;
  }

  .filter-btn {
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
  }

  .search-wrap {
    max-width: 100%;
  }

  .form-card .btn {
    width: 100%;
    margin-bottom: 0.45rem;
  }

  .content-block,
  .form-card,
  .card-soft,
  .dir-card {
    padding: 1.15rem;
  }
}

@media (max-width: 767px) {
  .container-site {
    padding-inline: 0.85rem;
  }

  .feature-grid,
  .service-dir-grid,
  .contact-cards,
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    padding: 1.5rem;
  }

  .cta-banner-actions {
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 1.75rem 0;
  }

  .breadcrumb-nav {
    font-size: 0.8rem;
  }

  .map-frame {
    height: 260px;
  }

  .reviews-box {
    padding: 1.5rem 1rem;
  }

  .hero-action-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 2.75rem 0;
  }

  .feature-grid,
  .service-dir-grid,
  .contact-cards,
  .steps,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-links {
    gap: 0.45rem 0.75rem;
  }

  .hero-action-btns {
    flex-direction: column;
  }

  .hero-action-btns .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .hero-action-bar {
    padding: 0.85rem 0;
  }

  .hero-slider .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }

  .assist-card .btn,
  .mobile-cta .btn {
    width: 100%;
  }

  .dir-card h3,
  .service-card h3 {
    font-size: 1rem;
  }

  .icon-box {
    width: 46px;
    height: 46px;
  }

  .site-footer {
    padding-top: 2.5rem;
  }

  .footer-logo {
    height: 44px;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    height: 36px;
  }

  .container-site {
    padding-inline: 0.75rem;
  }

  .mobile-action-bar a {
    font-size: 0.68rem;
    padding: 0.55rem 0.2rem;
  }

  .btn {
    padding: 0.65rem 1rem;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .card-soft,
  .dir-card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
