/* ============================================================
   SafetyMesh Pro – Premium CSS
   HnSS Global Safety Nets
   ============================================================ */

:root {
  --gold: #f4c430;
  --gold-light: #ffe066;
  --gold-dark: #c9991e;
  --dark: #0a0a1a;
  --dark2: #12122a;
  --dark3: #1a1a3e;
  --dark4: #0d2137;
  --navy: #1e2d5a;
  --green: #25D366;
  --green-dark: #128C7E;
  --light-bg: #f8f9fc;
  --gray: #6c757d;
  --light-gray: #dee2e6;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 13.5px;
  color: #2d2d2d;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.section-pad { padding: 80px 0; }
.bg-light-alt { background: var(--light-bg); }
.bg-dark-alt { background: var(--dark2); }

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--dark);
  color: #aaa;
  font-size: 11.5px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(244,196,48,0.15);
  white-space: nowrap;
  overflow: hidden;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
}
.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  flex-shrink: 1;
  min-width: 0;
}
.top-bar-contacts a {
  color: #bbb;
  white-space: nowrap;
  font-size: 11.5px;
}
.top-bar-contacts a i { color: var(--gold); margin-right: 3px; font-size: 10px; }
.top-bar-contacts a:hover { color: var(--gold); }
.tb-sep { color: rgba(255,255,255,0.2); font-size: 10px; }
.top-bar-cities { color: #999; font-size: 11px; white-space: nowrap; }
.top-bar-cities i { color: var(--gold); margin-right: 3px; font-size: 10px; }
.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-whatsapp-top {
  background: var(--green);
  color: #fff !important;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-whatsapp-top:hover { background: var(--green-dark); }
.top-social { color: #aaa; margin-left: 4px; font-size: 12px; }
.top-social:hover { color: var(--gold); }
@media(max-width:768px) { .tb-cities-sep, .top-bar-cities { display: none; } }
@media(max-width:480px) { .top-bar-contacts a:not(:first-child) { display: none; } }

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  background: rgba(10,10,26,0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,196,48,0.12);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(10,10,26,0.98) !important;
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.brand-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--dark);
  box-shadow: 0 4px 15px rgba(244,196,48,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.brand-accent { color: var(--gold); }
.brand-sub { font-size: 10px; color: #aaa; letter-spacing: 1.5px; text-transform: uppercase; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
  background: rgba(244,196,48,0.08);
}

/* Mega dropdown */
.dropdown-menu {
  background: var(--dark2);
  border: 1px solid rgba(244,196,48,0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
}
.dropdown-item {
  color: rgba(255,255,255,0.8) !important;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  transition: var(--transition);
}
.dropdown-item i { width: 20px; color: var(--gold); margin-right: 8px; }
.dropdown-item:hover { background: rgba(244,196,48,0.1) !important; color: var(--gold) !important; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(244,196,48,0.25);
  transition: var(--transition);
  font-size: 14px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(244,196,48,0.4);
  color: var(--dark) !important;
}

/* ============================================================
   HERO
============================================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-swiper { width: 100%; height: 100vh; min-height: 600px; }
.hero-slide { position: relative; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,26,0.82) 0%, rgba(13,33,55,0.65) 60%, rgba(10,10,26,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,196,48,0.15);
  border: 1px solid rgba(244,196,48,0.3);
  color: var(--gold);
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.gold-text { color: var(--gold); }
.hero-subtitle { font-size: 1.05rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 28px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 6px 25px rgba(244,196,48,0.35);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(244,196,48,0.5); color: var(--dark); }
.btn-hero-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 6px 25px rgba(37,211,102,0.3);
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.btn-hero-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(37,211,102,0.45); color: #fff; }

.hero-phones { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-phones a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.hero-phones a i { color: var(--gold); }
.hero-phones a:hover { color: var(--gold); }

.hero-stats-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Swiper hero controls */
.hero-pagination { bottom: 20px !important; }
.hero-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(255,255,255,0.4); opacity: 1; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 30px; border-radius: 5px; }
.hero-next, .hero-prev { color: var(--gold) !important; }
.hero-next::after, .hero-prev::after { font-size: 18px !important; font-weight: 800; }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; justify-content: center;
}
.scroll-dot {
  width: 6px; height: 30px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:0.5} }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-section { background: var(--dark); border-bottom: 1px solid rgba(244,196,48,0.1); }
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
}
.trust-item { display: flex; align-items: center; gap: 8px; padding: 8px 16px; }
.trust-item i { color: var(--gold); font-size: 15px; }
.trust-item span { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; white-space: nowrap; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.1); }
@media(max-width:576px) { .trust-divider{display:none;} }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-tag {
  display: inline-block;
  background: rgba(244,196,48,0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(244,196,48,0.25);
}
.section-tag.light { background: rgba(244,196,48,0.15); }
.section-title {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1a1a2e;
}
.section-desc { color: var(--gray); font-size: 16px; max-width: 600px; margin: 0 auto; }
.text-gray { color: rgba(255,255,255,0.6) !important; }

/* ============================================================
   ABOUT
============================================================ */
.about-img-stack { position: relative; }
.about-img-main img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.about-img-float {
  position: absolute; bottom: -30px; right: -20px;
  width: 180px; border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-badge-float {
  position: absolute; top: 20px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(244,196,48,0.4);
}
.ab-num { font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.ab-text { font-size: 11px; font-weight: 700; color: var(--dark); text-transform: uppercase; }
.rounded-premium { border-radius: var(--radius-lg); }

.about-lead { font-size: 1.05rem; font-weight: 600; color: #333; margin-bottom: 12px; }
.about-text { color: var(--gray); margin-bottom: 12px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0; }
.af-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #333; }
.af-item i { color: var(--gold); font-size: 16px; }
.btn-outline-whatsapp {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-outline-whatsapp:hover { background: var(--green); color: #fff !important; }

/* ============================================================
   STATS
============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 50%, var(--dark4) 100%);
  padding: 60px 0;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,196,48,0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); border-color: var(--gold); background: rgba(244,196,48,0.06); }
.stat-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.stat-number { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   SERVICES
============================================================ */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.sc-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--dark);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(244,196,48,0.25);
  transition: var(--transition);
}
.service-card:hover .sc-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.sc-title { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.sc-desc { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.sc-link { color: var(--gold); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.sc-link i { transition: transform 0.2s; }
.service-card:hover .sc-link i { transform: translateX(4px); }
.sc-hover-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover .sc-hover-overlay { transform: scaleX(1); }

/* ============================================================
   PRODUCTS
============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-badge-new {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #e74c3c; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
}
.product-badge-wholesale {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
}
.product-img { position: relative; height: 200px; overflow: hidden; background: var(--light-bg); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-no-img { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #ccc; }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-whatsapp-sm { background: var(--green); color: #fff !important; border-color: var(--green); }
.product-info { padding: 20px; }
.product-cat { font-size: 11px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.product-desc { color: var(--gray); font-size: 13px; margin-bottom: 12px; }
.product-price { font-size: 13px; color: #333; margin-bottom: 12px; }
.product-price strong { color: var(--gold-dark); font-size: 15px; }
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark) !important; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.wf-item { display: flex; gap: 16px; margin-bottom: 24px; }
.wf-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--dark);
  box-shadow: 0 4px 15px rgba(244,196,48,0.25);
}
.wf-content h5 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.wf-content p { color: var(--gray); font-size: 14px; margin: 0; }

.why-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wg-row { display: flex; flex-direction: column; gap: 12px; }
.wg-row:first-child { margin-top: 30px; }
.wg-img-large { height: 220px; object-fit: cover; }
.wg-img-sm { height: 140px; object-fit: cover; }

/* ============================================================
   GALLERY
============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.gf-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gh-icon { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.gh-title { color: #fff; font-size: 14px; font-weight: 600; text-align: center; }
.gh-loc { color: rgba(255,255,255,0.7); font-size: 12px; margin-top: 4px; }
.gallery-item.hidden { display: none; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-swiper { padding-bottom: 50px !important; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid #f0f0f0;
  height: 100%;
}
.tc-stars { color: #f4c430; font-size: 14px; margin-bottom: 10px; }
.tc-quote { font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.tc-text { color: #444; font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: var(--gold); flex-shrink: 0; }
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.tc-name { font-size: 15px; font-weight: 700; color: #1a1a2e; }
.tc-role { font-size: 12px; color: var(--gray); }
.tc-service { font-size: 11px; color: var(--green-dark); margin-top: 3px; font-weight: 600; }
.testimonials-pagination .swiper-pagination-bullet-active { background: var(--gold); }
.google-reviews-cta .gr-stars { color: #f4c430; font-size: 1.4rem; margin-bottom: 8px; }

/* ============================================================
   ENQUIRY SECTION
============================================================ */
.enquiry-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-title { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.form-title i { color: var(--gold); }
.form-group { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; display: block; }
.req { color: #e74c3c; }
.form-control {
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  transition: var(--transition);
  background: #fafafa;
}
.form-control:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(244,196,48,0.12); outline: none; }
select.form-control { cursor: pointer; }

.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.ci-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: var(--radius);
  color: #fff;
  transition: var(--transition);
}
.ci-item:hover { border-color: var(--gold); background: rgba(244,196,48,0.08); color: var(--gold); }
.ci-whatsapp:hover { border-color: var(--green); background: rgba(37,211,102,0.08); color: var(--green); }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(244,196,48,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold);
  flex-shrink: 0;
}
.ci-whatsapp .ci-icon { background: rgba(37,211,102,0.15); color: var(--green); }
.ci-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.5); }
.ci-text strong { font-size: 15px; }
.branches-list h6 { display: flex; align-items: center; gap: 8px; }
.text-gold { color: var(--gold) !important; }

.success-msg {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #155724;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 500;
}
.error-msg {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  color: #721c24;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 500;
}
.or-divider { text-align: center; margin: 20px 0; position: relative; }
.or-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #eee; }
.or-divider span { position: relative; background: #fff; padding: 0 16px; color: #aaa; font-size: 13px; }
.btn-whatsapp-full {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-weight: 700;
  padding: 13px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.btn-whatsapp-full:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.45); }

/* ============================================================
   BRANCHES
============================================================ */
.branch-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.branch-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.branch-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.branch-name { font-size: 1rem; font-weight: 700; color: #1a1a2e; }
.branch-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ============================================================
   FOOTER
============================================================ */
.main-footer { background: var(--dark); border-top: 1px solid rgba(244,196,48,0.1); }
.footer-top { padding: 70px 0 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.logo-icon-sm {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--dark);
}
.footer-brand span { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-about { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--dark); }
.footer-heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 13.5px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; }
.fc-item i { color: var(--gold); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.fc-item span, .fc-item a { color: rgba(255,255,255,0.65); font-size: 13px; }
.fc-item a:hover { color: var(--gold); }
.btn-whatsapp-footer {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px;
  transition: var(--transition);
}
.btn-whatsapp-footer:hover { transform: translateY(-2px); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0; }
.footer-admin-link { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-admin-link:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.floating-wa-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 9998;
}
.floating-wa-btn a {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  animation: waPulse 2s infinite;
  position: relative;
}
.floating-wa-btn a:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-tooltip {
  position: absolute; left: 70px; top: 50%; transform: translateY(-50%) translateX(-10px);
  background: #1a1a2e; color: #fff;
  padding: 6px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: var(--transition); pointer-events: none;
}
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 25px rgba(37,211,102,0.5)}
  50%{box-shadow:0 6px 35px rgba(37,211,102,0.75),0 0 0 10px rgba(37,211,102,0.12)}
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 9997;
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244,196,48,0.4);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ============================================================
   AI CHATBOT
============================================================ */
.chatbot-toggle {
  position: fixed; bottom: 90px; right: 24px; z-index: 9999;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
  border: 2px solid rgba(244,196,48,0.3);
  transition: var(--transition);
  position: fixed;
}
.chatbot-toggle:hover { transform: scale(1.05); }
.cb-badge {
  position: absolute; top: -3px; right: -3px;
  background: #e74c3c; color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: badgePulse 1.5s infinite;
}
@keyframes badgePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.cb-toggle-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--gold);
  padding: 6px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  pointer-events: none;
}

.chatbot-container {
  position: fixed; bottom: 160px; right: 24px; z-index: 9999;
  width: 360px; max-height: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: none; flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(244,196,48,0.2);
}
.chatbot-container.open { display: flex; animation: chatSlideIn 0.3s ease; }
@keyframes chatSlideIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.chatbot-header {
  background: linear-gradient(135deg, var(--dark), var(--dark3));
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(244,196,48,0.15);
}
.cb-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dark);
}
.cb-name { font-size: 15px; font-weight: 700; color: #fff; }
.cb-status { font-size: 11px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 5px; }
.status-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.cb-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 16px; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 14px; scroll-behavior: smooth; }
.cb-msg { max-width: 90%; }
.bot-msg { align-self: flex-start; }
.user-msg { align-self: flex-end; }
.cb-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.bot-msg .cb-bubble {
  background: var(--light-bg);
  color: #333;
  border-radius: 4px 16px 16px 16px;
}
.user-msg .cb-bubble {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  color: #fff;
  border-radius: 16px 4px 16px 16px;
}
.cb-time { font-size: 10px; color: #aaa; margin-top: 4px; padding: 0 4px; }
.chatbot-quick-replies { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.qr-btn {
  background: var(--light-bg);
  border: 1px solid #e0e0e0;
  color: #555;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.qr-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 600; }
.chatbot-input-area {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
  display: flex; gap: 10px; align-items: center;
}
#chatInput {
  flex: 1; border: 1.5px solid #e0e0e0; border-radius: 25px;
  padding: 10px 16px; font-size: 13px; outline: none;
}
#chatInput:focus { border-color: var(--gold); }
.chatbot-input-area button {
  width: 40px; height: 40px;
  background: var(--gold);
  border: none; border-radius: 50%;
  color: var(--dark);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.chatbot-input-area button:hover { background: var(--gold-dark); }

/* Typing indicator */
.typing-dots span {
  width: 6px; height: 6px;
  background: #aaa; border-radius: 50%;
  display: inline-block;
  animation: dotBounce 1.2s infinite;
  margin: 0 2px;
}
.typing-dots span:nth-child(2){animation-delay:0.2s}
.typing-dots span:nth-child(3){animation-delay:0.4s}
@keyframes dotBounce { 0%,80%,100%{transform:scale(0.7)} 40%{transform:scale(1)} }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
  .hero-swiper { height: 90vh; }
  .about-img-float { display: none; }
  .about-badge-float { left: 0; }
  .why-gallery { grid-template-columns: 1fr; }
  .wg-row { flex-direction: row; }
  .wg-img-large, .wg-img-sm { height: 160px; flex: 1; }
}
@media (max-width: 768px) {
  .section-pad { padding: 55px 0; }
  .hero-swiper { height: 80vh; }
  .hero-ctas { gap: 10px; }
  .btn-hero-primary, .btn-hero-whatsapp { padding: 12px 22px; font-size: 14px; }
  .chatbot-container { width: calc(100vw - 32px); right: 16px; bottom: 150px; }
  .trust-strip { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar-right { text-align: left !important; margin-top: 8px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.7rem; }
  .enquiry-form-card { padding: 24px 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .stat-number { font-size: 1.8rem; }
}

/* Loading animation */
.btn.loading { pointer-events: none; opacity: 0.7; }
.btn.loading::after { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin 0.6s linear infinite; margin-left: 8px; vertical-align: middle; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ============================================================
   NAV LOGO IMAGE
============================================================ */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
}

/* ============================================================
   INVISIBLE GRILLS & ROPES SECTION
============================================================ */
.invisible-section {
  background: linear-gradient(135deg, #06061a 0%, #0d1a35 50%, #06061a 100%);
  position: relative;
  overflow: hidden;
}
.invisible-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.invisible-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,196,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Invis Cards */
.invis-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.invis-card:hover {
  border-color: rgba(244,196,48,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.invis-card-featured {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.06);
}
.invis-card-featured:hover {
  border-color: rgba(99,102,241,0.7);
}
.invis-featured-label {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.invis-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.invis-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.invis-card:hover .invis-img-wrap img {
  transform: scale(1.05);
}
.invis-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(244,196,48,0.3);
}

.invis-body { padding: 24px; }
.invis-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.invis-body p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.invis-tag {
  display: inline-block;
  background: rgba(244,196,48,0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(244,196,48,0.2);
}

.invis-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.invis-features li {
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.invis-features li:last-child { border-bottom: none; }
.invis-features li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }

.invis-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-invis-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
}
.btn-invis-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,196,48,0.4);
  color: var(--dark);
}
.btn-invis-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
}
.btn-invis-wa:hover { transform: translateY(-1px); color: #fff; }

/* Why Invisible Card */
.why-invisible-card {
  background: rgba(244,196,48,0.07);
  border: 1px solid rgba(244,196,48,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
}
/* supports both h3 and h4 in template */
.why-invisible-card h3,
.why-invisible-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}
.wi-points { display: flex; flex-direction: column; gap: 16px; }
.wi-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wi-num {
  min-width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}
/* matches both .wi-point-text and plain div children */
.wi-point > div > strong,
.wi-point-text strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.wi-point > div > p,
.wi-point > div > span,
.wi-point-text span {
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Invis Photo Items */
.invis-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.invis-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.invis-photo-item:hover img { transform: scale(1.07); }
.invis-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 20px 12px 10px;
  opacity: 0;
  transition: var(--transition);
}
.invis-photo-item:hover .invis-photo-label { opacity: 1; }

/* ============================================================
   SERVICE CARD V2
============================================================ */
.service-card-v2 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sc2-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.sc2-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-v2:hover .sc2-img img { transform: scale(1.07); }
.sc2-icon {
  position: absolute;
  bottom: -18px; right: 18px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--dark);
  box-shadow: 0 4px 15px rgba(244,196,48,0.4);
  z-index: 2;
}
.sc2-body {
  padding: 28px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc2-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
  margin-top: 8px;
}
.sc2-body p {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.sc2-link {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.sc2-link:hover { gap: 10px; color: var(--gold-dark); }

/* ============================================================
   WHY CHOOSE US PHOTO GRID
============================================================ */
.why-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.wpg-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.wpg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.wpg-item:hover img { transform: scale(1.05); }
.wpg-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 300px;
}
.wpg-item:not(.wpg-large) { height: 140px; }
.wpg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.5));
  display: flex; align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: var(--transition);
}
.wpg-item:hover .wpg-overlay { opacity: 1; }
.wpg-overlay span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   PRODUCTS PAGE
============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.product-body p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.product-price {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}
.product-price strong {
  color: #1a1a2e;
  font-size: 15px;
}

/* ============================================================
   GALLERY PAGE
============================================================ */
.gallery-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gf-btn {
  background: transparent;
  border: 1.5px solid #ddd;
  color: var(--gray);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gf-btn.active,
.gf-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gm-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gm-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gm-item:hover img { transform: scale(1.04); }
.gm-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-overlay i { color: #fff; font-size: 24px; }
@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 576px) {
  .gallery-masonry { columns: 1; }
}

/* ============================================================
   CONTACT & QUOTE PAGES
============================================================ */
.contact-info-card {
  background: linear-gradient(135deg, var(--dark), var(--dark3));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.contact-info-card p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(244,196,48,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.ci-text strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 2px;
}
.ci-text a, .ci-text span {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  line-height: 1.6;
}
.ci-text a:hover { color: var(--gold); }

.quote-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.quote-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.form-label-custom {
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.form-control-custom {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
  color: #333;
  background: #fff;
}
.form-control-custom:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(244,196,48,0.1);
}
textarea.form-control-custom { resize: vertical; min-height: 110px; }

/* ============================================================
   PAGE BANNER / BREADCRUMB
============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 60%, var(--dark4) 100%);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1400&q=60') center/cover;
  opacity: 0.08;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; }
.breadcrumb-custom a { color: var(--gold); font-size: 13.5px; font-weight: 500; }
.breadcrumb-custom span { color: rgba(255,255,255,0.45); font-size: 13px; }
.breadcrumb-custom .active { color: rgba(255,255,255,0.7); font-size: 13.5px; }

  color: var(--dark);
}
.asc-icon i { font-size: 22px; }
.asc-info { flex: 1; }
.asc-info h3 { font-size: 1.6rem; font-weight: 800; color: #1a1a2e; margin: 0; }
.asc-info p { font-size: 12px; color: var(--gray); margin: 2px 0 0; }

/* ============================================================
   HERO SPLIT SLIDE
   ============================================================ */
.hero-slide-split { background: #0a0a1a; }
.hero-slide-split.theme-light { background: #f5f5f0; }

.hero-split-left {
  padding: 60px 48px 60px 60px;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 60%, #0d2137 100%);
  position: relative;
  z-index: 2;
}
.theme-light .hero-split-left {
  background: linear-gradient(135deg, #f9f6ee 0%, #fff 100%);
}

.hero-split-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,196,48,0.15);
  border: 1px solid rgba(244,196,48,0.4);
  color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 18px; text-transform: uppercase;
}
.theme-light .hero-split-badge { background: rgba(244,196,48,0.2); border-color: rgba(244,196,48,0.6); }

.hero-split-title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin: 0 0 4px;
}
.theme-light .hero-split-title { color: #1a1a2e; }

.hero-split-accent {
  display: block;
  color: var(--gold);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700;
}

.hero-split-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  margin: 12px 0 22px; line-height: 1.6; max-width: 420px;
}
.theme-light .hero-split-sub { color: #555; }

.hero-split-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 28px; max-width: 420px;
}
.hsf-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 14px;
  font-size: 12px; color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.theme-light .hsf-item { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); color: #333; }
.hsf-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: linear-gradient(135deg, var(--gold), #c9991e);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--dark);
}

.hero-split-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.hero-split-cta {
  background: linear-gradient(135deg, var(--gold), #c9991e);
  color: var(--dark); font-weight: 800; font-size: 13px;
  padding: 12px 22px; border-radius: 8px;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 7px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(244,196,48,0.35);
}
.hero-split-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,196,48,0.5); color: var(--dark); }
.hero-split-cta2 {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 12px 22px; border-radius: 8px;
  text-decoration: none; transition: var(--transition);
}
.theme-light .hero-split-cta2 { border-color: rgba(0,0,0,0.15); color: #333; background: rgba(0,0,0,0.04); }
.hero-split-cta2:hover { background: rgba(255,255,255,0.15); color: #fff; }
.hero-split-phone {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 5px; margin-left: 4px;
  transition: color 0.2s;
}
.hero-split-phone:hover { color: var(--gold); }
.theme-light .hero-split-phone { color: #666; }
.theme-light .hero-split-phone:hover { color: var(--gold); }

.hero-split-right {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  position: relative; min-height: 400px;
}
.hero-split-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,26,0.3) 0%, transparent 40%);
}
.theme-light .hero-split-right::after {
  background: linear-gradient(to right, rgba(249,246,238,0.25) 0%, transparent 40%);
}

.hero-db-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.hdbf-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; color: rgba(255,255,255,0.9); font-weight: 600;
}
.hdbf-item i { color: var(--gold); font-size: 11px; }

@media (max-width: 991px) {
  .hero-split-left { padding: 50px 30px; }
  .hero-split-features { max-width: 100%; }
  .hero-split-right { min-height: 300px; }
}
@media (max-width: 575px) {
  .hero-split-left { padding: 40px 20px; }
  .hero-split-features { grid-template-columns: 1fr; }
  .hero-split-cta, .hero-split-cta2 { width: 100%; justify-content: center; }
}

/* ============================================================
   CITY CARDS
   ============================================================ */
.city-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
}
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.city-icon {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.city-card h5 {
  font-size: 14px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 4px;
}
.city-card p {
  font-size: 11px; color: var(--gray); margin: 0;
}

/* ============================================================
   SITE FOOTER (homepage inline footer)
   ============================================================ */
.site-footer { background: #0a0a1a; color: rgba(255,255,255,0.65); }
.site-footer .footer-top { padding: 70px 0 50px; }
.site-footer .footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.site-footer p { margin: 0; }
.footer-desc {
  font-size: 13px; line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 20px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

/* ============================================================
   FOOTER BUTTONS
   ============================================================ */
.btn-wa-footer {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 11px 20px; border-radius: 8px;
  text-decoration: none; transition: var(--transition);
  margin-top: 14px;
}
.btn-wa-footer:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }

/* ============================================================
   FAB CHAT BUTTON
   ============================================================ */
.fab-chat-btn {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #c9991e);
  color: var(--dark); font-weight: 800; font-size: 13px;
  border: none; border-radius: 28px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 6px 24px rgba(244,196,48,0.45);
  cursor: pointer; z-index: 1000;
  transition: var(--transition);
}
.fab-chat-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(244,196,48,0.55); }
.fab-chat-btn i { font-size: 18px; }
.fab-label { font-size: 13px; }

/* ============================================================
   CHATBOT WIDGET
   ============================================================ */
.chatbot-widget {
  position: fixed; bottom: 90px; right: 24px;
  width: 340px; max-height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  z-index: 1001;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.chatbot-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1; pointer-events: all;
}
.chatbot-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.cb-avatar {
  width: 36px; height: 36px; min-width: 36px;
  background: linear-gradient(135deg, var(--gold), #c9991e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--dark);
}
.cb-header-text { flex: 1; }
.cb-header-text strong { display: block; color: #fff; font-size: 13px; }
.cb-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,0.6); }
.cb-online-dot {
  width: 7px; height: 7px; background: #28a745;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.cb-close-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 16px; cursor: pointer;
  padding: 4px; line-height: 1;
}
.cb-close-btn:hover { color: #fff; }
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  background: #f8f9fa;
}
.cb-msg { display: flex; flex-direction: column; }
.user-msg { align-items: flex-end; }
.bot-msg { align-items: flex-start; }
.cb-bubble {
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px; line-height: 1.5;
}
.user-msg .cb-bubble {
  background: linear-gradient(135deg, var(--gold), #c9991e);
  color: var(--dark); font-weight: 600;
  border-bottom-right-radius: 4px;
}
.bot-msg .cb-bubble {
  background: #fff;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-bottom-left-radius: 4px;
}
.cb-time { font-size: 10px; color: #aaa; margin-top: 3px; }
.cb-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 6px 14px 10px;
  background: #f8f9fa;
}
.cb-quick-replies button {
  background: #fff; border: 1.5px solid var(--gold);
  color: #1a1a2e; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 20px; cursor: pointer;
  transition: all 0.2s;
}
.cb-quick-replies button:hover { background: var(--gold); }
.typing-dots { display: flex; gap: 4px; align-items: center; padding: 10px 14px; }
.typing-dots span {
  width: 7px; height: 7px; background: #ccc;
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.chatbot-input {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #eee;
  background: #fff;
}
.chatbot-input input {
  flex: 1; border: 1.5px solid #e0e0e0;
  border-radius: 20px; padding: 8px 14px;
  font-size: 13px; outline: none;
  transition: border-color 0.2s;
}
.chatbot-input input:focus { border-color: var(--gold); }
.cb-send-btn {
  width: 36px; height: 36px; min-width: 36px;
  background: linear-gradient(135deg, var(--gold), #c9991e);
  border: none; border-radius: 50%;
  color: var(--dark); font-size: 14px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.cb-send-btn:hover { transform: scale(1.1); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed; bottom: 150px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(244,196,48,0.15);
  border: 1.5px solid rgba(244,196,48,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
  cursor: pointer; z-index: 998;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--gold); color: var(--dark); }

/* Contact info on homepage enquiry section */
.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.ci-item {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  transition: color 0.2s;
}
.ci-item:hover { color: var(--gold); }
.ci-item .ci-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
}
.ci-whatsapp .ci-icon { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.2); color: #25D366; }
.ci-item .ci-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.4); }
.ci-item .ci-text strong { font-size: 14px; font-weight: 700; color: #fff; }

/* Enquiry form card */
.enquiry-section { background: linear-gradient(135deg, #0d1b2a 0%, #1a1a3e 100%); }
.enquiry-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}
.form-title {
  font-size: 1.15rem; font-weight: 800; color: var(--gold);
  margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}
.form-group label { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600; margin-bottom: 6px; display: block; }
.form-group .form-control {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 8px;
  padding: 10px 14px; font-size: 13px;
}
.form-group .form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(244,196,48,0.1); color: #fff; }
.form-group .form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-group select.form-control option { background: #1a1a2e; color: #fff; }
.success-msg { background: rgba(40,167,69,0.15); border: 1px solid rgba(40,167,69,0.3); color: #6fcf97; border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 16px; }
.error-msg { background: rgba(231,76,60,0.15); border: 1px solid rgba(231,76,60,0.3); color: #ff6b6b; border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 16px; }
.req { color: var(--gold); }

/* ============================================================
   MISSING SECTION WRAPPERS & LAYOUT HELPERS
   ============================================================ */

/* Section header (title block above each section) */
.section-header { margin-bottom: 10px; }
.section-subtitle {
  color: var(--gray); font-size: 15px;
  max-width: 600px; margin: 0 auto;
}

/* ── ABOUT SECTION ─────────────────────────────────────────── */
.about-section { background: #fff; }
.about-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}

/* ── SERVICES SECTION ──────────────────────────────────────── */
.services-section { background: #fff; }

/* ── PRODUCTS SECTION ──────────────────────────────────────── */
.products-section { background: var(--light); }
.bg-light-alt { background: #f4f6f8 !important; }
.product-card-v2 {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-badge-new {
  background: linear-gradient(135deg,#e74c3c,#c0392b);
  color:#fff; font-size:10px; font-weight:800;
  padding:3px 8px; border-radius:4px; letter-spacing:0.05em;
  text-transform:uppercase;
}
.product-badge-wholesale {
  background: linear-gradient(135deg,var(--gold),#c9991e);
  color:var(--dark); font-size:10px; font-weight:800;
  padding:3px 8px; border-radius:4px;
  text-transform:uppercase;
}

/* ── GALLERY SECTION ───────────────────────────────────────── */
.gallery-section { background: #0d1b2a; }
.bg-dark-alt { background: linear-gradient(135deg,#0d1b2a 0%,#1a1a3e 100%) !important; }

/* ── TESTIMONIALS SECTION ──────────────────────────────────── */
.testimonials-section { background: #f8f9fa; }
.tc-info { flex: 1; }
.tc-info strong { display:block; font-size:14px; font-weight:800; color:#1a1a2e; }
.tc-info span { font-size:12px; color:var(--gray); }

/* ── WHY CHOOSE US SECTION ─────────────────────────────────── */
.why-section { background:#fff; }
.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

/* ── MISC BOOTSTRAP HELPERS MISSING ───────────────────────── */
.img-fluid { max-width:100%; height:auto; }
.rounded-3 { border-radius:0.5rem !important; }
.min-vh-100 { min-height:100vh; }
.w-100 { width:100% !important; }
.py-3 { padding-top:1rem !important; padding-bottom:1rem !important; }
.py-5 { padding-top:3rem !important; padding-bottom:3rem !important; }
.flex-column { flex-direction:column !important; }
.btn-sm { padding:0.35rem 0.75rem !important; font-size:0.8rem !important; }

/* ══════════════════════════════════════════════════════
   NAVBAR — FREE QUOTE BUTTON  (clean professional pill)
══════════════════════════════════════════════════════ */
.btn-quote-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f4c430;
  color: #0a0a1e !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  border: 2px solid #c9991e;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.4;
}
.btn-quote-nav:hover,
.btn-quote-nav:focus {
  background: #e6b800;
  color: #0a0a1e !important;
  border-color: #a07c00;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(244,196,48,0.45);
}
.btn-quote-nav i { font-size: 12px; flex-shrink: 0; }
.bqn-dot { display: none; } /* remove pulsing dot — cleaner */

/* ══════════════════════════════════════════════════════
   CHATBOT FAB  (bottom-LEFT, away from lead widget)
══════════════════════════════════════════════════════ */
.chatbot-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 20px rgba(79,70,229,0.5);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  z-index: 9985;
  transition: transform 0.25s, box-shadow 0.25s;
}
.chatbot-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(79,70,229,0.65);
}
.chatbot-fab::after {
  content: 'AI Chat';
  position: absolute;
  left: 66px;
  background: #1a1a2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.chatbot-fab:hover::after { opacity: 1; }
/* chatbot widget opens bottom-left when triggered from left FAB */
.chatbot-widget {
  bottom: 90px !important;
  right: auto !important;
  left: 24px !important;
}
.chatbot-fab-label { display: none; }

/* ============================================================
   MOBILE HERO – IMAGE-ONLY SLIDER
   On phones: hide all text, show full-screen image + CTA bar
============================================================ */
@media (max-width: 767px) {

  /* Full viewport height – use svh for iOS Safari toolbar compensation */
  .hero-swiper { height: 100svh !important; min-height: 0 !important; }

  /* Hide ALL text panels inside slides */
  .hero-content,
  .hero-slide > .container,
  .hero-split-left,
  .hero-slide .hero-badge,
  .hero-slide .hero-title,
  .hero-slide .hero-desc,
  .hero-slide .hero-subtitle,
  .hero-slide .hero-ctas,
  .hero-slide .hero-phones,
  .hero-slide .hero-stats-card,
  .hero-slide .hero-db-features,
  .hero-slide .col-lg-5.d-none,
  .hero-split-ctas,
  .hero-split-title,
  .hero-split-sub,
  .hero-split-features,
  .hero-split-badge {
    display: none !important;
  }

  /* Full overlay should be light so image stays vivid */
  .hero-slide .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.65) 100%
    ) !important;
  }

  /* Split layout – make image column fill full slide height */
  .hero-slide-split { background: #000 !important; }
  .hero-slide-split .row { min-height: 100svh !important; height: 100svh !important; display: block !important; }
  .hero-split-right {
    display: block !important;
    width: 100% !important;
    height: 100svh !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Hide desktop prev/next arrows on mobile */
  .hero-next, .hero-prev { display: none !important; }

  /* Move pagination dots up above the CTA bar */
  .hero-pagination { bottom: 76px !important; }

  /* ── Mobile CTA bar pinned at bottom of hero ── */
  .hero-mobile-cta {
    display: flex !important;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 20;
    padding: 12px 16px 16px;
    gap: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    align-items: stretch;
  }
  .hero-mobile-cta a {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 10px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.15s ease;
  }
  .hero-mobile-cta a:active { transform: scale(0.97); }
  .hero-mobile-cta .hmc-call {
    background: var(--gold);
    color: #0a0a1e;
    border: 2px solid var(--gold-dark);
  }
  .hero-mobile-cta .hmc-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #1aad52;
  }
}

/* Hide mobile CTA bar on desktop */
.hero-mobile-cta { display: none; }

/* Fix iOS overscroll flash on hero */
@media (max-width: 767px) {
  .hero-section { -webkit-overflow-scrolling: touch; }
  .hero-swiper .swiper-wrapper { -webkit-transform: translate3d(0,0,0); }
}
