/* ================= CITY PAGE START ================= */

/* ================= CITY BANNER ================= */

.city-banner {
    min-height: 80vh;
    /* City page ke liye perfect */
    padding: 160px 20px 140px;
    display: flex;
    align-items: center;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../img/h1.webp") Center / cover no-repeat;

    color: #fff;
}

.city-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.city-banner p {
    max-width: 760px;
    margin: 16px auto 28px;
    font-size: 18px;
}

.city-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7ddcd4, #e93c2d);
    color: #fbfbfa;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .city-banner {
        min-height: 55vh;
        padding: 140px 20px 120px;
    }

    .city-banner h1 {
        font-size: 28px;
    }

    .city-banner p {
        font-size: 16px;
    }
}





/* ================= DELHI CITY : TRUST STRIP ================= */
.delhi-city-trust-strip {
    background: #f5dbea;
    border-radius: 18px;
    padding: 22px 18px;
    margin-top: -60px;
    position: relative;
    z-index: 5;

    box-shadow: 0 18px 45px rgba(186, 234, 239, 0.12);
}

.delhi-city-trust-strip strong {
    font-weight: 600;
    color: #f09fe9;
    transition: color 0.3s ease;
}

.delhi-city-trust-strip strong:hover {
    color: #9c27b0;
}



/* ================= DELHI CITY : SPA SERVICE CARDS ================= */
.delhi-spa-card {
    background: linear-gradient(145deg, #b1e8f6, #b4dcec);
    border-radius: 22px;
    padding: 32px 26px;
    height: 100%;

    border: 1px solid rgba(233, 30, 99, 0.15);
    box-shadow: 0 18px 40px rgba(233, 30, 99, 0.15);

    transition: all 0.35s ease;
}

.delhi-spa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(233, 30, 99, 0.30);
}

.delhi-spa-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}



/* ================= DELHI CITY : SOFT CONTENT SECTIONS ================= */
.delhi-city-soft-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    margin-top: 60px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}





/* ================= EXPLORE MORE LOCATIONS ================= */

/* Section heading */
.luxury-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.luxury-section-subtitle {
    max-width: 720px;
    margin: 10px auto 0;
    font-size: 16px;
    color: #555;
}



/* Image */
.location-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover zoom */
.location-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.location-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 28px;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25),
            transparent);
}

/* Title badge */
.location-overlay h4 {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.45);
    margin-bottom: 8px;
}

/* Subtitle */
.location-overlay span {
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #f1f1f1;
    opacity: 0.9;
}

/* Hover lift */
.location-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 65px rgba(233, 30, 99, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .luxury-section-title {
        font-size: 28px;
    }

    .location-card img {
        height: 220px;
    }

    .location-overlay h4 {
        font-size: 16px;
        padding: 8px 24px;
    }
}


/* ================= DELHI CITY : SPA SERVICE IMAGE CARDS ================= */
/* City: DELHI */

.delhi-services-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;

    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delhi-spa-card-img {
    position: relative;
    isolation: isolate;
    will-change: transform;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

.delhi-spa-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;

  background: linear-gradient(
    to top,
    rgba(233, 30, 99, 0.18),
    rgba(156, 39, 176, 0.12),
    transparent
  );
}

.delhi-spa-card-img:hover::before {
    opacity: 1;
}

.delhi-spa-card-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(233, 30, 99, 0.28);
}

.delhi-spa-card-img:hover img {
    transform: scale(1.08);
}

/* Keep text above overlay */
.delhi-spa-card-img .card-body {
    position: relative;
    z-index: 2;
}

.delhi-spa-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.delhi-spa-card-img .card-body {
    padding: 22px;
    text-align: center;
}

.delhi-spa-card-img h5 {
    font-weight: 700;
    font-size: 18px;
    color: #2c2c2c;
    position: relative;
}

.delhi-spa-card-img h5::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.delhi-spa-card-img p {
    font-size: 15px;
    color: #555;
}

/* ================= DELHI CITY : SPA SERVICE IMAGE CARDS END ================= */

/* ================= DELHI CITY : AREAS SERVED PREMIUM ================= */
/* City: DELHI */

.delhi-city-areas-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 0px 30px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.delhi-area-subtext {
    font-size: 15px;
    color: #666;
}

