/* ============================================
   PESTOFIED — Premium UI v2.0
   Dark luxury theme · Yellow accent
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --yellow:        #FFD200;
  --yellow-dark:   #e6be00;
  --yellow-glow:   rgba(255, 210, 0, 0.18);
  --yellow-soft:   rgba(255, 210, 0, 0.08);
  --bg:            #080808;
  --bg-2:          #0f0f0f;
  --bg-3:          #141414;
  --bg-card:       #111111;
  --border:        rgba(255,255,255,0.06);
  --border-yellow: rgba(255,210,0,0.25);
  --text:          #ffffff;
  --text-muted:    #888;
  --text-light:    #bbb;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-ui:       'Barlow', sans-serif;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-yellow: 0 4px 28px rgba(255,210,0,0.18);
  --transition:    all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 99px; }

/* ============================================
   NAVBAR
   ============================================ */
.custom-navbar {
  background: rgba(0,0,0,0.97);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 70px;
  height: 36px;
 
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-ui);
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #ccc !important;
  margin: 0 4px;
  padding: 6px 10px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow) !important;
  background: var(--yellow-soft);
}

.btn-nav-cta {
  background: var(--yellow);
  color: #000 !important;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.btn-nav-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(https://agnaura.com/pestofied/images/Pestcontrol-Service-in-dwarka-banner-pestofied.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
}

/* Multi-layer gradient overlay for cinematic depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
linear-gradient(105deg,
      rgba(0,0,0,0.97) 5%,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.5) 24%,
      rgba(0,0,0,0.2) 37%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.3) 0%,
      transparent 87%,
      rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Subtle yellow glow bottom-left */
.hero-glow {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,210,0,0.07) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
      padding: 70px 0 40px;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,210,0,0.1);
  border: 1px solid var(--border-yellow);
  padding: 5px 14px;
  border-radius: 99px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;

}

.hero-badge i { font-size: 11px; }

/* Headline */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 60px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: 3px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-headline .accent {    color: var(--yellow);
    font-size: 35px;
    letter-spacing: 3px;
    
    
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    
    margin: 10px 0 18px;
    line-height: 1.7;
}

/* Feature badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 32px;
}

.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: #ddd;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.feat-badge i { color: var(--yellow); font-size: 13px; }

.feat-badge:hover {
  border-color: var(--border-yellow);
  background: var(--yellow-soft);
  color: #fff;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ff4848;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 24px;
    font-weight: 900;
 
    padding: 14px 28px;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(255, 210, 0, 0.28);
    letter-spacing: 0.2px;
}

.btn-primary-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,210,0,0.38);
  color: #000;
}

.btn-secondary-cta-2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
      background: rgb(25 130 64);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-secondary-cta-2 i{
    color: white;
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-secondary-cta:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.4);
  color: #fff;
  transform: translateY(-2px);
}
.btn-secondary-cta{
     background: rgba(37,211,102,0.6);
}

.btn-secondary-cta .wa-icon { color: white; }

/* Social proof strip */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -10px;
  object-fit: cover;
  background: #333;
}

.avatar-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -10px;
  background: linear-gradient(135deg, #333, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
}

.proof-text { font-size: 13px; color:#27cf65; }
.proof-text strong { color: #fff; font-weight: 600; }
.proof-text .stars { color: var(--yellow); font-size: 12px; }

/* Hero satisfaction badge */
.hero-satisfaction {
     position: absolute;
    right: 25px;
    bottom: 5px;
    z-index: 3;
    width: 240px;
    height: 200px;
    /* background: var(--yellow); */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    font-family: var(--font-display);
    font-weight: 900;
    /* box-shadow: 0 8px 32px rgba(255, 210, 0, 0.4); */
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-satisfaction .big { font-size: 26px; line-height: 1; }
.hero-satisfaction .small { font-size: 8px; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.3; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   INFO STRIP
   ============================================ */
.info-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 0;
}

.info-box {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.info-box:last-child { border-right: none; }

.info-box:hover { background: var(--yellow-soft); }

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-box:hover .info-icon {
  background: var(--yellow);
  color: #000;
}

.info-text h6 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

/* Service area banner */
.service-area-bar {
  background: var(--yellow);
  color: #000;
  text-align: center;
  padding: 10px;
  font-family: var(--font-ui);
     font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-area-bar i { margin: 0 6px; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-pad { padding: 40px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--yellow);
  border-radius: 99px;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.section-title .acc { color: var(--yellow); }

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 50px;
}

/* Premium service card */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--yellow-soft) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  border-radius: var(--radius);
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  border-color: var(--border-yellow);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border-yellow);
}

/* Image area */
.service-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}

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

.service-card:hover .service-img img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 100%,
    rgba(0,0,0,0.75) 100%
  );
}

