/* ============================================================
   SIDDHVINYAK GENERATOR ON RENT — style.css
   Color Palette: Deep Navy + Electric Orange + Steel White
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #E85D04;
  --primary-dark: #C84A00;
  --primary-light: #FF7B2C;
  --secondary: #0A1628;
  --secondary-light: #1A2740;
  --accent: #FFB703;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-bg: #F1F4F9;
  --text-dark: #0D1B2A;
  --text-mid: #3D4F65;
  --text-muted: #7A8FA6;
  --border: #DDE3EC;
  --shadow-sm: 0 2px 12px rgba(14, 26, 44, 0.08);
  --shadow-md: 0 6px 28px rgba(14, 26, 44, 0.13);
  --shadow-lg: 0 16px 50px rgba(14, 26, 44, 0.18);
  --shadow-orange: 0 8px 30px rgba(232, 93, 4, 0.35);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ---- UTILITY ---- */
.section-pad { padding: 90px 0; }
.bg-light-custom { background: var(--light-bg); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.section-label-light {
  color: var(--accent);
  background: rgba(255, 183, 3, 0.15);
  border-color: rgba(255, 183, 3, 0.3);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.text-accent { color: var(--primary); }

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 93, 4, 0.45);
  color: var(--white) !important;
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-outline-light-custom:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1da855;
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--secondary);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-link:hover { color: var(--primary-light); }

.top-bar-link i { color: var(--primary); font-size: 12px; }

.top-bar-social { display: flex; gap: 10px; justify-content: flex-end; }

.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: var(--transition);
}

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

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(14, 26, 44, 0.1);
  z-index: 999;
}

.navbar { padding: 14px 0; }

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--secondary);
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

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

.nav-link:hover { color: var(--primary) !important; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { font-size: 14px !important; padding: 10px 20px !important; }

.toggler-icon {
  color: var(--secondary);
  font-size: 22px;
  display: flex;
  align-items: center;
  padding: 4px 8px;
}

.navbar-toggler { border: none; background: none; box-shadow: none !important; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-slide { position: relative; overflow: hidden; }

.hero-img {
  width: 100%;
  height: 92vh;
  min-height: 500px;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(232, 93, 4, 0.2) 100%);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8%;
  z-index: 2;
  text-align: left;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 93, 4, 0.9);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 70px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-title .highlight {
  color: var(--primary-light);
  -webkit-text-stroke: 0;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(232, 93, 4, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);
}

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

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

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

.carousel-indicators button.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* ============================================================
   QUICK STRIP
   ============================================================ */
.quick-strip {
  background: var(--secondary);
  padding: 0;
  border-top: 3px solid var(--primary);
}

.quick-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.quick-strip-item:last-child { border-right: none; }
.quick-strip-item:hover { background: rgba(232, 93, 4, 0.15); }

.quick-strip-item > i {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.qs-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 3px;
}

.qs-value {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

a.qs-value:hover { color: var(--primary-light); }

/* ============================================================
   ABOUT US
   ============================================================ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

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

.about-badge-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-years {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.about-years-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-lead {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.6;
}

.about-desc {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: var(--transition);
}

.about-feat:hover {
  background: rgba(232, 93, 4, 0.06);
  border-color: var(--primary);
}

.about-feat i { color: var(--primary); font-size: 16px; }

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  /* height: 220px; */
}

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

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

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

.service-img-overlay i {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

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

.service-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.btn-service-cta {
  background: transparent;
  color: var(--primary) !important;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-service-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

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

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.07);
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.05);
}

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

.why-card:hover {
  background: rgba(232, 93, 4, 0.12);
  border-color: var(--primary);
  transform: translateY(-6px);
}

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

.why-card:hover .why-icon { transform: rotateY(180deg); }

.why-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-box {
  position: relative;
  z-index: 1;
  padding: 20px 10px;
}

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

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 70px);
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  display: inline;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-connector {
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.hiw-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.hiw-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.hiw-step {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(232, 93, 4, 0.1);
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
}

.hiw-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--white);
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 1;
}

.hiw-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hiw-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.gal-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.gal-btn:hover,
.gal-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.gal-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

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

.gal-overlay i {
  font-size: 28px;
  color: var(--white);
  transform: scale(0.5);
  transition: var(--transition);
}

.gal-card:hover .gal-overlay { opacity: 1; }
.gal-card:hover .gal-img { transform: scale(1.08); }
.gal-card:hover .gal-overlay i { transform: scale(1); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--primary-dark); transform: rotate(90deg); }

.gal-item.hidden { display: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.testi-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; }

.testi-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
}