/* Area chip */
.delhi-area-chip {
    display: block;
    text-align: center;
    padding: 14px 10px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;

    background: linear-gradient(135deg,
            rgba(233, 30, 99, 0.08),
            rgba(156, 39, 176, 0.08));

    color: #2c2c2c;
    border: 1px solid rgba(233, 30, 99, 0.2);

    transition: all 0.3s ease;
}

/* Hover effect */
.delhi-area-chip:hover {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35);
}

/* Mobile fix */
@media (max-width: 768px) {
    .delhi-city-areas-box {
        padding: 28px 20px;
    }

    .delhi-area-chip {
        font-size: 14px;
        padding: 12px 8px;
    }
}

/* ================= DELHI CITY : AREAS SERVED PREMIUM END ================= */


/* Premium minimal list (NO CARD) */
.clean-benefit-list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.clean-benefit-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}

.clean-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #9c27b0;
    font-weight: 600;
}



/* ===== TITLE WITH CALL & WHATSAPP (INLINE) ===== */

.title-with-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

/* Title */
.title-with-cta h5 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #2c2c2c;
}

/* CTA icons */
.title-with-cta a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Call button – aap brand color rakh sakte ho */
.cta-call {
    background: #9c27b0;
}

/* WhatsApp button – aap brand color rakh sakte ho */
.cta-whatsapp {
    background: #e91e63;
}

/* Hover effect */
.title-with-cta a:hover {
    transform: scale(1.15);
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .title-with-cta {
        gap: 10px;
    }

    .title-with-cta h5 {
        font-size: 16px;
    }
}




/* Premium Location Card Effect */
/* Card wrapper */

.location-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.location-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.4);
}

.location-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(2px); /* Halki dhundhalahat premium lagti hai */
    transition: all 0.4s ease;
}

.location-card:hover .location-overlay {
    background: linear-gradient(to top, rgba(156, 39, 176, 0.8) 0%, rgba(233, 30, 99, 0.2) 100%);
}

.location-overlay h4 {
    transform: translateY(10px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.location-card:hover h4 {
    transform: translateY(0px);
    background: #fff !important;
    color: #9c27b0 !important;
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Image Zoom Effect */
.location-card img {
    filter: grayscale(20%);
    transition: all 0.6s ease;
}

.location-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.15);
}


/* ================= POWER PREMIUM SPA AMBIENCE : DELHI ================= */

.delhi-premium-ambience {
  background: #ffffff;
}

/* IMAGE GRID (NO BOOTSTRAP GAP – PURE CONTROL) */
.delhi-premium-ambience-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;   /* GAP CONTROLLED */
  gap: 8px;               /* IMPORTANT: PREMIUM TIGHT GAP */
}

.delhi-premium-ambience-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Bottom large image */
.delhi-premium-ambience-images .img-large {
  grid-column: 1 / -1;
  height: 210px;
}

/* CONTENT */
.delhi-premium-ambience-content h3 {
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
}

.delhi-premium-ambience-content p {
  color: #555;
  line-height: 1.7;
}

/* POINTS */
.premium-ambience-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.premium-ambience-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

.premium-ambience-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9c27b0;
  font-weight: 700;
}

/* ================= MOBILE OPTIMIZATION ================= */

/* ================= FINAL MOBILE IMAGE GAP (REAL FIX) ================= */
@media (max-width: 768px) {

  .delhi-premium-ambience {
    padding: 40px 10px;
  }

  .delhi-premium-ambience-images {
    display: flex;              /* 🔥 GRID HATA DO MOBILE ME */
    flex-direction: column;
  }

  .delhi-premium-ambience-images img {
    height: 200px;
    width: 100%;
    object-fit: cover;

    border-radius: 22px;

    margin-bottom: 10px;        /* 🔥 REAL GAP — CLEARLY VISIBLE */

    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  }

  .delhi-premium-ambience-images .img-large {
    height: 300px;
  }

  /* last image ke niche extra gap nahi */
  .delhi-premium-ambience-images img:last-child {
    margin-bottom: 0;
  }

  .delhi-premium-ambience-content {
    margin-top: 36px;
    text-align: center;
  }
}





/* City page end  */