/* =========================================
   Mahalaxmi Service Centre - style.css
   Theme: Navy Blue + Golden Amber
   Font: Plus Jakarta Sans + Outfit
   ========================================= */

:root {
  --navy: #0d1b3e;
  --navy-dark: #081025;
  --navy-mid: #132050;
  --gold: #FEAF06;
  --gold-dark: #e09900;
  --gold-light: #ffcb4a;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(13, 27, 62, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 27, 62, 0.14);
  --shadow-lg: 0 20px 60px rgba(13, 27, 62, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.text-gold {
  color: var(--gold);
}

.bg-light-section {
  background-color: var(--off-white);
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  padding: 8px 0;
  font-family: 'Outfit', sans-serif;
}

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

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

.top-bar i {
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.main-navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
  transition: var(--transition);
}

.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--navy) !important;
  background: rgba(254, 175, 6, 0.08);
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(254, 175, 6, 0.3);
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 20px rgba(254, 175, 6, 0.45);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: var(--white) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero-slide {
  height: 90vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Fallback if image not loaded */
  background-color: var(--navy-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(8, 16, 37, 0.88) 0%,
      rgba(13, 27, 62, 0.72) 55%,
      rgba(13, 27, 62, 0.40) 100%);
  z-index: 1;
}

.carousel-item .container {
  position: relative;
  z-index: 2;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(254, 175, 6, 0.15);
  border: 1px solid rgba(254, 175, 6, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.8;
}


.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(254, 175, 6, 0.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 16px;
  opacity: 0;
  transition: var(--transition);
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

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

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 28px;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(254, 175, 6, 0.3);
  white-space: nowrap;
}

.marquee-track span i {
  color: var(--gold);
}

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

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

/* ===== SECTION COMMONS ===== */
.section-pad {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(254, 175, 6, 0.1);
  border-left: 3px solid var(--gold);
  padding: 5px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== ABOUT ===== */
.about-img-grid {
  position: relative;
  padding: 20px 20px 20px 0;
}

.about-img-main img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  border: 4px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-img-small img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-badge-box {
  position: absolute;
  top: 0;
  left: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}

.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.about-point i {
  color: var(--gold-dark);
  font-size: 1rem;
}

.about-point:hover {
  border-color: var(--gold);
  background: rgba(254, 175, 6, 0.06);
  box-shadow: var(--shadow-sm);
}

/* ===== SERVICES ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(254, 175, 6, 0.3);
}

.service-img {
  width: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-img-overlay {
  opacity: 1;
}

.service-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: rgba(254, 175, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--navy);
  gap: 10px;
}

/* Mobile: stack service cards */
@media (max-width: 575px) {
  .service-card {
    flex-direction: column;
  }

  .service-img {
    width: 100%;
    height: 180px;
  }
}

/* ===== VERTICAL SERVICE CARDS (4 per row) ===== */
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(254, 175, 6, 0.35);
}

.svc-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.svc-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.08);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.65), rgba(13, 27, 62, 0.45));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
  opacity: 0;
  transition: var(--transition);
}

.svc-card:hover .svc-overlay {
  opacity: 1;
}

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

.svc-icon {
  width: 38px;
  height: 38px;
  background: rgba(254, 175, 6, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.svc-card:hover .svc-icon {
  background: var(--gold);
  color: var(--navy-dark);
}

.svc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.svc-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  margin-top: auto;
}

.svc-link:hover {
  color: var(--navy);
  gap: 10px;
}

@media (max-width: 575px) {
  .svc-img img {
    height: 120px;
  }

  .svc-body {
    padding: 12px 12px 14px;
  }

  .svc-title {
    font-size: 0.86rem;
  }

  .svc-desc {
    font-size: 0.75rem;
    display: none;
  }

  .svc-link {
    font-size: 0.76rem;
  }
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #163070 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(254, 175, 6, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(254, 175, 6, 0.08);
  border-color: rgba(254, 175, 6, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin: 0 auto 18px;
  transition: var(--transition);
}

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

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.65;
}

/* ===== COUNTER ===== */
.counter-section {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 60px 0;
}

.counter-item {
  position: relative;
}

.counter-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--navy-dark);
  display: inline;
  line-height: 1;
}

.counter-plus {
  display: inline;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-dark);
}

.counter-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

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

/* ===== FAQ ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item .accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
  background: var(--white);
  padding: 18px 20px;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--navy-dark);
  background: rgba(254, 175, 6, 0.06);
  border-bottom: 1px solid rgba(254, 175, 6, 0.2);
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FEAF06'%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");
}

.faq-item .accordion-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 16px 20px;
  line-height: 1.75;
  background: var(--white);
}

/* ===== CONTACT ===== */
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-info-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.contact-info-box>p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(254, 175, 6, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-detail a {
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--gold-dark);
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-box iframe {
  display: block;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(254, 175, 6, 0.3);
}

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

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

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

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

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

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

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

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

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

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

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-decoration: none;
}

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

.float-wa {
  left: 24px;
  background: #25D366;
  color: #fff;
  animation: pulse-wa 2.5s infinite;
}

.float-call {
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  animation: pulse-call 2.5s infinite;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
  }
}

@keyframes pulse-call {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(254, 175, 6, 0.35);
  }

  50% {
    box-shadow: 0 6px 32px rgba(254, 175, 6, 0.6);
  }
}

/* ===== SCROLL ANIMATION ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  .hero-slide,
  .carousel-item .container {
    height: 80vh;
    min-height: 500px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .about-img-small {
    width: 130px;
  }

  .about-badge-box {
    left: 0;
  }
}

@media (max-width: 767px) {

  .hero-slide,
  .carousel-item .container {
    height: auto;
    min-height: unset;
    padding: 80px 0 60px;
  }

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

  .section-pad {
    padding: 55px 0;
	overflow: hidden;
  }

  .contact-info-box {
    padding: 26px 20px;
  }

  .about-img-small {
    display: none;
  }

  .about-badge-box {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .about-img-grid {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .marquee-track span {
    font-size: 0.78rem;
    padding: 0 18px;
  }

  .service-img {
    height: 160px;
  }

  .why-card {
    padding: 22px 18px;
  }

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

/* ===== NAVBAR TOGGLER ===== */
.navbar-toggler {
  border: 2px solid rgba(13, 27, 62, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(254, 175, 6, 0.25);
}