/* floating icon */
.icon-badge {
     position: absolute;
    bottom: 6px;
    right: 6px;
    width: 55px;
    height: 50px;
    background: #ffffff87;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    /* box-shadow: 0 4px 16px rgba(255, 210, 0, 0.35); */
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .icon-badge {
  background: #fff;
  transform: scale(1.05);
}

/* Card content */
.service-content {
  padding: 28px 16px 18px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.service-content h5 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.service-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--bg-2);
  padding: 40px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 50px;
}

.why-item {
  background: var(--bg-card);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-item:hover::after { transform: scaleX(1); }

.why-item:hover {
  background: var(--bg-3);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: var(--yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.why-icon i {
  font-size: 22px;
  color: var(--yellow);
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--yellow);
}

.why-item:hover .why-icon i { color: #000; }

.why-item h6 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.why-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   PROCESS + TESTIMONIALS
   ============================================ */
.process-section {
  background: var(--bg);
  padding: 40px 0;
}

/* Process steps */
.process-steps { margin-top: 40px; }

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
  transition: var(--transition);
}

.process-item:hover::before {
  background: var(--yellow);
}

.process-item:hover {
  border-color: var(--border-yellow);
  background: var(--bg-3);
  transform: translateX(4px);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,210,0,0.2);
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h5 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-stack {
  display: flex;

  gap: 16px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, var(--yellow-glow), transparent 70%);
}

.testimonial-card:hover {
  border-color: var(--border-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.stars {
  display: flex;
  gap: 3px;

}

.stars i { color: var(--yellow); font-size: 13px; }

.testimonial-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #e6a000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.testimonial-user h6 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.testimonial-user span {
  font-size: 12px;
  color: var(--text-muted);
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--bg);
  padding: 70px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
}

/* Decorative elements */
.cta-box::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.cta-box::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}

.cta-content { position: relative; z-index: 1; }

.cta-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.cta-box p {
  font-size: 15px;
  color: rgba(0,0,0,0.65);
  margin: 0;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  font-weight: 500;
}

.cta-trust i { color: rgba(0,0,0,0.4); font-size: 13px; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff4848;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.btn-cta-dark:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  color: #fff;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.08);
  border: 2px solid rgba(0,0,0,0.15);
  color: #000;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.btn-cta-wa:hover {
  background: rgba(0,0,0,0.15);
  color: #000;
  transform: translateY(-2px);
}

/* Pest icon decoration */
.cta-decoration {
  position: absolute;
  right: 200px;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 0;
  opacity: 0.06;
  font-size: 160px;
  color: #000;
  pointer-events: none;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  background: var(--bg);
  padding: 60px 0 0;
}

.map-section .section-label,
.map-section .section-title {
  display: block;
  text-align: center;
}

.map-section .section-label { margin-bottom: 12px; justify-content: center; }

.map-wrap {
  margin-top: 30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  position: relative;
}

.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(40%) brightness(0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  transform: translateY(-2px);
}

.footer h5 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer ul li::before {
  content: '—';
  color: var(--border);
  font-size: 10px;
}

.footer ul li:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--yellow);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow-soft);
  border: 1px solid var(--border-yellow);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.footer-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.footer-stat .lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.footer-divider {
  border-color: var(--border);
  margin: 40px 0 0;
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #444;
  margin: 0;
}

