/* ============================================================
   VAKILEXPERT - CONSOLIDATED STYLE.CSS
   All CSS merged from inline styles across every page
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --navy: #0b1f3a;
  --navy-2: #12294d;
  --accent: #f5a623;
  --accent-2: #ff8c00;
  --text-dark: #1c2b3a;
  --light-70: rgba(255, 255, 255, 0.7);
  --white-10: rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-bottom: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-accent {
  color: var(--accent) !important;
}

/* ===== Skip Link (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 0;
  z-index: 1051;
  position: relative;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
}
.top-bar a:hover {
  color: var(--accent);
}
.top-bar .small {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ===== Navbar ===== */
.navbar {
  border-bottom: 1px solid #eee;
  padding: 0.6rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy) !important;
  letter-spacing: -0.5px;
}
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}
.mega-menu {
  max-height: 400px;
  overflow-y: auto;
  min-width: 260px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 10px 0;
  margin-top: 8px !important;
}
.mega-menu::-webkit-scrollbar {
  width: 6px;
}
.mega-menu::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}
.dropdown-item {
  font-size: 0.88rem;
  padding: 0.4rem 1.2rem;
  color: var(--text-dark);
}
.dropdown-item:hover {
  background: #fff6e8;
  color: var(--accent-2);
}
.dropdown-header {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding-top: 0.6rem;
  padding-bottom: 0.2rem;
}
.dropdown-divider {
  margin: 0.3rem 1rem;
}
.navbar-toggler {
  border: none;
  padding: 0.5rem 0.7rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== Buttons ===== */
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.6rem;
  transition: all 0.3s ease;
  font-size: 0.92rem;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}
.btn-dark-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  font-size: 0.92rem;
}
.btn-dark-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.6rem;
  transition: all 0.3s ease;
}
.btn-white:hover {
  background: #f0f0f0;
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-lg-custom {
  padding: 0.8rem 2rem;
  font-size: 1.05rem;
}

/* ===== Hero Section (Homepage) ===== */
.hero-section {
  background: linear-gradient(135deg, #fdf6ea 0%, #fff 60%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06), transparent 70%);
  border-radius: 50%;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #eee;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 1.2rem 0;
}
.hero-sub {
  font-size: 1.05rem;
  color: #5a6474;
  max-width: 750px;
  margin: 0 auto;
}
.hero-tags span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

/* ===== Service Hero (Service Pages) ===== */
.service-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
  border-radius: 50%;
}
.breadcrumb-custom {
  background: 0 0;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.breadcrumb-custom a:hover {
  color: var(--accent);
}
.breadcrumb-custom .active {
  color: rgba(255, 255, 255, 0.5);
}
.service-hero-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ===== Hero Visual (Homepage Animation) ===== */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(252, 148, 48, 0.32) 0%,
      rgba(252, 148, 48, 0.16) 35%,
      rgba(252, 148, 48, 0.04) 65%,
      transparent 75%);
  filter: blur(10px);
  animation: heroGlowPulse 4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
.hero-main-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 30px rgba(0, 15, 36, 0.16));
  animation: heroImageFloat 5s ease-in-out infinite;
}
@keyframes heroImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Orbit Rings */
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(252, 148, 48, 0.55);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-one {
  width: 96%;
  height: 96%;
  animation: rotateOrbit 24s linear infinite;
}
.orbit-two {
  width: 82%;
  height: 82%;
  border-style: solid;
  border-color: rgba(252, 148, 48, 0.22);
  animation: rotateOrbitReverse 18s linear infinite;
}
.orbit-three {
  width: 68%;
  height: 68%;
  border-color: rgba(252, 148, 48, 0.28);
  animation: rotateOrbit 14s linear infinite;
}
@keyframes rotateOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateOrbitReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* Orbit Dots */
.orbit-dots {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96%;
  height: 96%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}
