/* ═══════════════════════════════════════════════════════════════════
   MAHARANA FITNESS SERVICE CENTER — Custom Stylesheet
   Author: Maharana Fitness Service Center
   Stack : Bootstrap 5 + AOS + Font Awesome 6
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ───────────────────────────────────────────────── */
:root {
  /* ── Accent ── */
  --accent:       #e63946;
  --accent-dark:  #c1121f;
  --accent-glow:  rgba(230, 57, 70, 0.2);

  /* ── Page / section backgrounds ── */
  --dark:         #f7f8fc;   /* body bg — light cool gray   */
  --dark-2:       #eef1f8;   /* section-dark alt — light blue-gray */
  --dark-3:       #e4e8f5;

  /* ── Cards ── */
  --card-bg:      #ffffff;
  --card-border:  rgba(15, 23, 42, 0.09);
  --card-shadow:  0 4px 24px rgba(15, 23, 42, 0.07);

  /* ── Text on light backgrounds ── */
  --text-light:   #0f172a;   /* headings */
  --text-muted:   #64748b;   /* body / muted */

  /* ── Kept for internal dark sections (stats/gallery/footer) ── */
  --dark-solid:   #0a0f1e;
  --dark-solid-2: #111827;
  --dark-solid-3: #1e293b;

  /* ── Aliases (used in older rules) ── */
  --light:              #ffffff;
  --light-2:            #f7f8fc;
  --text-dark:          #0f172a;
  --text-dark-muted:    #64748b;
  --card-bg-light:      #ffffff;
  --card-border-light:  rgba(15, 23, 42, 0.09);

  /* ── Misc ── */
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --nav-h:        72px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
}

/* ─── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  background-color: var(--dark);   /* #f7f8fc */
  color: var(--text-light);        /* #0f172a */
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}

/* ─── Utilities ───────────────────────────────────────────────────── */
.text-accent         { color: var(--accent) !important; }
.text-muted-light    { color: var(--text-muted); }
.section-pad         { padding: 90px 0; }
.section-dark        { background-color: var(--dark-2); }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  padding: 4px 14px;
  border-radius: 30px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
}
.section-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ─── Scrollbar ───────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════════
   SITE HEADER — Top Bar + Navbar
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Outer wrapper ───────────────────────────────────────────────── */
.site-header {
  z-index: 1060;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 6px 40px rgba(0,0,0,0.6);
}

/* ─── Top Info Bar ────────────────────────────────────────────────── */
.top-bar {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(230, 57, 70, 0.18);
  padding: 7px 0;
  font-size: 0.78rem;
}

.top-bar .container {
  display: block;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 4px 14px;
  transition: color var(--transition);
  white-space: nowrap;
}

.top-bar-item i {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

a.top-bar-item:hover { color: #fff; }

.top-bar-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  margin: 0;
  vertical-align: middle;
}

.top-bar-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: #25d366;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  margin-left: 10px;
  transition: background var(--transition), transform var(--transition);
}

.top-bar-wa i { font-size: 0.95rem; }

.top-bar-wa:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Main Navbar ─────────────────────────────────────────────────── */
.navbar {
  background: rgba(10, 10, 10, 0.88) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled .navbar {
  background: rgba(8, 8, 8, 0.98) !important;
}

.navbar .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Brand logo with ring */
.brand-logo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.navbar-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: block;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.brand-logo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, 0.35);
  animation: logoRingSpin 8s linear infinite;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(230, 57, 70, 0.5) 20%,
    transparent 40%
  );
}

@keyframes logoRingSpin {
  to { transform: rotate(360deg); }
}

.navbar-brand:hover .navbar-logo {
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

/* Brand text */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.72) !important;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link span {
  position: relative;
}

/* Animated underline */
.navbar-nav .nav-link span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

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

/* CTA Call Now button */
.btn-call-now {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(230, 57, 70, 0.35);
}

.btn-call-now:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.55);
}

.btn-call-icon {
  font-size: 0.85rem;
  animation: phoneRing 2.5s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%  { transform: rotate(-15deg); }
  96%  { transform: rotate(15deg); }
}