.footer-bottom a {
  color: #444;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--yellow); }

/* ============================================
   STICKY BUTTONS
   ============================================ */
.sticky-call,
.sticky-whatsapp {
    position: fixed;
    bottom: 35px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    font-size: 22px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-call {
    left: 24px;
    background: #FF5722;
    border: 1px solid var(--border-yellow);
    color: #ffffff;
}

.sticky-call:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.1);
}

.sticky-whatsapp {
  right: 24px;
  background: rgba(37,211,102,0.6);
}

.sticky-whatsapp:hover {
  background: #1ebe5a;
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .info-box { border-right: 1px solid var(--border); }
  .info-box:nth-child(2n) { border-right: none; }

  .hero-satisfaction { display: none; }

  .cta-actions { align-items: stretch; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}








.footer-brand-inner{
        display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    margin-bottom: 4px;
}







@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
    .service-content h5{
        font-size:16px!important;
    }
    .ind-cta-left{
        width: 100%;
    text-align: center;
}

.section-label , .section-title , .section-sub{
    text-align:center;
    width: 100%!important;
    justify-content: center;
}
.testimonials-stack {
    display: grid!important;
}
.cta-content{
    text-align: center;
}

.cta-trust{
    justify-content: center;
}

.cta-trust span{
        font-size: 14px !important;
}

.footer-brand{
        text-align: center;
                padding: 0px 0px;
}

.footer-brand-inner{
        display: flex;
    align-items: center;
     justify-content: center; 
    gap: 10px;
    margin-bottom: 4px;
}


.footer-brand p{
        margin-top: 20px!important;
        max-width: 100%!important;
            font-size: 18px!important;
}
  .hero-section .container { padding: 60px 0; }
  .hero-headline { font-size: 46px; }
  .hero-cta { flex-direction: column; }
  .btn-primary-cta, .btn-secondary-cta { justify-content: center; }

  .info-strip-inner { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .why-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-box { padding: 36px 24px; }
  .cta-actions { align-items: stretch; margin-top: 24px; }
  .cta-decoration { display: none; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-item { gap: 14px; }
}

@media (max-width: 576px) {
  .hero-badges { gap: 8px; }
  .feat-badge { font-size: 12px; padding: 6px 11px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }



/* ============================================
   INDUSTRIES WE SERVE SECTION
   Append this block to the bottom of style.css
   ============================================ */

/* SECTION WRAPPER */
.industries-section {
  background: var(--bg-2);
  padding: 90px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* SUBHEADING */
.industries-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 52px;
  line-height: 1.75;
}

/* ─── GRID ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── CARD ─── */
.ind-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

/* Hover lift + yellow glow border */
.ind-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 210, 0, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 210, 0, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(255, 210, 0, 0.08);
}

/* ─── IMAGE AREA ─── */
.ind-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.ind-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: brightness(0.8);
}

.ind-card:hover .ind-img-wrap img {
  transform: scale(1.07);
  filter: brightness(0.95);
}

/* Gradient overlay on image */
.ind-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.12) 100%
  );
}

/* Floating icon badge */
.ind-icon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.35);
  z-index: 2;
  transition: var(--transition);
  flex-shrink: 0;
}

.ind-card:hover .ind-icon-badge {
  background: #fff;
  transform: scale(1.08);
}

/* ─── CARD BODY ─── */
.ind-body {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ind-body h5 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.ind-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Bullet points */
.ind-points {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ind-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-ui);
}

.ind-points li .fa-check {
  color: var(--yellow);
  font-size: 10px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border: 1px solid var(--border-yellow);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── CTA STRIP ─── */
.ind-cta-strip {
  background: var(--yellow);
  margin-top: 60px;
}

.ind-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 0;
}