.orbit-dots-one {
  animation: rotateDots 20s linear infinite;
}
.orbit-dots-two {
  width: 82%;
  height: 82%;
  animation: rotateDotsReverse 15s linear infinite;
}
@keyframes rotateDots {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateDotsReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.orbit-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fc9430;
  box-shadow: 0 0 0 5px rgba(252, 148, 48, 0.10), 0 0 18px rgba(252, 148, 48, 0.55);
  animation: dotPulse 2.5s ease-in-out infinite;
}
.dot-1 {
  width: 16px;
  height: 16px;
  top: 3%;
  left: 28%;
}
.dot-2 {
  width: 11px;
  height: 11px;
  top: 23%;
  right: 4%;
}
.dot-3 {
  width: 14px;
  height: 14px;
  bottom: 8%;
  right: 24%;
}
.dot-4 {
  width: 12px;
  height: 12px;
  bottom: 12%;
  left: 19%;
}
.dot-5 {
  width: 15px;
  height: 15px;
  top: 28%;
  left: 1%;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

/* Sparkle particles */
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px #ffffff, 0 0 25px rgba(252, 148, 48, 0.9);
  z-index: 6;
  animation: sparkle 2.5s ease-in-out infinite;
}
.hero-visual::before {
  top: 25%;
  right: 18%;
}
.hero-visual::after {
  bottom: 24%;
  left: 18%;
  animation-delay: 1.2s;
}
@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* Float animation (legacy) */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ===== Section Common ===== */
.section-padding {
  padding: 80px 0;
}
.section-padding-lg {
  padding: 100px 0;
}
.section-padding-sm {
  padding: 40px 0;
}
.bg-light-custom {
  background: #f8f9fc !important;
}
.bg-light {
  background: #f8f9fc !important;
}
.bg-navy {
  background: var(--navy);
}
.text-light-custom {
  color: rgba(255, 255, 255, 0.75) !important;
}
.text-light-70 {
  color: var(--light-70) !important;
}
.section-tag {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
}
.section-desc {
  color: #5a6474;
  max-width: 600px;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ===== Service Cards ===== */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 166, 35, 0.15);
  border-color: var(--accent);
}
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff3e0, #ffe4b5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--accent-2);
  transition: all 0.3s ease;
}
.service-card:hover .icon-box {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transform: scale(1.05);
}
.service-card h6 {
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ===== Feature Cards (Service Pages) ===== */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3e0, #ffe4b5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.feature-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: #697384;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Process ===== */
.process-row {
  position: relative;
}
.process-card {
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}
.process-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-card p {
  font-size: 0.88rem;
  color: #697384;
  line-height: 1.6;
}

/* ===== Document Cards ===== */
.doc-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.doc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.doc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}
.doc-card span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== Benefit Cards (Service Pages) ===== */
.benefit-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.benefit-icon-area {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
}
.benefit-body {
  padding: 1.5rem;
}
.benefit-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.88rem;
  color: #697384;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Why Choose Cards ===== */
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ===== About Section ===== */
.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  transition: all 0.2s;
}
.about-point:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}
.about-point i {
  color: var(--accent);
}
.about-icon {
  font-size: 14rem;
  color: rgba(245, 166, 35, 0.15);
}

/* ===== Partners ===== */
.partner-logo {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 80px;
}
.partner-logo:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.partner-logo i {
  font-size: 1.8rem;
  color: #b7bfcc;
  transition: all 0.3s ease;
}
.partner-logo:hover i {
  color: var(--accent-2);
}
.partner-logos i {
  font-size: 2.5rem;
  color: #b7bfcc;
  transition: all 0.3s ease;
}
.partner-logos i:hover {
  color: var(--accent-2);
  transform: scale(1.15);
}

