/* ============================================================
   Mansa Aircondition – Custom Stylesheet
   Theme: #fd563a (Flame Orange) + complementary palette
   ============================================================ */

:root {
  --primary:   #fd563a;
  --primary-d: #d63e24;
  --primary-l: #ff7a5c;
  --dark:      #1a1a2e;
  --dark2:     #16213e;
  --light-bg:  #fff5f3;
  --accent:    #fff3f0;
  --white:     #ffffff;
  --text:      #2d2d2d;
  --muted:     #666;
}

/* ── GLOBAL ─────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  background: rgba(253,86,58,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(253,86,58,0.2);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.title-line {
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px 0 24px;
}
.title-line.center { margin: 12px auto 24px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-main {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(253,86,58,0.35);
}
.btn-main:hover {
  background: var(--primary-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(253,86,58,0.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-main {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-main:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: #ffffff !important;
  padding: 12px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.navbar.scrolled {
  padding: 8px 0;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.navbar-brand img {
  height: 50px;
  width: auto;
  transition: height 0.3s;
}
.navbar.scrolled .navbar-brand img { height: 40px; }

.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border-color: rgba(0,0,0,0.2) !important;
  padding: 6px 10px;
}
.navbar-toggler-icon { filter: none; }

/* ── HERO SLIDER ─────────────────────────────────────────── */
#heroCarousel { margin-top: 0; }

.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,0.88) 0%,
    rgba(26,26,46,0.75) 45%,
    rgba(253,86,58,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,86,58,0.2);
  border: 1px solid rgba(253,86,58,0.4);
  color: #ff9580;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-tag i { color: var(--primary); }

.hero-content h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 56px;
}
.hstat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--primary);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.hstat:hover {
  background: rgba(253,86,58,0.15);
  border-color: var(--primary);
}
.hstat .num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hstat .lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* slide bg images */
.slide-1 { background-image: url('../images/banner-1.jpg'); }
.slide-2 { background-image: url('../images/banner-2.jpg'); }
.slide-3 { background-image: url('../images/banner-3.jpg'); }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 46px; height: 46px;
  background: rgba(253,86,58,0.75);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1; margin: 0 16px;
  transition: background 0.3s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--primary); }
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }

.carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; transition: all 0.3s;
}
.carousel-indicators .active {
  background: var(--primary);
  width: 26px; border-radius: 4px;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section { padding: 96px 0; background: #fff; }

.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(253,86,58,0.18);
}
.about-img-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(253,86,58,0.45);
}
.about-img-badge .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-img-badge .txt { font-size: 0.72rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.feat-row {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 20px;
}
.feat-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(253,86,58,0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.feat-row:hover .feat-icon {
  background: var(--primary);
  color: #fff;
}
.feat-row h6 { font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.feat-row p { font-size: 0.86rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section { padding: 96px 0; background: var(--light-bg); }

.svc-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(253,86,58,0.08);
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(253,86,58,0.15);
  border-color: rgba(253,86,58,0.2);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 74px; height: 74px;
  background: rgba(253,86,58,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.9rem;
  color: var(--primary);
  transition: all 0.35s ease;
}
.svc-card:hover .svc-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08) rotate(8deg);
}
.svc-card h5 {
  font-weight: 700; font-size: 1rem;
  color: var(--dark); margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.86rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 20px;
}
.svc-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.btn-svc-call {
  background: var(--primary);
  color: #fff; border: none;
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.btn-svc-call:hover {
  background: var(--primary-d); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(253,86,58,0.4);
}
.btn-svc-enq {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.3s; cursor: pointer;
}
.btn-svc-enq:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(253,86,58,0.1) 0%, transparent 70%);
}
.why-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(253,86,58,0.06) 0%, transparent 70%);
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative; z-index: 1;
}
.why-card:hover {
  background: rgba(253,86,58,0.1);
  border-color: rgba(253,86,58,0.35);
  transform: translateY(-6px);
}
.why-icon {
  width: 78px; height: 78px;
  background: rgba(253,86,58,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.9rem; color: var(--primary);
  transition: all 0.35s;
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff; transform: rotate(15deg);
}
.why-card h4 { color: #fff; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section { padding: 96px 0; background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
  min-height: 180px;
}
.g-item:hover img { transform: scale(1.1); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(253,86,58,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay i { font-size: 2rem; color: #fff; }

/* Grid special sizing */
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-overlay.open { display: flex; }
.lb-overlay img {
  max-width: 90vw; max-height: 86vh;
  border-radius: 8px; object-fit: contain;
}
.lb-close {
  position: absolute; top: 18px; right: 22px;
  font-size: 2rem; color: #fff; cursor: pointer;
  background: none; border: none; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--primary); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(253,86,58,0.75); color: #fff;
  border: none; border-radius: 50%; width: 46px; height: 46px;
  font-size: 1.2rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lb-prev:hover, .lb-next:hover { background: var(--primary); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section { padding: 96px 0; background: var(--light-bg); }

.cinfo-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  position: relative; overflow: hidden;
}
.cinfo-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(253,86,58,0.2), transparent 70%);
}
.cinfo-card h3 {
  color: #fff; font-weight: 800; margin-bottom: 30px; font-size: 1.5rem;
}
.cdet {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 22px;
}
.cdet .ci {
  flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(253,86,58,0.2);
  color: var(--primary); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.cdet h6 {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 3px;
}
.cdet p, .cdet a {
  color: rgba(255,255,255,0.9); font-size: 0.9rem;
  margin: 0; line-height: 1.55;
}
.cdet a:hover { color: var(--primary); }

.cform-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(253,86,58,0.1);
  height: 100%;
}
.cform-card h3 { color: var(--dark); font-weight: 800; margin-bottom: 24px; font-size: 1.4rem; }

.form-control, .form-select {
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(253,86,58,0.12);
  outline: none; background: #fff;
}
label.form-label { font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-top: 44px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.map-wrap iframe { display: block; width: 100%; height: 370px; border: none; }

/* ── FLOATING ENQUIRE ────────────────────────────────────── */
.float-enq {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 11px;
  border-radius: 10px 0 0 10px;
  border: none;
  cursor: pointer;
  z-index: 1050;
  box-shadow: -4px 0 20px rgba(253,86,58,0.45);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.float-enq i {
  writing-mode: horizontal-tb;
  font-size: 1rem;
  margin-bottom: 6px;
}
.float-enq:hover {
  background: var(--primary-d);
  padding-right: 14px;
  box-shadow: -6px 0 26px rgba(253,86,58,0.6);
}

/* ── STICKY CALL (mobile) ────────────────────────────────── */
.sticky-call {
  display: none;
  position: fixed; bottom: 20px; right: 20px;
  z-index: 1050;
  background: #25d366; color: #fff;
  border: none; width: 58px; height: 58px;
  border-radius: 50%; font-size: 1.5rem;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  animation: pulse 2s infinite;
  text-decoration: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .sticky-call  { display: flex; }
  /* .float-enq    { display: none; } */
}

/* ── SCROLL TO TOP ───────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 84px; right: 20px;
  width: 42px; height: 42px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50%; font-size: 1rem;
  display: none; align-items: center; justify-content: center;
  z-index: 1040; cursor: pointer;
  box-shadow: 0 4px 14px rgba(253,86,58,0.45);
  transition: all 0.3s;
}
#scrollTop:hover { background: var(--primary-d); transform: translateY(-3px); }

/* ── ENQUIRE MODAL ───────────────────────────────────────── */
.enq-modal .modal-header {
  background: var(--primary);
  color: #fff; border: none;
  padding: 22px 28px;
}
.enq-modal .modal-title { font-weight: 800; font-size: 1.2rem; }
.enq-modal .modal-subtitle { font-size: 0.82rem; opacity: 0.88; margin-top: 3px; }
.enq-modal .btn-close { filter: invert(1); }
.enq-modal .modal-body { padding: 28px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.7);
  /* padding: 64px 0 0; */
}
.footer-logo img { height: 50px; margin-bottom: 16px; }
.footer-logo p { font-size: 0.87rem; line-height: 1.7; max-width: 300px; }
.footer h5 {
  color: #fff; font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  display: flex; align-items: center; gap: 7px;
  transition: all 0.25s;
}
.footer ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer ul li a i { font-size: 0.75rem; }

.footer-contact-list li {
  display: flex; align-items: flex-start;
  gap: 10px; margin-bottom: 13px; font-size: 0.86rem;
}
.footer-contact-list li i { color: var(--primary); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  /* margin-top: 44px; */
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── AOS ─────────────────────────────────────────────────── */
[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – comprehensive mobile fixes
══════════════════════════════════════════════════════════ */

/* ── Tablet 992px ──────────────────────────────────────── */
@media (max-width: 991px) {
  /* prevent any element from creating horizontal scroll */
  body, html { overflow-x: hidden; }
  .container { overflow-x: hidden; }

  /* sections */
  .about-section,
  .services-section,
  .why-section,
  .gallery-section,
  .contact-section { padding: 72px 0; }

  /* about badge – move inside so it doesn't overflow right */
  .about-img-badge { right: 10px; bottom: 16px; }

  /* gallery – 3 cols, no span */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .g-item img { min-height: 150px; }
}

/* ── Mobile 768px ──────────────────────────────────────── */
@media (max-width: 767px) {

  /* stop any overflow from creating right-side gap */
  body, html { overflow-x: hidden; }
  .row { margin-left: 0; margin-right: 0; }
  .row > * { padding-left: 12px; padding-right: 12px; }
  section, .footer { overflow-x: hidden; }

  /* ── SECTIONS ── */
  .about-section,
  .services-section,
  .why-section,
  .gallery-section,
  .contact-section { padding: 56px 0; }

  /* ── NAVBAR ── */
  .navbar { padding: 10px 0; }
  .navbar-brand img { height: 42px; }
  /* mobile nav dropdown */
  #mainNav {
    background: #ffffff;
    border-radius: 12px;
    margin-top: 10px;
    padding: 12px 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  #mainNav .nav-link {
    padding: 10px 16px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: 0;
  }
  #mainNav .nav-link::after { display: none; }
  #mainNav .nav-item:last-child { border-bottom: none; }
  /* CTA button in mobile menu */
  #mainNav .btn-main {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    border-radius: 10px;
    padding: 12px 20px;
  }

  /* ── HERO ── */
  .hero-content {
    padding: 90px 0 50px;
    text-align: center;
  }
  .hero-tag { font-size: 0.7rem; padding: 6px 14px; letter-spacing: 1.5px; }
  .hero-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 16px;
  }
  .hero-content p {
    font-size: 0.93rem;
    margin-bottom: 26px;
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
    gap: 10px;
  }
  .hero-btns .btn-main,
  .hero-btns .btn-ghost {
    padding: 11px 22px;
    font-size: 0.85rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 28px;
  }
  .hstat { padding: 12px 8px; }
  .hstat .num { font-size: 1.3rem; }
  .hstat .lbl { font-size: 0.65rem; letter-spacing: 0.5px; }

  /* carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 36px; height: 36px;
    margin: 0 8px;
  }

  /* ── ABOUT ── */
  .about-img-main { height: 240px; border-radius: 14px; }
  /* badge: detach from image, show below */
  .about-img-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    border-radius: 12px;
    padding: 14px 20px;
    width: auto;
  }
  .about-img-badge .num { font-size: 1.8rem; }
  .about-section .col-lg-7 { margin-top: 8px; }
  .section-title { font-size: 1.55rem; }

  /* ── SERVICES ── */
  .svc-card { padding: 24px 18px; }
  .svc-icon { width: 60px; height: 60px; font-size: 1.5rem; }

  /* ── WHY ── */
  .why-card { padding: 28px 20px; }
  .why-icon { width: 64px; height: 64px; font-size: 1.6rem; }

  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .g-item img { min-height: 130px; }

  /* ── CONTACT ── */
  .cinfo-card { padding: 28px 20px; border-radius: 14px; }
  .cform-card { padding: 28px 20px; border-radius: 14px; }
  .cform-card h3 { font-size: 1.2rem; }
  .map-wrap iframe { height: 260px; }
  .map-wrap { margin-top: 28px; }

  /* ── FOOTER ── */
  .footer { padding: 48px 0 0; }
  .footer-logo p { max-width: 100%; }
  .footer h5 { margin-top: 8px; }

  /* ── SCROLL TOP ── */
  #scrollTop { bottom: 90px; }
}

/* ── Enquire modal full screen on mobile ──────────────── */
@media (max-width: 575px) {
  .enq-modal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  .enq-modal .modal-body { padding: 20px 18px; }
}

/* ── Small Mobile 480px ────────────────────────────────── */
@media (max-width: 480px) {

  /* hero */
  .hero-content { padding: 80px 0 44px; }
  .hero-content h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-main,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 6px; }
  .hstat .num { font-size: 1.15rem; }
  .hstat .lbl { font-size: 0.6rem; margin-top: 3px; }
  .hstat { padding: 10px 6px; }

  /* gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .g-item img { min-height: 110px; }

  /* about */
  .about-img-main { height: 200px; }

  /* sections tighter */
  .about-section,
  .services-section,
  .why-section,
  .gallery-section,
  .contact-section { padding: 44px 0; }

  /* contact cards */
  .cinfo-card { padding: 22px 16px; }
  .cform-card { padding: 22px 16px; }

  /* service card */
  .svc-card { padding: 20px 14px; }
  .svc-btns { flex-direction: column; gap: 6px; }
  .btn-svc-call,
  .btn-svc-enq { width: 100%; justify-content: center; padding: 9px 12px; }

  /* why cards */
  .why-card { padding: 22px 16px; }

  /* footer bottom text */
  .footer-bottom { font-size: 0.75rem; padding: 14px 12px; }

  /* map */
  .map-wrap iframe { height: 220px; }

  /* lightbox arrows */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 36px; height: 36px; font-size: 1rem; }
}
