/* ================================================
   SP SERVICES - Custom Stylesheet
   Color Theme: Deep Blue + Vibrant Orange
   ================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #0a1628;
  --secondary: #0d2244;
  --accent: #ff6b00;
  --accent-light: #ff8c35;
  --teal: #00c9b1;
  --white: #ffffff;
  --light-bg: #f0f4ff;
  --text-dark: #0a1628;
  --text-muted: #6c7a92;
  --border: rgba(255, 107, 0, 0.2);
  --shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
  --shadow-orange: 0 8px 30px rgba(255, 107, 0, 0.35);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-sub: 'Rajdhani', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Section Spacing --- */
section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  color: var(--primary);
  line-height: 1.1;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 8px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 12px auto 0;
}

.divider-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar .top-contact span {
  margin-right: 18px;
}

.top-bar .top-contact i {
  color: var(--accent);
  margin-right: 5px;
}

.top-bar .top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.75rem;
  margin-left: 6px;
  transition: var(--transition);
}

.top-bar .top-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================
   HEADER / NAVBAR
   ================================================ */

   .logos{
    width: 100%;
    height: 80px;
   }
.main-header {
  background: var(--secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(13, 34, 68, 0.97);
  backdrop-filter: blur(10px);
}

.navbar-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
  display: block;
}

.logo-text .brand-tag {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-nav .nav-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 28px 14px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-toggler {
  border: 2px solid var(--accent) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff6b00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}



/* ================================================
   HERO CAROUSEL
   ================================================ */

#heroCarousel {
  width: 100%;
  overflow: hidden;
  margin-top: -79px;
  margin-bottom: -80px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 🔥 IMPORTANT FIX */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.65) 55%, rgba(10, 22, 40, 0.3) 100%);
  z-index: 1;
  pointer-events: none; /* ✅ CLICK FIX */
}

/* 🔥 IMPORTANT FIX */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 700px;
  pointer-events: none; /* ✅ arrows block nahi honge */
}

/* buttons clickable rahenge */
.hero-btns a {
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--accent);
  display: block;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 8px;
  border: none;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* 🔥 ARROW FIX */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  margin: 0 15px;
  z-index: 5; /* ✅ IMPORTANT */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
}

/* indicators */
.carousel-indicators {
  bottom: 18px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 767px) {
  .hero-slide {
    height: 420px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575px) {
  .hero-slide {
    height: 380px;
  }

  .hero-btns .btn-hero-outline {
    display: none;
  }
}





/* ================================================
   MARQUEE / TICKER
   ================================================ */
.marquee-section {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  padding: 0 30px;
}

.marquee-track span i {
  margin-right: 8px;
  color: var(--white);
  opacity: 0.85;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
  background: var(--light-bg);
  padding: 80px 0;
}

/* Image */
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Floating Badge */
.about-badge-float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: var(--shadow-orange);
  text-align: center;
}

.about-badge-float .years {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.about-badge-float .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content */
.about-content {
  padding-left: 30px;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 10px;
}

.section-title span {
  color: var(--accent);
}

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px 0;
}

/* Text */
.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Feature List */
.about-feature-list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.about-feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.icon-check {
  width: 22px;
  height: 22px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #e65c00;
}

.btn-secondary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about-img-wrap img {
    height: auto;
  }

  .about-badge-float {
    left: 10px;
    bottom: 10px;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .about-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* ================================================
   SERVICES
   ================================================ */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(10, 22, 40, 0.16);
  border-color: var(--accent);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.5), transparent);
  pointer-events: none;
}

.service-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(255, 107, 0, 0.1);
  line-height: 1;
  letter-spacing: 1px;
}

.service-icon-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.service-card-title {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.btn-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 9px 20px;
  border-radius: 8px;
  transition: var(--transition);
  width: fit-content;
}

.btn-call-now:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--accent);
  transform: translateY(-6px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: rotate(10deg) scale(1.1);
}

.why-card h5 {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ================================================
   COUNTER SECTION
   ================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--accent) 0%, #d45500 100%);
  padding: 70px 0;
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-icon {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}

.counter-label {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

.counter-divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  margin: auto;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-section {
  background: var(--light-bg);
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(255, 107, 0, 0.08);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  letter-spacing: 2px;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 107, 0, 0.2);
  font-size: 1.8rem;
  color: var(--accent);
  box-shadow: 0 6px 24px rgba(255, 107, 0, 0.15);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step-card:hover .step-icon-wrap {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}

.step-connector {
  position: absolute;
  top: 68px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.step-card h5 {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-section {
  background: var(--white);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--white);
  transform: scale(0.6);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Lightbox */
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}

.lightbox-modal .modal-body {
  padding: 0;
}

.lightbox-modal img {
  width: 100%;
  border-radius: 10px;
}

.lightbox-modal .btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  filter: invert(1);
  z-index: 10;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-section {
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 22, 40, 0.06);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.12);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(255, 107, 0, 0.12);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.author-initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.author-area {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ================================================
   FAQS
   ================================================ */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: 1px solid rgba(10, 22, 40, 0.08) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 22, 40, 0.05);
}

.accordion-button {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--white) !important;
  padding: 18px 22px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  background: rgba(255, 107, 0, 0.04) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 14px 22px 20px;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  background: var(--primary);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}

.contact-info-detail label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

.contact-info-detail span,
.contact-info-detail a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-detail a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
}

.form-label {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-control {
  border: 2px solid rgba(10, 22, 40, 0.1) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  color: var(--primary) !important;
  background: var(--white) !important;
  transition: var(--transition) !important;
}

.form-control:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12) !important;
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 34px;
  border-radius: 8px;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 107, 0, 0.5);
  color: var(--white);
}

/* ================================================
   FOOTER
   ================================================ */
.main-footer {
  background: #060f1d;
  padding: 65px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo .brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
}

.footer-logo .brand-tag {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom span {
  color: var(--accent);
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--white);
}

.float-btn-call {
  background: linear-gradient(135deg, #0a84ff, #0062cc);
}

.float-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-btn .tooltip-label {
  position: absolute;
  right: 62px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .tooltip-label {
  opacity: 1;
}

/* Back to top */
.back-top {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  opacity: 0;
  pointer-events: none;
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ================================================
   MAP SECTION
   ================================================ */
.map-section {
  padding: 0;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  filter: grayscale(30%);
}

/* ================================================
   GENERAL BUTTONS
   ================================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
  color: var(--white);
}

/* ================================================
   SCROLL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991.98px) {
  .hero-slide {
    height: 480px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .navbar-collapse {
    background: var(--secondary);
    padding: 10px 20px 20px;
    margin-top: 10px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 107, 0, 0.2);
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .about-badge-float {
    left: 10px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .step-connector {
    display: none;
  }

  .counter-divider {
    display: none;
  }
}
.cu-mr-at{
	margin:0 auto!important
}
@media (max-width: 767.98px) {
	.cu-mb-ds-nn{
		display:none;
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
  section {
    padding: 78px 0;


  .top-bar .top-contact .d-lg-inline {
    display: none !important;
  }

  .about-img-wrap img {
    height: 300px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }
}}