/* ===== Reviews ===== */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.review-card p {
  font-size: 0.92rem;
  color: #5a6474;
  line-height: 1.7;
  font-style: italic;
}
.stats-row h3 {
  color: var(--navy);
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
}
.stats-row p {
  color: #697384;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.05));
}
.cta-banner p {
  font-size: 1rem;
  font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.contact-left {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-left::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 50%;
}
.badge-label {
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.contact-right {
  background: #fff;
  padding: 3.5rem;
}
.contact-right .form-control,
.contact-right .form-select {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e0e0;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.contact-right .form-control:focus,
.contact-right .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
  outline: none;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-item i {
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* ===== FAQ / Accordion ===== */
.accordion-item {
  border: none !important;
  margin-bottom: 0.8rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  background: #fff;
}
.accordion-button {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: #fff6e8;
  color: var(--accent-2);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent);
}
.accordion-button::after {
  filter: brightness(0) invert(0.3);
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(55%) sepia(90%) saturate(500%) hue-rotate(0deg) brightness(105%) contrast(97%);
}
.accordion-body {
  padding: 0.8rem 1.2rem 1.2rem;
  color: #5a6474;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding: 70px 0 20px;
  color: var(--light-70);
}
.footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.footer-links li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--light-70);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1.5rem;
}
.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer-bottom {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ===== Mobile Bottom Nav ===== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 1030;
  padding: 6px 0;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.06);
}
.mobile-nav .nav-item {
  flex: 1;
  text-align: center;
}
.mobile-nav .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.65rem;
  color: #888 !important;
  padding: 4px 0 !important;
}
.mobile-nav .nav-link i {
  font-size: 1.1rem;
}
.mobile-nav .nav-link.active {
  color: var(--accent) !important;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
  border: none;
  font-size: 1rem;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.5);
}

/* ===== Toast Notification ===== */
.toast-custom {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #28a745;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateX(400px);
  transition: transform 0.4s ease;
  font-size: 0.92rem;
  font-weight: 500;
}
.toast-custom.show {
  transform: translateX(0);
}
.toast-custom.error {
  background: #dc3545;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 998;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 0;
  z-index: 1030;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}
.sticky-cta .btn-accent {
  border-radius: 0;
  padding: 0.6rem 1.5rem;
}

/* ===== Form Spinner ===== */
.form-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Spin (for Bootstrap spinner) ===== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 46px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-visual {
    max-width: 540px;
    margin-top: 25px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .service-hero {
    padding: 60px 0 50px;
  }
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 55px 0 65px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
  }
  .rating-badge {
    font-size: 12px;
    padding: 8px 12px;
  }
  .hero-tags {
    gap: 8px !important;
  }
  .hero-tags .badge {
    font-size: 11px;
    padding: 8px 10px !important;
  }
  .btn-lg-custom {
    width: 100%;
    text-align: center;
  }
  .hero-visual {
    width: 100%;
    max-width: 450px;
    margin: 20px auto 0;
  }
  .orbit-dot {
    width: 10px;
    height: 10px;
  }
  .dot-1 {
    width: 13px;
    height: 13px;
  }
  .dot-2,
  .dot-4 {
    width: 9px;
    height: 9px;
  }
  .dot-3,
  .dot-5 {
    width: 11px;
    height: 11px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .contact-wrapper {
    border-radius: 16px;
  }
  .section-padding {
    padding: 50px 0;
  }
  body {
    padding-bottom: 60px;
  }
  .mobile-nav {
    display: flex !important;
  }
  .sticky-cta {
    display: block;
  }
  .contact-left,
  .contact-right {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 45px 0 55px;
  }
  .hero-title {
    font-size: 31px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-visual {
    max-width: 360px;
  }
  .hero-main-image {
    width: 78%;
    height: 78%;
  }
  .orbit-one {
    width: 94%;
    height: 94%;
  }
  .orbit-two {
    width: 80%;
    height: 80%;
  }
  .orbit-three {
    width: 66%;
    height: 66%;
  }
  .section-padding {
    padding: 50px 0;
  }
  .section-padding-lg {
    padding: 55px 0;
  }
  .section-title {
    font-size: 1.45rem;
  }
  .service-hero {
    padding: 50px 0 40px;
  }
  .stats-row h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
