/* =========================================================
   FINAL STYLE.CSS
   Fixed:
   - Topbar always fixed
   - Header always fixed
   - Responsive banner
   - Fixed call button
   - Mobile friendly layout
   ========================================================= */

/* =========================
   1. RESET + BASE
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #ff6b00;
  --primary-dark: #e55f00;
  --secondary: #0f4c81;
  --secondary-dark: #0b3c65;
  --dark: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #16a34a;
}

body {
  margin: 0;
  padding-top: 137px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0f4c81;
  text-decoration: none;
  transition: 0.25s ease;
}

a:hover {
  color: #ff6b00;
}

ul,
ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

p {
  margin: 0 0 18px;
  text-align: justify;
  text-justify: inter-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 18px;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 800;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-subtitle {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: justify;
  text-justify: inter-word;
  color: #4b5563;
  font-size: 18px;
}

.bg-light {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
}

.text-center {
  text-align: center;
}

.shadow-card {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.rounded-lg {
  border-radius: 16px;
}

/* =========================
   2. BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  background: #f1f5f9;
  color: var(--dark);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* =========================
   3. TOP BAR
   ========================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: var(--secondary);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  min-height: 42px;
}

.topbar p,
.topbar a {
  margin: 0;
  color: var(--white);
  text-align: left;
  text-justify: auto;
  word-spacing: normal;
  letter-spacing: normal;
  white-space: normal;
  line-height: 1.35;
}

.topbar-phone {
  font-weight: 700;
}

/* =========================
   4. HEADER + NAVIGATION
   ========================= */
.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 1090;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
  gap: 18px;
  position: relative;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  max-height: 100px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
}

/* =========================
   5. CITY DROPDOWN MENU
   ========================= */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-family: inherit;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown-arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 10px 0;
  display: none;
  z-index: 1005;
}

.dropdown-menu a {
  display: block;
  padding: 11px 16px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: var(--primary);
}

.nav-dropdown.active .dropdown-menu {
  display: block;
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .nav-dropdown {
    padding-bottom: 18px;
    margin-bottom: -18px;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    max-height: 260px;
    margin-top: 12px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* =========================
   6. HERO / BANNER
   ========================= */
.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  margin-top: 0;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.46) 0%,
    rgba(15, 23, 42, 0.24) 30%,
    rgba(15, 23, 42, 0.08) 50%,
    rgba(15, 23, 42, 0.00) 70%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 90px 0;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 56px;
  line-height: 1.08;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  max-width: 660px;
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-word;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.hero-phone a {
  color: var(--white);
}

.hero-phone a:hover {
  color: #ffd6b8;
}

/* =========================
   7. INNER PAGE HERO
   ========================= */
.page-hero {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(135deg, #0f4c81 0%, #0b3c65 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.10), transparent 26%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  margin: 0 auto;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
}

/* =========================
   8. CARDS / BOXES
   ========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-top: 5px solid var(--primary);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: #dbe4ee;
}

.card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
}

.card p {
  margin-bottom: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

/* =========================
   9. SERVICE BLOCKS
   ========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.service-card-content h3 {
  margin-bottom: 12px;
}

.service-card-content p {
  color: #4b5563;
  text-align: justify;
  text-justify: inter-word;
}

/* =========================
   10. TWO COLUMN SECTIONS
   ========================= */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.content-box {
  background: var(--white);
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.content-box p {
  text-align: justify;
  text-justify: inter-word;
}

.image-box img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   11. LIST STYLES
   ========================= */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.city-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.city-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  transition: 0.25s ease;
}

.city-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* =========================
   12. STATS / TRUST BAR
   ========================= */
.stats-bar {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-item span {
  color: var(--muted);
  font-weight: 700;
}

/* =========================
   13. CTA SECTION
   ========================= */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b00 0%, #e55f00 100%);
  color: var(--white);
  padding: 70px 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 24%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 26px;
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
}

.cta-inner .hero-phone {
  justify-content: center;
  margin-top: 18px;
}

/* =========================
   14. FAQ
   ========================= */
.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-item p {
  text-align: justify;
  text-justify: inter-word;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

/* =========================
   15. CONTACT PAGE
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-card p,
.form-card p {
  text-align: justify;
  text-justify: inter-word;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.contact-info-list li {
  margin-bottom: 16px;
  color: var(--text);
}

.contact-info-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.10);
}

/* =========================
   16. LEGAL PAGES
   ========================= */
.legal-content {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 28px;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  text-align: justify;
  text-justify: inter-word;
}

/* =========================
   17. CITY PAGE SPECIFIC
   ========================= */
.breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.90);
}

.breadcrumb a {
  color: rgba(255,255,255,0.92);
}

.breadcrumb a:hover {
  color: #ffd6b8;
}

.city-highlight {
  background: #fff7f0;
  border: 1px solid #ffe1cc;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 24px 0 0;
  color: #7c3a00;
  font-weight: 700;
}

.city-highlight p {
  text-align: justify;
  text-justify: inter-word;
}

.keyword-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 20px 22px;
  border-radius: 10px;
  margin: 24px 0;
}

