/* ============================================================
   KESHAV NETTING SOLUTIONS — style.css
   Theme: #2e318e (Brand Blue) & #ff6b17 (Brand Orange)
============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #2e318e;
  --primary-dark: #21246e;
  --primary-light: #3d41b0;
  --accent: #ff6b17;
  --accent-dark: #e05b0a;
  --accent-light: #ff8540;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --light-gray: #f0f2fa;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-body: #374151;
  --border: #e5e7f4;
  --shadow-sm: 0 2px 12px rgba(46, 49, 142, 0.08);
  --shadow-md: 0 8px 32px rgba(46, 49, 142, 0.12);
  --shadow-lg: 0 20px 60px rgba(46, 49, 142, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ---- BASE RESET ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
address { font-style: normal; }

/* ---- UTILITY CLASSES ---- */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.section-padding { padding: 90px 0; }
.rounded-custom { border-radius: var(--radius-lg); }

/* Section Tag */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(46,49,142,0.08), rgba(255,107,23,0.08));
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,23,0.25);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-desc {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(46,49,142,0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,23,0.35);
}

/* ---- TOP BAR ---- */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 9px 0;
  font-size: 0.83rem;
}
.topbar-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.topbar-link:hover { color: var(--accent); }
.topbar-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.topbar-social a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.topbar-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- HEADER / NAVBAR ---- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar { padding: 4px 0; }

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(46,49,142,0.3);
  flex-shrink: 0;
}
.brand-icon-white {
  background: rgba(255,255,255,0.15);
  box-shadow: none;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(255,107,23,0.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  box-shadow: 0 6px 20px rgba(46,49,142,0.3);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.navbar-toggler { border: none; background: none; padding: 4px; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span {
  display: block;
  height: 2.5px;
  width: 26px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero-section { position: relative; }

.hero-slide {
  height: 100vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide-1 {
  background-image: url('../images/hero-1.webp');
  background-color: var(--primary-dark);
}
.hero-slide-2 {
  background-image: url('../images/hero-2.webp');
  background-color: #1a3a2e;
}
.hero-slide-3 {
  background-image: url('../images/hero-3.webp');
  background-color: #1a1a2e;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,20,60,0.85) 0%, rgba(20,20,60,0.4) 100%);
}
.hero-slide .container { position: relative; z-index: 2; height: 100%; }

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(255,107,23,0.4);
  transition: var(--transition);
}
.btn-hero-primary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,255,255,0.25);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-hero-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-ctrl-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.carousel-control-prev:hover .carousel-ctrl-icon,
.carousel-control-next:hover .carousel-ctrl-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev, .carousel-control-next { width: auto; }

/* Carousel Indicators */
.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}
.carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* Hero Stats Bar */
.hero-stats-bar {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--off-white); }
.about-img-wrap {
  position: relative;
  padding: 20px 20px 60px 0;
}
.about-img-main img {
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.badge-text {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
}
.about-img-float img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-feat-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-feat-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services-section { background: var(--white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46,49,142,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-img-overlay { opacity: 1; }
.service-img-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

.service-body {
  padding: 28px;
  position: relative;
}
.service-icon-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(46,49,142,0.25);
}
.service-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-features li:last-child { border-bottom: none; }
.service-features i {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.btn-service-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(255,107,23,0.3);
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-service-cta:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,49,142,0.3);
}

/* ---- WHY CHOOSE US ---- */
.why-us-section { background: var(--off-white); }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(46,49,142,0.1), rgba(46,49,142,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: var(--transition);
  border: 1px solid rgba(46,49,142,0.15);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: transparent;
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ---- COUNTER ---- */
.counter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,23,0.15) 0%, transparent 70%);
}
.counter-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,107,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.counter-card {
  padding: 20px;
}
.counter-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.counter-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---- HOW IT WORKS ---- */
.how-section { background: var(--white); }

.how-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.how-card:hover::before { transform: scaleX(1); }
.how-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.how-step {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: rgba(46,49,142,0.08);
  line-height: 1;
  margin-bottom: 10px;
  transition: var(--transition);
}
.how-card:hover .how-step { color: rgba(255,107,23,0.12); }

.how-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(46,49,142,0.25);
  transition: var(--transition);
}
.how-card:hover .how-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 8px 24px rgba(255,107,23,0.3);
  transform: rotate(-5deg) scale(1.05);
}

.how-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.how-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ---- GALLERY ---- */
.gallery-section { background: var(--off-white); }

