/* Global */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #334155;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
}

section {
  width: 100%;
}

.section-wrap {
  max-width: 1370px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- HEADER STYLES --- */
.rp-header {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.rp-container {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}

.rp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.rp-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.rp-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  padding: 12px 18px;
  border-radius: 12px;
  max-width: 500px;
}

.rp-search i {
  color: #94a3b8;
}

.rp-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: #1e293b;
}

.rp-search input::placeholder {
  color: #94a3b8;
}

.rp-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}

.rp-menu-item {
  position: relative;
}

.rp-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #475569;
  padding: 10px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.rp-menu a:hover {
  background: #f1f5f9;
  color: #1e3a8a;
}

.rp-menu a.active {
  background: #f1f5f9;
  color: #1e3a8a;
  font-weight: 600;
}

/* Desktop Dropdown Styling */
.rp-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid #f1f5f9;
  margin-top: 5px;
}

.rp-menu-item:hover .rp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rp-dropdown a {
  padding: 12px 20px;
  border-radius: 0;
  font-size: 14px;
  color: #4b5563;
  display: block;
}

.rp-dropdown a:hover {
  background: #f8fafc;
  color: #1e3a8a;
  padding-left: 24px;
}

.rp-call {
  background: #f97316;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.rp-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
}

/* MOBILE TOGGLE */
.rp-mobile-toggle {
  display: none;
  background: #f1f5f9;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 20px;
  color: #1e293b;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* MOBILE MENU DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2000;
  padding: 24px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.close-drawer {
  width: 44px;
  height: 44px;
  font-size: 24px;
  background: #f8fafc;
  border: none;
  color: #64748b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* MOBILE DRAWER CONTENT */
.mobile-search {
  background: #f1f5f9;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.mobile-search i {
  color: #94a3b8;
}

.mobile-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: #1e293b;
}

.mobile-nav-item {
  display: block;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  transition: 0.2s;
}

.mobile-nav-item.home-active {
  background: #1e3a8a;
  color: #ffffff;
}

.mobile-dropdown {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-dropdown-trigger {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f8fafc;
  font-weight: 600;
  color: #334155;
  border-radius: 14px;
}

.mobile-dropdown.open .mobile-dropdown-trigger {
  background: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.mobile-dropdown-content {
  display: none;
  padding: 8px 20px 20px 45px;
  background: #ffffff;
}

.mobile-dropdown.open .mobile-dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-sub-item {
  text-decoration: none;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

.mobile-call-btn {
  background: #f97316;
  color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

/* RESPONSIVE QUERIES */
@media (max-width: 1100px) {
  .rp-menu,
  .rp-call,
  .rp-search {
    display: none;
  }
  .rp-mobile-toggle {
    display: flex;
  }
  .rp-container {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .rp-logo-img {
    height: 40px;
  }
}

/* Footer Section */

.site-footer {
  background: #1f3f63;
  color: #dbe7f3;
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #dbe7f3;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff8c00;
  padding-left: 5px;
}

/* Brand */
.brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  display: block;
}

.brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #cbd5e1;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  color: #cbd5e1;
  font-size: 18px;
  transition: 0.3s;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
}

.socials a:hover {
  color: #fff;
  background: #ff8c00;
  transform: translateY(-3px);
}

/* Contact */
.contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.contact i {
  color: #ff8c00;
  margin-top: 3px;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff8c00;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
  .footer-links {
    justify-content: center;
  }
}

/* Hero Slider */

.hero-section {
  position: relative;
  /* Fixed height for all devices */
  height: 600px;
  overflow: hidden;
  background: #0f203b;
}

.slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slides-container {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
}

.slides-container.moving {
  transition: transform 0.7s cubic-bezier(0.6, 0.05, 0.01, 0.9);
}

.slides-container.instant {
  transition: none;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 59, 0.95) 0%,
    rgba(15, 32, 59, 0.85) 35%,
    rgba(15, 32, 59, 0.45) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 10%;
  padding-right: 20px;
  color: #ffffff;
}

.slide-content .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 130, 37, 0.15);
  color: #ff8225;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.slide-content h1 {
  font-size: clamp(28px, 4vw, 56px); /* Slightly smaller for fixed height */
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
}

.slide-content p {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-group {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
}

/* Active Animations */
.slide.active .badge,
.slide.active h1,
.slide.active p,
.slide.active .btn-group {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active h1 {
  transition-delay: 0.1s;
}
.slide.active p {
  transition-delay: 0.2s;
}
.slide.active .btn-group {
  transition-delay: 0.3s;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 15px;
}

.btn-primary {
  background: #ff8225;
  color: #fff;
}
.btn-primary:hover {
  background: #e6751f;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover {
  background: #fff;
  color: #0f203b;
}

/* Controls */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #ff8225;
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.slider-bottom {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 15;
}

.pagination {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
}
.dot.active {
  width: 30px;
  border-radius: 10px;
  background: #ff8225;
}

/* Tablet & Mobile Fixes */
@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  } /* Slightly shorter for tabs */
  .slide-content {
    margin-left: 5%;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 450px;
  } /* Perfect for mobile screens */
  .slide-content h1 {
    font-size: 28px;
  }
  .btn-group {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: fit-content;
  }
  .arrow-btn {
    display: none;
  } /* Mobile par dots kaafi hain arrows hide kar diye */
}

/* --- SERVICES SECTION STYLES --- */
.section-wrap {
  max-width: 1370px;
  margin-inline: auto;
  padding-inline: 20px;
}

.services-intro {
  padding: 60px 0 40px 0;
}

.content-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: #fff1e7;
  color: #ff8c42;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.content-container h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.content-container p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  max-width: 550px;
  margin-inline: auto;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 0 0 20px;
  position: relative;
}