.keyword-box p {
  text-align: justify;
  text-justify: inter-word;
}

/* =========================
   18. FOOTER
   ========================= */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.84);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
}

.footer-logo img {
  max-height: 58px;
  margin-bottom: 18px;
}

.footer-title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-grid p {
  text-align: justify;
  text-justify: inter-word;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-phone {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-top: 12px;
}

.footer-phone a {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

/* =========================
   19. FIXED CALL BUTTON
   ========================= */
.fixed-call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 56px;
  padding: 14px 22px;
  background: var(--primary);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.30);
  animation: callPulse 2s infinite;
}

.fixed-call-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

/* =========================
   20. HELPER CLASSES
   ========================= */
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* =========================
   21. TABLET RESPONSIVE
   ========================= */
@media (max-width: 1100px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .site-nav {
    gap: 16px;
  }

  .card-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .two-col,
  .two-col-reverse {
    grid-template-columns: 1fr;
  }
}

/* =========================
   22. MOBILE NAV
   ========================= */
@media (max-width: 991px) {
  body {
    padding-top: 132px;
  }

  .topbar {
    font-size: 13px;
    text-align: left;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
    min-height: 58px;
  }

  .topbar p,
  .topbar a,
  .topbar-phone {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
    text-justify: auto;
    word-spacing: normal;
    letter-spacing: normal;
    white-space: normal;
    line-height: 1.35;
  }

  .site-header {
    top: 58px;
  }

  .header-inner {
    min-height: 74px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-logo {
    min-width: 0;
    max-width: calc(100% - 66px);
  }

  .site-logo img {
    max-height: 52px;
    width: auto;
  }

  .logo-text {
    font-size: 20px;
    line-height: 1.1;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    gap: 14px;
  }

  .site-nav.active {
    display: flex;
  }

  .header-cta .btn,
  .header-phone {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    max-height: 260px;
    margin-top: 12px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid var(--border);
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* =========================
   23. MOBILE RESPONSIVE
   ========================= */
@media (max-width: 767px) {
  body {
    font-size: 15px;
    padding-top: 130px;
  }

  .site-header {
    top: 56px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-banner {
    min-height: 460px;
    background-position: center center;
  }

  .hero-banner::before {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.68) 0%,
      rgba(15, 23, 42, 0.48) 46%,
      rgba(15, 23, 42, 0.24) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .page-hero {
    padding: 72px 0 64px;
  }

  .page-hero-content p {
    font-size: 16px;
  }

  .card-grid,
  .service-grid,
  .city-links,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .contact-card,
  .form-card,
  .content-box,
  .legal-content {
    padding: 22px;
  }

  .service-card img {
    height: 210px;
  }

  .fixed-call-btn {
    right: 14px;
    bottom: 14px;
    min-width: auto;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .footer-phone {
    font-size: 18px;
  }

  .site-logo img {
    max-height: 48px;
  }

  .logo-text {
    font-size: 18px;
  }

  p,
  .section-subtitle,
  .hero-content p,
  .page-hero-content p,
  .cta-inner p,
  .card p,
  .service-card-content p,
  .content-box p,
  .faq-item p,
  .legal-content p,
  .contact-card p,
  .form-card p,
  .keyword-box p,
  .city-highlight p,
  .footer-grid p {
    text-align: left;
    text-justify: auto;
  }
}

/* =========================
   24. SMALL MOBILE
   ========================= */
@media (max-width: 480px) {
  body {
    padding-top: 126px;
  }

  .site-header {
    top: 54px;
  }

  .topbar {
    font-size: 12.5px;
  }

  .logo-text {
    font-size: 16px;
  }

  .site-logo img {
    max-height: 44px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 13px;
  }

  .btn {
    font-size: 15px;
    min-height: 48px;
    padding: 13px 18px;
  }

  .header-phone {
    font-size: 15px;
  }

  .fixed-call-btn {
    width: calc(100% - 28px);
    border-radius: 12px;
    justify-content: center;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
/* SERVICE CARD BUTTON ALIGN FIX */
.card-grid .card {
  display: flex;
  flex-direction: column;
}

.card-grid .card p {
  flex-grow: 1;
}

.card-grid .card .btn {
  margin-top: 20px;
  align-self: flex-start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-content p {
  flex-grow: 1;
}

.service-card-content .btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* =========================================
   SAFE FINAL MOBILE CONTENT OVERRIDES
   - header/logo/menu untouched
   - service cards clean on mobile
   - text alignment consistent
   - city links centered
   ========================================= */

@media (max-width: 767px) {
  /* keep content sections clean on mobile */
  .card-grid,
  .service-grid,
  .city-links,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .section-subtitle {
    text-align: center !important;
    text-justify: auto !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
  }

  .service-card {
    width: 100% !important;
  }

  .service-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
  }

  .service-card-content {
    padding: 20px 18px !important;
    text-align: center !important;
  }

  .service-card-content h3 {
    font-size: 20px !important;
    line-height: 1.28 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .service-card-content p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    text-justify: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .card {
    padding: 22px 18px !important;
  }

  .card h3 {
    font-size: 20px !important;
    line-height: 1.28 !important;
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .card p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    text-justify: auto !important;
  }

  .content-box h2,
  .content-box p,
  .faq-item h3,
  .faq-item p {
    text-align: center !important;
    text-justify: auto !important;
  }

  .city-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}


/* =========================================================
   FINAL PATCH
   - Mobile hero shows full image
   - Hero empty area uses same blue as top bar
   - Text stays justified on both desktop and mobile
   ========================================================= */

/* Desktop hero */
.hero-banner {
  background-size: cover;
  background-position: center right;
}

/* Global paragraph alignment */
p,
.section-subtitle,
.hero-content p,
.page-hero-content p,
.cta-inner p,
.card p,
.service-card-content p,
.content-box p,
.faq-item p,
.legal-content p,
.contact-card p,
.form-card p,
.keyword-box p,
.city-highlight p,
.footer-grid p {
  text-align: justify !important;
  text-justify: inter-word !important;
}

/* Mobile hero + mobile text */
@media (max-width: 767px) {
  .hero-banner {
    min-height: 520px !important;
    background-size: contain !important;
    background-position: center center !important;
    background-color: var(--secondary) !important;
    background-repeat: no-repeat !important;
  }

  p,
  .section-subtitle,
  .hero-content p,
  .page-hero-content p,
  .cta-inner p,
  .card p,
  .service-card-content p,
  .content-box p,
  .faq-item p,
  .legal-content p,
  .contact-card p,
  .form-card p,
  .keyword-box p,
  .city-highlight p,
  .footer-grid p {
    text-align: justify !important;
    text-justify: inter-word !important;
  }
}


/* =========================================================
   MOBILE HERO BALANCE PATCH
   - Keeps fuller banner image feel on mobile
   - Adds soft text backdrop instead of aggressive image crop
   - Desktop remains unchanged
   ========================================================= */

.hero-banner {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 520px !important;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-color: #0f4c81 !important;
  }

  .hero-banner::before {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.18) 0%,
      rgba(15, 23, 42, 0.10) 38%,
      rgba(15, 23, 42, 0.06) 100%
    ) !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 78px 0 34px !important;
  }

  .hero-content-inner,
  .hero-text-box {
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    padding: 18px 16px;
    border-radius: 16px;
    display: inline-block;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 29px !important;
    line-height: 1.18 !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
  }

  .hero-content p {
    font-size: 15px !important;
    line-height: 1.58 !important;
    margin-bottom: 18px !important;
    color: rgba(255, 255, 255, 0.97) !important;
    text-align: left !important;
    text-justify: auto !important;
    max-width: 100% !important;
  }

  .hero-buttons {
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .hero-buttons .btn {
    min-height: 46px !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
  }

  .hero-phone {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    min-height: 500px !important;
    background-position: center top !important;
  }

  .hero-content {
    padding: 72px 0 28px !important;
  }

  .hero-content-inner,
  .hero-text-box {
    padding: 16px 14px !important;
    border-radius: 14px !important;
  }

  .hero-content h1 {
    font-size: 27px !important;
  }

  .hero-content p {
    font-size: 14px !important;
  }
}



/* =========================================
   TOPBAR COMPACT SCREEN FIX
   - For 1024x600 and smaller/shorter screens:
   - message stays on first line
   - call now + phone stays together on second line
   - prevents third-line number wrap
   ========================================= */
@media (max-width: 1024px), (max-height: 600px) {
  .topbar {
    font-size: 13px !important;
  }

  .topbar-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 8px 0 !important;
    min-height: auto !important;
  }

  .topbar-inner > *:first-child,
  .topbar p:first-child {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }

  .topbar-inner > *:last-child,
  .topbar a,
  .topbar-phone {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    flex: 0 0 auto !important;
  }

  .topbar a br,
  .topbar-phone br,
  .topbar-inner > *:last-child br {
    display: none !important;
  }

  .topbar a span,
  .topbar a strong,
  .topbar-phone span,
  .topbar-phone strong,
  .topbar-inner > *:last-child span,
  .topbar-inner > *:last-child strong {
    display: inline !important;
    white-space: nowrap !important;
  }
}

/* Center align topbar text on compact screens */
@media (max-width: 1024px), (max-height: 600px) {
  .topbar,
  .topbar * {
    text-align: center !important;
  }

  .topbar-inner {
    justify-content: center !important;
    align-items: center !important;
  }

  .topbar p,
  .topbar-phone,
  .topbar a {
    text-align: center !important;
  }
}


/* Hero text justified on mobile */
@media (max-width: 767px) {
  .hero-content p,
  .hero-banner .hero-content p,
  .hero-section .hero-content p,
  .hero-text p,
  .banner-content p,
  .hero-copy p {
    text-align: justify !important;
    text-justify: inter-word;
  }
}


/* FINAL MOBILE HERO / CTA SPACING FIX */
@media (max-width: 767px) {
  .hero-content {
    padding-bottom: 42px !important;
  }

  .hero-buttons {
    margin-bottom: 16px !important;
  }

  .hero-phone,
  .hero-call,
  .hero-contact,
  .banner-phone,
  .banner-call {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    margin: 8px 0 22px !important;
    line-height: 1.45 !important;
    position: relative;
    z-index: 2;
  }

  .hero-phone a,
  .hero-call a,
  .hero-contact a,
  .banner-phone a,
  .banner-call a {
    white-space: nowrap !important;
  }

  .stats-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .stats-grid {
    margin-top: 0 !important;
  }

  .service-area-section,
  .service-area,
  .service-cards,
  .card-grid,
  .stats-bar + .section,
  .stats-bar + section {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-bottom: 48px !important;
  }

  .hero-phone,
  .hero-call,
  .hero-contact,
  .banner-phone,
  .banner-call {
    margin: 8px 0 24px !important;
    font-size: 16px !important;
  }
}


/* MOBILE STATS CARD OUTER BORDER / CLEAN WRAPPER */
@media (max-width: 767px) {
  .stats-bar,
  .stats-section,
  .stats-card,
  .service-stats,
  .hero-stats,
  .stats-wrapper,
  .hero-stats-wrap,
  .hero-stats-box {
    background: #f8fafc !important;
    border: 1.5px solid #cfd8e3 !important;
    border-radius: 26px !important;
    box-shadow: 0 10px 25px rgba(13, 59, 102, 0.10) !important;
    overflow: hidden !important;
  }
}


/* STRONG MOBILE OUTER BORDER FOR STATS / FEATURE BOX */
@media (max-width: 767px) {
  .stats-bar,
  .stats-section,
  .service-stats,
  .hero-stats,
  .stats-wrapper,
  .hero-stats-wrap,
  .hero-stats-box,
  .stats-grid,
  .stats-container,
  .service-stats-grid,
  .hero-stats-grid,
  .stats-list,
  .feature-stats,
  .feature-box,
  .hero-features,
  .hero-features-wrap,
  .hero-features-box {
    background: #f8fafc !important;
    border: 3px solid #c7d2df !important;
    border-radius: 28px !important;
    box-shadow: 0 10px 24px rgba(13, 59, 102, 0.12) !important;
    padding: 10px !important;
    overflow: hidden !important;
  }
}

/* =========================================
   MOBILE FOOTER / COPYRIGHT OVERLAP FIX
   - keeps existing design unchanged
   - only adds safe space for fixed call button on mobile
   ========================================= */
@media (max-width: 767px) {
  body {
    padding-bottom: 92px;
  }

  .footer-bottom {
    padding-bottom: 92px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 100px;
  }

  .footer-bottom {
    padding-bottom: 100px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Mobile center align for call text line */
@media (max-width: 767px) {
  .call-now,
  .hero-call,
  .hero-phone,
  .phone-number {
    text-align: center !important;
  }

  .call-now a,
  .hero-call a,
  .hero-phone a,
  .phone-number a {
    display: inline-block;
  }
}

/* =========================================================
   MOBILE TOPBAR + HERO REFINEMENT ONLY
   ========================================================= */
@media (max-width: 767px) {
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
  }

  .topbar-inner {
    min-height: auto;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .topbar p,
  .topbar a,
  .topbar-phone {
    font-size: 13px;
    line-height: 1.35;
    margin: 0;
  }

  .site-header {
    top: 56px;
  }

  body {
    padding-top: 132px;
  }

  .hero-banner {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }

  .hero-banner::before {
    background: linear-gradient(
      180deg,
      rgba(8, 35, 58, 0.72) 0%,
      rgba(11, 52, 84, 0.60) 42%,
      rgba(15, 76, 129, 0.74) 100%
    );
  }

  .hero-buttons {
    width: 100%;
    margin-top: 20px;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-buttons a.btn,
  .hero-buttons button.btn {
    width: 100%;
    justify-content: center;
  }

  }

@media (max-width: 480px) {
  .topbar-inner {
    padding: 7px 12px;
    gap: 3px;
  }

  .topbar p,
  .topbar a,
  .topbar-phone {
    font-size: 12.5px;
  }

  .site-header {
    top: 54px;
  }

  body {
    padding-top: 128px;
  }

  .hero-content {
    padding: 26px 0 32px;
  }

  }

/* Force glass/blur effect for hero badge on mobile */
@media (max-width: 767px) {
  .hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 24px rgba(8, 35, 58, 0.18) !important;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }
}

/* Slightly larger mobile topbar text */
@media (max-width: 767px) {
  .topbar p,
  .topbar a,
  .topbar-phone {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .topbar p,
  .topbar a,
  .topbar-phone {
    font-size: 13.5px !important;
    line-height: 1.4 !important;
  }
}

/* =========================================
   FOOTER COPYRIGHT CENTER ALIGN FIX
   - desktop + mobile both
   - only targets copyright text
   ========================================= */
.footer-bottom,
.footer-bottom .container,
.footer-bottom p {
  text-align: center !important;
}

.footer-bottom p {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================================
   MOBILE FOOTER COLUMN CENTER ALIGN FIX
   - mobile only
   - centers footer phone, headings, and links
   - leaves desktop unchanged
   ========================================= */
@media (max-width: 767px) {
  .site-footer .footer-phone,
  .site-footer .footer-phone a,
  .site-footer .footer-title,
  .site-footer .footer-links,
  .site-footer .footer-links li,
  .site-footer .footer-links a {
    text-align: center !important;
  }

  .site-footer .footer-phone a,
  .site-footer .footer-links a {
    display: inline-block;
    width: 100%;
  }
}

/* =========================================
   MOBILE FOOTER LOGO CENTER FIX
   - mobile only
   - centers footer logo without affecting desktop
   ========================================= */
@media (max-width: 767px) {
  .site-footer .footer-logo {
    text-align: center !important;
  }

  .site-footer .footer-logo img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
