/* ===== Services Hero (50vh) ===== */
.service-hero-section{
  position: relative;
  height: 50vh;
  min-height: 320px;
  width: 100%;
  display: grid;
  place-items: center;
  background-image: url('images/section4.jpg'); /* apni image yahan set karein */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.service-hero-section-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.6));
}

.service-hero-section-content{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  max-width: 1000px;
  animation: service-hero-section-fade .8s ease-out both;
}

.service-hero-section-eyebrow{
  margin: 0 0 .4rem 0;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.service-hero-section-title{
  margin: 0 0 .5rem 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.service-hero-section-subtitle{
  margin: 0 auto 1.1rem;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  max-width: 70ch;
  opacity: .95;
}

/* Actions */
.service-hero-section-actions{
  display: inline-flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.service-hero-section-cta,
.service-hero-section-ghost{
  display: inline-block;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  backdrop-filter: blur(2px);
}
.service-hero-section-cta{
  background: #ffffff;
  color: #0b0b0b;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.service-hero-section-cta:hover{ transform: translateY(-2px); }

.service-hero-section-ghost{
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.service-hero-section-ghost:hover{
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* subtle entrance */
@keyframes service-hero-section-fade{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* small screens */
@media (max-width: 480px){
  .service-hero-section{ min-height: 360px; }
  .service-hero-section-actions{ gap: .5rem; }
  .service-hero-section-cta, .service-hero-section-ghost{ padding: .7rem 1rem; }
}


/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* ////////////////////////// section2 /////////////////////// */
/* ===== Service Section 2: Services Cards (8 items) ===== */
.service-section2{
  background: #fff;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  color: #0b0b0b;
}

.service-section2-container{
  max-width: 1200px;
  margin: 0 auto;
}

.service-section2-title{
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 2rem;
}

.service-section2-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1024px){
  .service-section2-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .service-section2-grid{ grid-template-columns: 1fr; }
}

/* Card */
.service-section2-card{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f8f8;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 450px; /* thode bade cards */
}
.service-section2-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,.1);
}

.service-section2-card img{
  width: 100%;
  height: 260px;            /* bigger image area */
  object-fit: cover;
  display: block;
}

.service-section2-info{
  padding: 1rem;
  flex-grow: 1;
  display: grid;
  align-content: start;
  gap: .35rem;
}
.service-section2-info h3{
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
}
.service-section2-info p{
  margin: 0;
  color: #555;
  font-size: .96rem;
}

/* Book button (hidden initially, shows on hover) */
.service-section2-btn{
  position: absolute;
  left: 50%;
  bottom: -64px;                 /* hidden below */
  transform: translateX(-50%);
  background: #0b0b0b;
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
  transition: bottom .3s ease, opacity .3s ease, transform .3s ease;
  opacity: 0;
}
.service-section2-card:hover .service-section2-btn{
  bottom: 16px;                  /* slide up on hover */
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Keyboard focus for accessibility */
.service-section2-btn:focus-visible{
  outline: 3px solid #111;
  outline-offset: 3px;
}


/* ////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////// section 3 ///////////////////// */
/* ===== Service Section 3: Full-width CTA ===== */
.service-section3{
  width: 100%;
  background: #0a0a0a;
  color: #ffffff;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  position: relative;
  overflow: hidden;
}

/* subtle glow edges (optional) */
.service-section3::before{
  content:"";
  position:absolute; inset:-20% -10% auto -10%;
  height:60%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}

.service-section3-container{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-section3-title{
  margin: 0 0 .5rem;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: .01em;
}
.service-section3-sub{
  margin: 0 auto 1.25rem;
  max-width: 70ch;
  color: #d9d9d9;
}

/* Actions */
.service-section3-actions{
  display: inline-flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: .9rem;
}
.service-section3-btn{
  display: inline-block;
  padding: .9rem 1.35rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}

/* Book Now (white on black) */
.service-section3-btn--primary{
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 12px 26px rgba(255,255,255,.12);
}
.service-section3-btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,255,255,.16);
}

/* WhatsApp (green) */
.service-section3-btn--whatsapp{
  background: #25D366;           /* WhatsApp green */
  color: #0a0a0a;                /* high contrast on green */
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 12px 26px rgba(37,211,102,.35);
}
.service-section3-btn--whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37,211,102,.45);
}
.service-section3-waicon{
  margin-right: .45rem;
  font-size: 1rem;
  vertical-align: -1px;
}

/* Meta row */
.service-section3-meta{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #bdbdbd;
  margin-top: .2rem;
}
.service-section3-badge{
  padding: .45rem .7rem;
  border-radius: 999px;
  background: #131313;
  border: 1px solid #1f1f1f;
  color: #eaeaea;
  font-weight: 700;
  font-size: .9rem;
}
.service-section3-dot{ opacity: .6; }
.service-section3-link{
  color: #eaeaea;
  text-decoration: none;
  border-bottom: 1px dashed rgba(234,234,234,.35);
}
.service-section3-link:hover{
  color: #ffffff;
  border-bottom-color: rgba(234,234,234,.7);
}

/* Mobile tweaks */
@media (max-width: 480px){
  .service-section3-actions{ gap: .55rem; }
  .service-section3-btn{ padding: .8rem 1.1rem; }
}