.gallery-filter .gallery-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter .gallery-btn:hover,
.gallery-filter .gallery-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(46,49,142,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

/* ---- TESTIMONIALS ---- */
.testimonial-section { background: var(--white); }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.testi-quote {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}
.testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 14px;
  gap: 2px;
  display: flex;
}
.testi-text {
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 700;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testi-ctrl-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.testi-ctrl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* ---- FAQ ---- */
.faq-section { background: var(--off-white); }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  padding: 18px 24px;
  border: none;
  box-shadow: none !important;
  transition: var(--transition);
}
.faq-btn:not(.collapsed) {
  color: var(--primary);
  background: var(--white);
}
.faq-btn::after {
  width: 20px;
  height: 20px;
  background-image: none;
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-btn:not(.collapsed)::after {
  transform: rotate(180deg);
  content: '\F286';
}
.faq-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  padding: 0 24px 20px;
}

.faq-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.faq-contact-icon {
  width: 46px;
  height: 46px;
  background: #25d366;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faq-contact-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.faq-contact-card strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--white); }

.contact-info-wrap {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
}
.contact-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.contact-info-item a,
.contact-info-item span,
.contact-info-item address {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--accent-light); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.85;
  filter: saturate(0.5) brightness(1.1);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--white);
}
.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46,49,142,0.1);
  outline: none;
}
.custom-input::placeholder { color: #a0a8c0; }

.form-success-msg {
  background: #d1fae5;
  border: 1px solid #34d399;
  border-radius: var(--radius);
  color: #065f46;
  padding: 14px 20px;
  font-weight: 600;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}
.form-success-msg i { font-size: 1.2rem; }

/* ---- FOOTER ---- */
.site-footer { background: #10123a; }

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

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

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a i { color: var(--accent); font-size: 0.75rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact-list li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--accent); }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin: 0;
}

/* ---- FLOATING BUTTONS ---- */
.float-btn {
  position: fixed;
  bottom: 100px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
}
.float-whatsapp {
  left: 24px;
  background: #25d366;
  color: var(--white);
}
.float-whatsapp:hover {
  background: #1db954;
  color: var(--white);
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.4);
}
.float-call {
  right: 24px;
  background: var(--accent);
  color: var(--white);
  animation: pulse-call 2.5s infinite;
}
.float-call:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: scale(1.12) translateY(-3px);
  animation: none;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 6px 24px rgba(255,107,23,0.3); }
  50% { box-shadow: 0 6px 36px rgba(255,107,23,0.6), 0 0 0 10px rgba(255,107,23,0.1); }
}

.float-tooltip {
  position: absolute;
  white-space: nowrap;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  top: -40px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; top: -44px; }
.float-whatsapp .float-tooltip { left: 50%; transform: translateX(-50%); }
.float-call .float-tooltip { left: 50%; transform: translateX(-50%); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 14px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9998;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ---- HERO ANIMATION CLASSES ---- */
.animate-fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE STYLES
============================================================ */

@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .hero-slide { height: 92vh; min-height: 520px; }
  .hero-title { font-size: 2.2rem; }
  .about-img-wrap { padding: 0 0 50px 0; }
  .about-img-main img { /*height: 340px;*/ }
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid var(--border);
  }
  .nav-link { padding: 10px 16px !important; }
  .nav-cta { margin-top: 8px; text-align: center; }
}
@media (max-width: 768px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
		text-align:center;
	}
}	
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
  .section-padding { padding: 56px 0; }
  .section-title { font-size: 1.8rem; }
  .hero-slide { height: 100svh; min-height: 600px; }
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 0.92rem; }
  .hero-btns { gap: 12px !important; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 24px; font-size: 0.88rem; }
  .hero-stats-bar { display: none; }
  .about-img-float { display: none; }
  .gallery-card img { height: 180px; }
  .contact-form-wrap { padding: 24px 20px; }
  .contact-info-wrap { padding: 28px 24px; }
  .topbar-left { flex-direction: column; gap: 4px !important; }
  .footer-top { padding: 50px 0 36px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.25rem; }
  .float-whatsapp { left: 16px; bottom: 100px; }
  .float-call { right: 16px; bottom: 100px; }
  .back-to-top { right: 16px; bottom: 10px; }
}

@media (max-width: 575.98px) {
  .hero-content { padding: 0 4px; }
  .hero-title { font-size: 1.65rem; }
  .service-body { padding: 22px 18px; }
  .how-card { padding: 24px 18px; }
  .testimonial-card { padding: 22px 18px; }
  .stat-item strong { font-size: 1.4rem; }
}

/* Smooth scroll offset for sticky header */
:target::before {
  content: '';
  display: block;
  height: 80px;
  margin-top: -80px;
}

.cu-lg-wedt{
	width:220px;
}
@media(max-width:374px)
{
	.cu-mb-fnt-12{
		font-size:12px!important;
	}
}