/* Shimmer effect on CTA */
.btn-call-shimmer {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -75%; }
  60%, 100% { left: 125%; }
}

/* Custom hamburger toggler */
.custom-toggler {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background var(--transition), border-color var(--transition);
}

.custom-toggler:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.4);
}

.tbar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animate to × when open */
.custom-toggler[aria-expanded="true"] .tbar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .tbar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.custom-toggler[aria-expanded="true"] .tbar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Red gradient accent line at bottom of header */
.header-accent-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 30%,
    #ff6b6b 50%,
    var(--accent) 70%,
    transparent 100%
  );
}

/* ═══════════════════════════════════════════════════════════════════
   HERO CAROUSEL
   ═══════════════════════════════════════════════════════════════════ */

/*
  Header heights:
    Desktop  — top-bar (40px) + navbar (76px) + accent-line (2px) = 118px
    Mobile   — navbar only = 76px
  #home gets margin-top equal to header height so the slide
  starts BELOW the header with zero overlap.
  height = calc(100vh - header-height) keeps it full-screen.
*/
#home {
  margin-top: 118px;
  overflow: hidden;
}

.hero-slide {
  height: calc(100vh - 118px);
  min-height: 520px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 1;
  pointer-events: none;
}

/* Bottom accent line */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Dark overlay on each slide */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.68) 48%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* Large decorative icon in background — animated float */
.hero-icon-bg {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(10rem, 22vw, 22rem);
  color: rgba(255,255,255,0.055);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  max-width: 60%;
  overflow: hidden;
}

/* Per-slide gradient background colours */
.slide-1 {
  background-color: #120000;
  background-image: url('../images/banner-1.jpg');
  background-size: cover;
  background-position: center;
}

.slide-2 {
  background-color: #00091a;
  background-image: url('../images/banner-2.jpg');
  background-size: cover;
  background-position: center;
}

.slide-3 {
  background-color: #000c08;
  background-image: url('../images/banner-3.jpg');
  background-size: cover;
  background-position: center;
}

/* Hero content container — absolutely fills the slide so vertical
   centering is independent of Bootstrap's carousel transition state */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 2;
}

@media (max-width: 991.98px) {
  /* No top-bar on mobile/tablet — only navbar (~76px) */
  #home        { margin-top: 76px; }
  .hero-slide  { height: calc(100vh - 76px); min-height: 480px; }
  .hero-content { padding-top: 0; }
}

/* ─── Hero Badge ──────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 57, 70, 0.10);
  border: 1px solid rgba(230, 57, 70, 0.35);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(230, 57, 70, 0.18), inset 0 0 14px rgba(230, 57, 70, 0.08);
}

/* ─── Hero Title ──────────────────────────────────────────────────── */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--text-light);
  margin-bottom: 22px;
  text-shadow: 0 3px 28px rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}

.hero-title .text-accent {
  background: linear-gradient(135deg, #ff5a65 0%, #e63946 55%, #c1121f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(230, 57, 70, 0.55));
}

/* ─── Hero Description ────────────────────────────────────────────── */
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 34px;
  max-width: 480px;
  line-height: 1.72;
}

/* ─── Hero CTA Buttons ────────────────────────────────────────────── */
.btn-hero {
  font-weight: 700;
  padding: 14px 30px;
  font-size: 0.95rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero:hover { transform: translateY(-3px); }

.btn-danger {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-danger:hover,
.btn-danger:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 28px var(--accent-glow);
}

/* ─── Hero Trust Stats (Slide 1) ──────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 14px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 28px;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-stat-div {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.14);
  margin-right: 28px;
  flex-shrink: 0;
  align-self: center;
}

/* ─── Scroll Indicator ────────────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  pointer-events: none;
}

.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-mouse::before {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  font-weight: 500;
}

/* ─── Carousel Controls ───────────────────────────────────────────── */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ─── Carousel Indicators ─────────────────────────────────────────── */
.carousel-indicators [data-bs-target] {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  opacity: 0.35;
  border: 0;
  background: #fff;
  margin: 0 4px;
  transition: opacity var(--transition), width var(--transition), background var(--transition);
}

.carousel-indicators .active {
  opacity: 1;
  width: 52px;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none;
  padding: 32px 0;
}

.stat-item {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 3px solid var(--card-border);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15);
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  box-shadow: 0 8px 24px var(--accent-glow);
  z-index: 2;
}

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