.testi-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(232, 93, 4, 0.15);
  position: absolute;
  top: -14px;
  left: -4px;
  line-height: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-role { font-size: 13px; color: var(--text-muted); }

.testi-indicators {
  position: static;
  margin-top: 32px;
}

.testi-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  margin: 0 5px;
}

.testi-indicators button.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

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

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius) !important;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.1);
}

.faq-btn {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark) !important;
  background: var(--white) !important;
  padding: 18px 20px;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) { color: var(--primary) !important; }

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

.faq-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 4px 20px 20px;
  background: var(--white);
}

.faq-cta-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-cta-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 60px 0;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.btn-light-cta {
  background: var(--white);
  color: var(--secondary) !important;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-light-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
}

.contact-info-heading {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

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

.ci-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 4px;
}

.ci-value {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

a.ci-value:hover { color: var(--primary-light); }

.map-embed { border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 200px; border: none; display: block; filter: grayscale(30%); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.contact-form-heading {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.form-label-custom {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.form-control-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
  outline: none;
}

.form-control-custom::placeholder { color: var(--text-muted); }

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 56px;
  color: #28a745;
  margin-bottom: 16px;
  display: block;
}

.form-success p {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--text-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary);overflow-x: hidden; }

.footer-main { padding: 70px 0 50px; }

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }

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

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

.footer-heading {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

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

.footer-links a i { color: var(--primary); font-size: 10px; }

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

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

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

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

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

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-cta-call {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-cta-call:hover { color: var(--accent) !important; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 90px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  cursor: pointer;
}

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

.float-whatsapp {
  left: 20px;
  background: #25D366;
}

.float-call {
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.float-tooltip {
  position: absolute;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.float-whatsapp .float-tooltip { left: 62px; }
.float-call .float-tooltip { right: 62px; }

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

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   STICKY NAVBAR SCROLL EFFECT
   ============================================================ */
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(14, 26, 44, 0.15);
}

/* ============================================================
   PLACEHOLDER IMAGES (shown when actual images not loaded)
   ============================================================ */
img[src=""] ,
img:not([src]),
img[src*="hero-"],
img[src*="about"],
img[src*="service-"],
img[src*="gallery-"] {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cu-lg-wdth{
	width:220px;
}
/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
	.cu-mb-ds-nn1{
		display:none!important
	}
  .section-pad { padding: 70px 0; }
  .hero-img { height: 70vh; }
  .carousel-caption { padding: 0 5%; }
  .hero-title { font-size: clamp(36px, 8vw, 64px); }
  .about-img { height: 380px; }
  .about-badge-box { bottom: -16px; right: -10px; }
  .hiw-connector { display: none !important; }
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    margin-top: 10px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }
  .nav-link::after { display: none; }
}
#enu-st{
	background:linear-gradient(135deg, var(--primary), var(--primary-dark));
	display:block;
	width:100%;
	color:#fff;
}
/* Mobile */
@media (max-width: 767px) {
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .section-pad { padding: 55px 0;overflow-x: hidden; }
  .hero-img { height: 85vh; min-height: 420px; }
  .carousel-caption {
    padding: 0 5%;
    justify-content: flex-end;
    padding-bottom: 60px;
  }
  .hero-title { font-size: clamp(30px, 9vw, 48px); letter-spacing: 1px; }
  .hero-desc { font-size: 14px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .hero-btns { gap: 10px; }
  .btn-primary-custom,
  .btn-outline-light-custom { padding: 11px 20px; font-size: 14px; }

  .quick-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  .about-img { height: 280px; }
  .about-badge-box { bottom: -12px; right: 16px; padding: 14px 16px; }
  .about-years { font-size: 36px; }

  .service-img-wrap { height: 180px; }

  /* Gallery: 2 per row on mobile */
  .gallery-grid .col-6 { width: 50%; }

  .counter-num { font-size: 38px; }
  .counter-plus { font-size: 28px; }

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

  .float-btn { width: 48px; height: 48px; font-size: 20px; bottom: 80px; }
  .float-tooltip { display: none; }

  .cta-banner { padding: 44px 0; }
  .footer-main { padding: 50px 0 36px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-img { height: 80vh; }
  .hero-title { font-size: 30px; }
  .top-bar-info { flex-direction: column; gap: 6px; }
  .logo-main { font-size: 18px; }
  .logo-sub { font-size: 10px; }
  .counter-box { padding: 14px 6px; }
  .gal-img { height: 160px; }
  .gallery-filter { gap: 6px; }
  .gal-btn { padding: 6px 14px; font-size: 12px; }
}