.carousel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.title-group {
  position: relative;
  padding-left: 14px;
}

.title-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #ff7a00;
  border-radius: 2px;
}

.title-group h1 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.title-group p {
  font-size: 13px;
  color: #94a3b8;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  background: #eff6ff;
  border-radius: 99px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-all svg {
  transition: transform 0.2s ease;
}

.view-all:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

.view-all:hover svg {
  transform: translateX(3px);
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 5px 0 30px;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.card:hover {
  border-color: #ff7a00;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.book-now {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff7a00;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
}

.book-now svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.card:hover .book-now svg {
  transform: translateX(4px);
}

.controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.control-btn:hover:not(.disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: scale(1.05);
}

.control-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-wrapper {
  width: 100%;
  padding: 40px 0 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: #1e3a8a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
  transition: 0.3s ease;
}

.browse-btn i {
  transition: 0.3s ease;
}

.browse-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.browse-btn:hover i {
  transform: translateX(6px);
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .card {
    flex: 0 0 100%;
  }

  .services-intro {
    padding: 50px 0 30px 0;
  }

  .carousel-title {
    align-items: center;
    margin-bottom: 20px;
  }

  .title-group h1 {
    font-size: 18px;
  }

  .controls {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 20px;
  }
}

/* Why Choose Section */

.why-choose-section {
  background: radial-gradient(circle at top, #274c77, #1b3552);
  padding: 100px 20px;
  color: #ffffff;
  font-family: Inter, sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.why-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 12px;
}

.why-header p {
  color: #cbd5e1;
  max-width: 620px;
  margin: auto;
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  background: linear-gradient(145deg, #3a5674, #314a65);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.why-card.highlight h3 {
  color: #f97316;
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #f97316;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 18px;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-tags span {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* --- REVIEWS SECTION --- */
.reviews-section {
  background: #f8fafc;
  padding: 50px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-intro {
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-badge {
  display: inline-block;
  padding: 5px 15px;
  background: #ffeeda;
  color: #ff7d1a;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-intro h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  color: #0f203b;
  margin-bottom: 15px;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.summary-stars {
  display: flex;
  gap: 4px;
}

.summary-stars i {
  color: #ffc107;
  font-size: 18px;
}

.rating-val {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.score {
  font-size: 24px;
  font-weight: 800;
  color: #0f203b;
}

.based-on {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #64748b;
  line-height: 1.2;
  font-weight: 500;
}

.reviews-slider-outer {
  max-width: 1240px;
  margin: 40px auto 0;
  position: relative;
  padding: 0 20px 80px 20px;
  width: 100%;
}

.reviews-slider-container {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  transition: transform 0.6s cubic-bezier(0.5, 0, 0, 1);
  will-change: transform;
  align-items: stretch;
}

.review-card {
  width: calc(33.333% - 13.4px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px;
  position: relative;
  flex-shrink: 0;
  transition: 0.3s;
}

.review-card:hover {
  border-color: #ff7d1a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: #ff7d1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(255, 125, 26, 0.3);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-stars {
  display: flex;
  gap: 3px;
}

.card-stars i {
  color: #ffc107;
  font-size: 14px;
}

.card-score-val {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
}

.review-quote {
  font-size: 15px;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.7;
  min-height: 85px;
}

.review-divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f203b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-meta {
  flex: 1;
}

.review-meta h5 {
  font-size: 14px;
  color: #0f203b;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-meta span {
  font-size: 12px;
  color: #94a3b8;
}

.review-badge {
  font-size: 11px;
  color: #ff7d1a;
  background: #ffeeda;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}

.reviews-nav {
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  gap: 12px;
}

.track-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.track-btn:hover:not(:disabled) {
  border-color: #ff7d1a;
  color: #ff7d1a;
}

.track-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .review-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .review-card {
    width: 100%;
  }
  .reviews-nav {
    right: 50%;
    transform: translateX(50%);
  }
  .reviews-slider-outer {
    padding-bottom: 100px;
  }
}

/* --- GLOBAL COMPONENTS --- */
.badge {
  display: inline-block;
  background-color: #fff7ed;
  color: #ea580c;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* --- FAQ SECTION STYLES --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 0px 50px 20px;
}

.FAQ-Section {
  text-align: center;
  margin-bottom: 48px;
}

.FAQ-Section .title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .FAQ-Section .title {
    font-size: 42px;
  }
}

.FAQ-Section .description {
  font-size: 16px;
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
  border-color: #f97316;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

@media (min-width: 768px) {
  .faq-toggle {
    padding: 24px;
  }
}

.faq-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.number-badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff7ed;
  color: #ea580c;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .number-badge {
  background-color: #f97316;
  color: #ffffff;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

.chevron {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
  color: #f97316;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-inner-content {
  overflow: hidden;
}

.faq-answer-wrapper {
  padding: 0 20px 24px 20px;
  border-top: 1px solid #f8fafc;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .faq-answer-wrapper {
    padding: 0 76px 28px 76px;
  }
}

.faq-answer {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  padding-top: 16px;
}

.contact-section {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
}

.contact-text {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
}

.contact-link {
  color: #f97316;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: #ea580c;
  border-color: #ea580c;
}

.help-icon {
  width: 22px;
  height: 22px;
  color: #f97316;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 60px 20px;
  }
}

/* SEO/INFO SECTION */
.info-content-section {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  padding: clamp(40px, 8vw, 80px) 24px;
  display: flex;
  justify-content: center;
}

.info-container {
  max-width: 900px;
  width: 100%;
}

.info-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.info-subtitle {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  color: #475569;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.info-text {
  font-size: clamp(15px, 2vw, 16px);
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.7;
}

.info-text strong {
  color: #1e293b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info-content-section {
    padding: 40px 20px;
  }
}

/* Services Main Page */

        .service-container {
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
        }

        /* Hero Section */
        .service-banner {
            background: linear-gradient(rgba(14, 46, 80, 0.92), rgba(14, 46, 80, 0.92)), url('https://images.unsplash.com/photo-1581092921461-7d157a1a7f18?auto=format&fit=crop&q=80&w=1920') center/cover;
            padding: 80px 5%;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .breadcrumbs {
            font-size: 14px;
            margin-bottom: 20px;
            color: #cbd5e1;
            display: flex;
            align-items: center;
        }

        .breadcrumbs span {
            margin: 0 10px;
            color: #94a3b8;
            font-size: 11px;
        }

        .hero-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 18px;
            color: #e2e8f0;
            font-weight: 400;
        }

        .brand-section {
            padding: clamp(40px, 8vw, 80px) 5%;
        }

        .services-padding {
            padding: clamp(40px, 8vw, 80px) 5%;
        }

        .process-padding {
            padding-bottom: 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .tagline {
            color: #f97316;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: clamp(24px, 4vw, 32px);
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-desc {
            max-width: 650px;
            margin: 0 auto;
            color: #64748b;
        }

        /* Brands Grid */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 20px;
        }

        .brand-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .brand-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: #f97316;
            transform: translateY(-5px);
        }

        .brand-logo {
            height: 100px;
        }

        .brand-name {
            font-weight: 600;
            font-size: 14px;
            color: #334155;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .service-image-box {
            position: relative;
            height: 220px;
            overflow: hidden;
            background-color: #f1f5f9;
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.1);
        }

        .service-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(14, 46, 80, 0.9));
            padding: 20px;
            color: white;
        }

        .service-label {
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .light-icon {
            opacity: 0.7;
        }

        .service-content {
            padding: 20px;
            flex-grow: 1;
        }

        .service-text {
            color: #64748b;
            font-size: 15px;
            margin-bottom: 25px;
        }

        .book-link {
            color: #0e2e50;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .book-link i {
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .service-card:hover .book-link {
            color: #f97316;
        }

        .service-card:hover .book-link i {
            transform: translateX(12px);
        }

        /* How It Works Section */
        .how-it-works-bg {
            background-color: #f1f5f9;
        }

        .process-container {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            position: relative;
            max-width: 1250px;
            margin: 0 auto;
        }

        .process-step {
            flex: 1;
            min-width: 0;
            background: #ffffff;
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid transparent;
            z-index: 2;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .process-step:hover {
            transform: translateY(-5px);
            border: 1px solid #f97316;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            background: #f97316;
            color: #ffffff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
            border: 3px solid #f1f5f9;
        }

        .step-icon-box {
            background-color: #e9eff6;
            width: 65px;
            height: 65px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px auto 20px;
            color: #0e2e50;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .process-step:hover .step-icon-box {
            color: #f97316;
            background-color: #fff7ed;
        }

        .step-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0e2e50;
        }

        .step-desc {
            font-size: 13px;
            color: #64748b;
            line-height: 1.6;
        }

        .process-divider {
            flex: 0 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .divider-line {
            height: 2px;
            width: 100%;
            border-top: 2px dashed #cbd5e1;
        }

        /* CTA Section */
        .cta-section {
            background-color: #f97316;
            text-align: center;
            padding: 80px 5%;
            color: white;
        }

        .cta-title {
            font-size: clamp(28px, 5vw, 36px);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-desc {
            font-size: 18px;
            max-width: 750px;
            margin: 0 auto 35px;
            opacity: 0.95;
        }

        .btn-cta {
            background-color: #0e2e50;
            color: white;
            padding: 20px 45px;
            border-radius: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-cta:hover {
            background-color: #1a3a5f;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Breakpoints */
        
        /* Tablet & Mobile: Process Section (2 per row on tablet) */
        @media (max-width: 1024px) {
            .process-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px 30px;
            }
            .process-divider {
                display: none;
            }
            .process-step {
                width: 100%;
            }
        }

        /* Small Mobile: Brands (2 per row) and Process (1 per row if too cramped) */
        @media (max-width: 600px) {
            .brands-grid {
                grid-template-columns: 1fr 1fr;
            }
            .process-container {
                grid-template-columns: 1fr;
            }
            .hero-banner {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

/* --- SERVICES CONTACT FORM SECTION STYLES --- */

        .service-contact-page-wrapper {
            background-color: #f8fafc;
            color: #1e293b;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .booking-wrapper {
            width: 100%;
            max-width: 830px;
            padding-top: 50px;
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fade-in {
            animation: fadeIn 0.4s ease-in-out;
        }

        /* Stepper Styles */
        .stepper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            gap: 15px;
        }

        .step-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #64748b;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .step-indicator.active {
            color: #1e3a5f;
            transform: scale(1.05);
        }

        .step-indicator .circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #edf2f7;
            color: #64748b;
            font-size: 14px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .step-indicator.active .circle {
            background-color: #1e3a5f;
            color: #ffffff;
            box-shadow: 0 4px 10px rgba(30, 58, 95, 0.2);
        }

        .step-indicator.completed .circle {
            background-color: #1e3a5f;
            color: #ffffff;
        }

        .stepper-line {
            width: 60px;
            height: 3px;
            background-color: #e2e8f0;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .stepper-line.active {
            background-color: #1e3a5f;
        }

        /* Card Styles */
        .service-form-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .service-contact-page-wrapper h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1e293b;
        }

        .subtitle {
            font-size: 16px;
            color: #64748b;
            margin-bottom: 32px;
        }

        /* Step 1: Services Grid */
        .form-services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        @media (max-width: 640px) {
            .form-services-grid {
                grid-template-columns: 1fr;
            }

            .service-form-card {
            padding: 20px;
        }
        }

        .service-from-service-card {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .service-from-service-card:hover {
            border-color: #1e3a5f;
            background-color: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .service-from-service-card.selected {
            border: 2px solid #1e3a5f;
            background-color: #f0f7ff;
            padding: 19px;
        }

        .radio-circle {
            min-width: 22px;
            height: 22px;
            border: 2px solid #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            background: white;
            transition: all 0.2s ease;
        }

        .service-from-service-card.selected .radio-circle {
            background-color: #1e3a5f;
            border-color: #1e3a5f;
        }

        .radio-circle svg {
            opacity: 0;
            width: 14px;
            height: 14px;
            fill: white;
            transition: opacity 0.2s ease;
        }

        .service-card.selected .radio-circle svg {
            opacity: 1;
        }

        .service-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #1e293b;
        }

        .service-info p {
            font-size: 13px;
            color: #64748b;
            line-height: 1.4;
        }

        /* Buttons */
        .service-contact-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: #1e3a5f;
            color: #ffffff;
        }

        .btn-orange {
            background-color: #ff7a1a;
            color: #ffffff;
        }

        .service-contact-btn:hover:not(:disabled) {
            opacity: 0.9;
            transform: translateY(-1px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }

        .service-contact-btn:active:not(:disabled) {
            transform: translateY(0);
        }

        .service-contact-btn:disabled {
            background-color: #cbd5e1;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Step 2 Form */
        .service-form-group {
            margin-bottom: 24px;
        }

        .service-form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #334155;
        }

        .service-form-group input, .service-form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 15px;
            background-color: #ffffff;
            color: #1e293b; 
            outline: none;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .service-form-group input::placeholder, .service-form-group textarea::placeholder {
            color: #94a3b8;
        }

        .service-form-group input:focus, .service-form-group textarea:focus {
            border-color: #1e3a5f;
            background-color: #ffffff;
            box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.08);
        }

        .back-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #64748b;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 24px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .back-link:hover {
            color: #1e3a5f;
            transform: translateX(-4px);
        }

        /* Step 3: Success */
        .service-form-success-content {
            text-align: center;
            padding: 20px 0;
        }

        .service-form-success-icon {
            width: 80px;
            height: 80px;
            background: #ecfdf5;
            color: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .service-form-summary-box {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-top: 30px;
            text-align: left;
        }

        .service-form-summary-item {
            margin-bottom: 12px;
            font-size: 14px;
        }

        .service-form-summary-label {
            font-weight: 600;
            color: #64748b;
            display: block;
            margin-bottom: 2px;
        }

        .summary-value {
            color: #1e293b;
            font-weight: 500;
        }

        .service-form-footer-call {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: #64748b;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }

        .service-form-footer-call a {
            color: #1e3a5f;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
        }

        .service-form-footer-call a:hover {
            text-decoration: underline;
        }

        /* Utility */
        .service-step-hidden {
            display: none !important;
        }