.about-list li {
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.about-list li:last-child { border-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════ */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.35);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}

.service-icon-circle {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
  flex-shrink: 0;
}

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

.service-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSORIES SECTION
   ═══════════════════════════════════════════════════════════════════ */
.acc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.acc-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.acc-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}

.acc-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.acc-card-header.old .acc-header-icon {
  background: rgba(230, 57, 70, 0.12);
  color: var(--accent);
  border: 1px solid rgba(230, 57, 70, 0.25);
}

.acc-card-header.new .acc-header-icon {
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.acc-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

.acc-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 0;
}

.acc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.acc-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.acc-list li:last-child { border-bottom: 0; }

.acc-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.acc-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 3px;
  font-weight: 600;
}

.acc-list li p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════════
   MAINTENANCE PLANS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.mplan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.mplan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Popular card highlight */
.mplan-popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(230,57,70,0.08) 0%, var(--card-bg) 50%);
  box-shadow: 0 8px 32px rgba(230,57,70,0.15);
}

.mplan-popular:hover {
  box-shadow: 0 20px 50px rgba(230,57,70,0.25);
}

.mplan-popular-tag {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.mplan-badge {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(230, 57, 70, 0.12);
  margin-bottom: 4px;
}

.mplan-popular .mplan-badge {
  color: rgba(230, 57, 70, 0.25);
}

.mplan-freq {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.mplan-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.mplan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}

.mplan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mplan-features li:last-child { border-bottom: 0; }

.mplan-features li i {
  width: 20px;
  height: 20px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.mplan-btn {
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  padding: 11px;
}

/* ═══════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════════ */
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  height: 100%;
}

.why-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: #fff;
}

.why-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 4px;
}

.why-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(230, 57, 70, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ═══════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════ */
.contact-info-card,
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item:last-of-type { border-bottom: 0; }

.contact-item:hover { color: var(--accent); }

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Form controls — light theme */
.form-dark {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  color: var(--text-light) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}

.form-dark::placeholder { color: rgba(15, 23, 42, 0.35); }

.form-dark:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
  background: #fff !important;
  outline: none;
}