.ind-cta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ind-cta-label {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ind-cta-heading {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.ind-cta-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dark button */
.ind-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ff4848;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.ind-btn-dark:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* WhatsApp button */
.ind-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(37,211,102,0.6);
  border: 2px solid rgba(0, 0, 0, 0.18);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.ind-btn-wa:hover {
  background: rgba(0, 0, 0, 0.18);
  color: #000;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */

/* Tablet: 2 cols */
@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .industries-section { padding: 64px 0 0; }

  .industries-sub { font-size: 14px; margin-bottom: 36px; }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }


.btn-primary-cta{
    font-size: 16px!important;
    font-weight: 700!important;
}
.btn-secondary-cta{
    font-size: 16px!important;
    font-weight: 700!important;
}

.btn-primary-cta-2{
    font-size: 16px!important;
    font-weight: 700!important;
}
.btn-secondary-cta-2{
    font-size: 16px!important;
    font-weight: 700!important;
}
  .ind-img-wrap { height: 140px; }

  .ind-body { padding: 14px 12px 16px; }

  .ind-body h5 { font-size: 14px; }

  .ind-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .ind-cta-heading { font-size: 20px; }

  .ind-cta-right {
    width: 100%;
    flex-direction: column;
  }

  .ind-btn-dark,
  .ind-btn-wa {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile: still 2 cols but tighter */
@media (max-width: 480px) {
  .industries-grid { gap: 10px; }
  .ind-img-wrap { height: 120px; }
  .ind-desc { display: none; }
  .ind-icon-badge { width: 32px; height: 32px; top: 10px; left: 10px; }
  .ind-icon-badge svg { width: 16px; height: 16px; }
}



/* ============================================
   PESTOFIED — Mobile Responsive Fixes
   Append to bottom of style.css
   Targets all 14 issues found in audit
   ============================================ */

/* ─── HERO ─── */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;   
            text-align: center;/* removes 92vh empty space */
  }

    .feat-badge {
        font-size: 20px!important;
    
    }
    
    .hero-badges{
        justify-content: center;
    }
    
    
    .hero-headline .accent{
        letter-spacing: 0px;
    font-size: 24px!important;
    }
    
    
    
  .hero-headline {
    font-size: clamp(36px, 10vw, 56px);   /* was clamp(52px,...) — too big */
    letter-spacing: -0.5px;
  }
  .hero-badge{
      margin-bottom: 20px;
  }

  .hero-section .container {
    padding: 48px 0 40px;
  }
}

@media (max-width: 480px) {
  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-badges {
    gap: 7px;
  }

  .feat-badge {
    font-size: 12px;
    padding: 6px 11px;
  }
}

/* ─── INFO STRIP ─── */
@media (max-width: 576px) {
  .info-box {
    padding: 16px 14px;
    gap: 10px;
  }

  .info-text p {
    font-size: 13px;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
    flex-shrink: 0;
  }

  .service-area-bar {
    font-size: 14px;
    padding: 10px 12px;
    letter-spacing: 0.5px;
  }
}

/* ─── SECTION TITLES (global fix) ─── */
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(24px, 7vw, 36px);
  }
}

/* ─── SERVICES SECTION ─── */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);   /* was falling to 1-col */
    gap: 12px;
  }

  .service-img {
    height: 130px;
  }

  .service-content {
    padding: 22px 12px 14px;
  }

  .service-content h5 {
    font-size: 13px;
  }

  .service-content p {
    font-size: 12px;
  }
}

/* ─── WHY CHOOSE US ─── */
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);   /* was 3-col — unreadable */
  }

  .why-item {
    padding: 20px 14px;
  }

  .why-icon {
    width: 46px;
    height: 46px;
  }

  .why-item h6 {
    font-size: 13px;
  }
}

/* ─── INDUSTRIES SECTION ─── */
@media (max-width: 768px) {
  .industries-section {
    padding: 56px 0 0;
  }

  /* Heading was overflowing viewport */
  .industries-section .section-title {
    font-size: clamp(22px, 6vw, 34px);
    letter-spacing: -0.3px;
  }

  .industries-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }

  /* CTA strip inner horizontal padding */
  .ind-cta-inner {
    padding: 24px 16px;
  }

  /* Buttons full-width on mobile */
  .ind-cta-right {
    width: 100%;
    flex-direction: column;
  }

  .ind-btn-dark,
  .ind-btn-wa {
    width: 100%;
    justify-content: center;
  }

  .ind-cta-heading {
    font-size: 18px;
  }
}