.form-dark option { background: #fff; color: var(--text-light); }

.map-wrap {
  border: 1px solid var(--card-border);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — Minimal copyright bar
   ═══════════════════════════════════════════════════════════════════ */
.site-footer-minimal {
  background: #090909;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

/* WhatsApp Floating Button */
.fab-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.fab-whatsapp:hover .fab-tooltip { opacity: 1; }

/* WhatsApp pulse ring */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(0.95); opacity: 1; }
  70%  { transform: scale(1.3);  opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Mobile Sticky Call Button */
.sticky-call {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 40px;
  box-shadow: 0 6px 24px var(--accent-glow);
  z-index: 1040;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sticky-call:hover {
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 32px var(--accent-glow);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-light);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 1039;
  transition: background var(--transition), transform var(--transition);
}

.back-to-top.show { display: flex; }

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════════
   AOS — reduce translate distance to stop content jumping
   Double attribute selector raises specificity above AOS defaults.
   ═══════════════════════════════════════════════════════════════════ */
[data-aos][data-aos][data-aos="fade-up"]    { transform: translate3d(0,  14px, 0); }
[data-aos][data-aos][data-aos="fade-down"]  { transform: translate3d(0, -14px, 0); }
[data-aos][data-aos][data-aos="fade-right"] { transform: translate3d(0px, 0, 0); }
[data-aos][data-aos][data-aos="fade-left"]  { transform: translate3d( 0px, 0, 0); }
[data-aos][data-aos][data-aos="zoom-in"]    { transform: scale(0.97); }

/* Keep elements visible if JS/AOS fails to load */
[data-aos]:not(.aos-init) {
  opacity: 1 !important;
  transform: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FORM SUCCESS ALERT
   ═══════════════════════════════════════════════════════════════════ */
.form-success {
  background: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.4);
  border-radius: 8px;
  color: #75b798;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════════════════ */
#galleryModal .modal-content {
  border-radius: var(--radius-lg);
}

#galleryModal .btn-close { filter: invert(1); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }

  /* Mobile nav drawer */
  .navbar-collapse {
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 20px 20px;
    margin-top: 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(230, 57, 70, 0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }

  /* Mobile nav links full-width with left accent bar */
  .navbar-nav .nav-link {
    font-size: 0.92rem;
    padding: 11px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 6px;
  }

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

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(230, 57, 70, 0.08);
    padding-left: 20px !important;
    border-color: rgba(230, 57, 70, 0.2);
  }

  .btn-call-now { width: 100%; justify-content: center; }

  .hero-icon-bg { font-size: 10rem; opacity: 0.03; right: 5%; }
  .about-badge-box { right: 0; bottom: -10px; padding: 14px 18px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-desc  { font-size: 0.95rem; max-width: 100%; padding-left: 12px; }
  .btn-hero   { padding: 11px 20px; font-size: 0.88rem; }
  .hero-stats { margin-top: 28px; padding-top: 20px; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-div { margin-right: 20px; padding-right: 0; }

  .about-img  { height: 320px; }
  .stat-number { font-size: 2rem; }

  .fab-whatsapp { bottom: 82px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .back-to-top  { display: none !important; }

  .contact-info-card,
  .contact-form-card { padding: 22px; }

  /* Shrink logo slightly on small mobile */
  .brand-logo-wrap,
  .navbar-logo { width: 46px; height: 46px; }
  .brand-name { font-size: 1.05rem; }
}

@media (max-width: 575.98px) {
  .stat-item + .stat-item::before { display: none; }
  .service-img-wrap { height: 180px; }
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHT THEME FINAL RULES
   Body / all content sections = light.
   Gallery stays dark navy for visual contrast.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── All section-pad backgrounds ───────────────────────────────── */
.section-pad              { background-color: #ffffff; }
.section-pad.section-dark { background-color: var(--dark-2); } /* #eef1f8 */

/* ─── Gallery — keep deep navy so images pop ─────────────────────── */
#gallery {
  background-color: var(--dark-solid) !important; /* #0a0f1e */
}
#gallery .section-title    { color: #ffffff; }
#gallery .text-muted-light { color: rgba(255,255,255,0.6) !important; }
#gallery .btn-outline-danger {
  border-color: rgba(230,57,70,0.6);
  color: rgba(255,255,255,0.9);
}
#gallery .btn-outline-danger:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── Services section — white bg with red-tinted cards ──────────── */
#services { background-color: #fff7f7; }
#services .service-card {
  background:   #ffffff;
  border-color: rgba(230, 57, 70, 0.12);
  box-shadow:   0 4px 20px rgba(230, 57, 70, 0.07);
}
#services .service-card:hover {
  box-shadow:   0 18px 48px rgba(230, 57, 70, 0.16), 0 0 0 1px rgba(230,57,70,0.25);
  border-color: rgba(230, 57, 70, 0.35);
}

/* ─── Maintenance section — use same alt bg as section-dark ─────── */
#maintenance { background-color: #fff7f7; }

/* ─── Contact & Why Us — plain white ────────────────────────────── */
.contact-info-card,
.contact-form-card {
  box-shadow: var(--card-shadow);
}

.why-card {
  background:   #ffffff;
  box-shadow:   var(--card-shadow);
}

.why-card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

/* ─── About outline button on light bg ──────────────────────────── */
.btn-outline-secondary {
  border-color: rgba(15,23,42,0.2) !important;
  color: var(--text-light) !important;
}
.btn-outline-secondary:hover {
  background: var(--text-light) !important;
  border-color: var(--text-light) !important;
  color: #fff !important;
}

/* ─── Acc & mplan cards on light bg ─────────────────────────────── */
.acc-card,
.mplan-card {
  box-shadow: var(--card-shadow);
}
.acc-card:hover  { box-shadow: 0 16px 48px rgba(15,23,42,0.12); }
.mplan-card:hover { box-shadow: 0 20px 50px rgba(15,23,42,0.12); }

/* ─── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); }