/* ─── PROCESS + TESTIMONIALS ─── */
@media (max-width: 576px) {
  /* step-icon (decorative 3rd element) hidden — process-item too wide */
  .step-icon {
    display: none;
  }

  .process-item {
    gap: 12px;
    padding: 16px 16px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 17px;
    border-radius: 8px;
    flex-shrink: 0;
  }
}

.section-sub {
  margin-top: 6px;
  margin-bottom: 0;
}

/* ─── CTA SECTION ─── */
@media (max-width: 576px) {
  .cta-box {
    padding: 28px 20px;        /* was 50px 44px — content was clipping */
  }

  .cta-box h2 {
    font-size: clamp(22px, 6vw, 36px);
  }

  .cta-trust {
    gap: 12px;
  }

  .cta-trust span {
    font-size: 12px;
  }
}

/* ─── FOOTER ─── */
@media (max-width: 768px) {
  .footer-stat {
    margin-top: 12px;
  }

  .footer-social {
    margin-top: 16px;
    justify-content: center;
  }
}

/* ─── GENERAL SECTION SPACING ─── */
/* Reduce top/bottom section padding on mobile for tighter flow */
@media (max-width: 768px) {
  .why-section,
  .services-section,
  .process-section,
  .cta-section {
    padding: 64px 0;
  }

  .map-section {
    padding-top: 48px;
  }
}





/* ============================================
   LEFT-RIGHT SPACING FIX
   Append to bottom of style.css
   ============================================ */

@media (max-width: 768px) {

  /* Bootstrap container ko proper side padding do */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Full-bleed sections jo container ke bahar jaate hain */
  .info-strip-inner {
    margin-left: 0;
    margin-right: 0;
  }

  .ind-cta-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* CTA box inside container */
  .cta-box {
    margin-left: 0;
    margin-right: 0;
  }

  /* Map wrap */
  .map-wrap {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px 12px 0 0;
  }

  /* Hero content text alignment */
  .hero-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Footer columns */
  .footer .container {
    /*padding-left: 20px !important;*/
    /*padding-right: 20px !important;*/
  }

  /* Industries grid */
  .industries-grid {
    padding: 0;
  }

  /* Section titles overflow */
  .section-title,
  .hero-headline {
    word-break: break-word;
  }

}

@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-2);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 12px auto 50px;
  max-width: 480px;
}

/* 2-column grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  align-items: start;
}

/* FAQ item */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--border-yellow);
  box-shadow: 0 0 0 1px rgba(255,210,0,0.1);
}

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.5;
}

.faq-q:hover {
  background: var(--yellow-soft);
  color: var(--yellow);
}

.faq-q[aria-expanded="true"] {
  background: var(--yellow-soft);
  color: var(--yellow);
}

/* Icon */
.faq-icon {
  font-size: 13px;
  color: var(--yellow);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  background: var(--yellow-soft);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

/* Answer panel */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              padding 0.3s ease;
  padding: 0 20px;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-a p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-a p strong { color: var(--yellow); font-weight: 600; }
.faq-a p a { color: var(--yellow); text-decoration: underline; }

/* Bottom CTA */
.faq-bottom-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-bottom-cta p {
  width: 100%;
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 4px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-section { padding: 64px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 10px; }
  .faq-sub { margin-bottom: 32px; }
}

/* ============================================
   POPUP BOOKING MODAL
   ============================================ */

/* Override Bootstrap modal backdrop */
.modal-backdrop { background: rgba(0,0,0,0.85) !important; }

/* Modal content */
.booking-modal-content {
  background: #0f0f0f;
  border: 1px solid var(--border-yellow);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,210,0,0.1);
}

/* Header */
.booking-modal-header {
  background: linear-gradient(135deg, #0d0d0d, #111);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-modal-icon {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  flex-shrink: 0;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
}

.booking-modal-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 3px 0 0;
}

.booking-close-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.booking-close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Body */
.booking-modal-body {
  padding: 24px;
}

/* Fields */
.booking-field {
  margin-bottom: 18px;
}

.booking-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.booking-label i { color: var(--yellow); font-size: 11px; }

.booking-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.booking-input::placeholder { color: #555; }

.booking-input:focus {
  border-color: var(--yellow);
  background: var(--yellow-soft);
  box-shadow: 0 0 0 3px rgba(255,210,0,0.08);
}

/* Phone wrapper */
.booking-phone-wrap {
  display: flex;
  gap: 0;
}

.booking-phone-prefix {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
  font-family: var(--font-ui);
  flex-shrink: 0;
}

.booking-input-phone {
  border-radius: 0 10px 10px 0;
}

/* Select arrow */
.booking-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.booking-select option {
  background: #111;
  color: #fff;
}

/* Service pills grid */
.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.booking-service-pill {
  cursor: pointer;
}

.booking-service-pill input { display: none; }

.booking-service-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: center;
}

.booking-service-pill span i { font-size: 11px; }

.booking-service-pill input:checked + span {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}

.booking-service-pill span:hover {
  border-color: var(--border-yellow);
  color: var(--yellow);
  background: var(--yellow-soft);
}

/* Submit button */
.booking-submit-btn {
  width: 100%;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: var(--transition);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.booking-submit-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

.booking-submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Trust strip */
.booking-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.booking-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-ui);
}

.booking-trust i { color: var(--yellow); font-size: 10px; }

/* ── Floating Sticky Booking Button ── */
.sticky-booking-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255,210,0,0.4);
  transition: var(--transition);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.sticky-booking-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(255,210,0,0.55);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,210,0,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(255,210,0,0.7); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .booking-modal-body { padding: 18px 16px; }
  .booking-service-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-modal-header { padding: 16px 18px; }
  .sticky-booking-btn {         bottom: 118px;
        right: 25px;
        width: 65px;
        height: 65px;
        font-size: 22px;;}
}
/* ============================================
   BOOKING MODAL — Size & Scroll Fix
   Append to bottom of style.css
   ============================================ */

/* Desktop/Laptop: modal max height + internal scroll */
.modal-dialog {
  max-width: 480px;
  margin: 1.5rem auto;
}

.booking-modal-content {
  max-height: calc(100vh - 3rem);   /* viewport se 3rem chhota */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header fixed, body scrolls */
.booking-modal-header {
  flex-shrink: 0;
}

.booking-modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;

  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) transparent;
}

.booking-modal-body::-webkit-scrollbar {
  width: 4px;
}

.booking-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.booking-modal-body::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 99px;
}

/* Compact vertical spacing inside form */
.booking-field {
  margin-bottom: 14px;   /* was 18px */
}

.booking-modal-body {
  padding: 18px 22px 20px;   /* was 24px */
}

.booking-input {
  padding: 10px 14px;   /* was 12px 16px */
}

.booking-phone-prefix {
  padding: 10px 13px;
}

.booking-service-pill span {
  padding: 8px 6px;   /* was 9px 8px */
}

.booking-submit-btn {
  padding: 12px;   /* was 14px */
  margin-top: 2px;
}

.booking-trust {
  margin-top: 10px;   /* was 14px */
}

/* ── MOBILE: full screen but scrollable ── */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    align-items: flex-end;   /* bottom sheet style */
  }

  .modal.fade .modal-dialog {
    transform: translateY(100%);
  }

  .modal.show .modal-dialog {
    transform: translateY(0);
  }

  .booking-modal-content {
    border-radius: 20px 20px 0 0;   /* top corners only rounded */
    border-bottom: none;
    max-height: 88vh;              /* 88% — status bar visible upar */
    /* full screen nahi, bottom sheet feel */
  }

  /* Drag handle indicator */
  .booking-modal-header::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 99px;
    margin: 0 auto 14px;
  }

  .booking-modal-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .booking-modal-title-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .booking-modal-body {
    padding: 16px 18px 24px;
  }

  .booking-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
