:root {
  --bg: #0a0d12;
  --panel: #10141b;
  --panel2: #141a23;
  --gold: #e4b63f;
  --gold2: #f4cf69;
  --text: #f6f1e7;
  --muted: #aeb4bf;
  --line: rgba(228, 182, 63, 0.22);
  --green: #25d366;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}
.topbar {
  background: #07090d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}
.brand {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}
.brand span {
  color: var(--gold);
}
.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.navlinks a:hover {
  color: var(--gold);
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: 0.25s;
  font-size: 14px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.btn-dark {
  background: #17140c;
  color: #fff;
}
.mobile-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 25px;
}

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(
      90deg,
      rgb(7 9 13 / 26%) 0%,
      rgb(7 9 13 / 37%) 48%,
      rgba(7, 9, 13, 0.5) 100%
    ),
    linear-gradient(0deg, #0a0d1200 0%, transparent 28%); */
  /* linear-gradient(0deg, #0a0d12 0%, transparent 28%); */
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 100px 0;
}
.kicker {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 900;
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  line-height: 1.15;
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(44px, 3vw, 82px);
}
h1 span,
h2 span {
  color: var(--gold);
}
h2 {
  font-size: clamp(34px, 4vw, 52px);
}
h3 {
  font-size: 24px;
}
.lead {
  font-size: 18px;
  color: #d7d9df;
  max-width: 700px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #d5d8df;
  font-size: 14px;
}
.hero-points b {
  color: var(--gold2);
}

.section {
  padding: 88px 0;
}
.section.alt {
  background: #0d1118;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}
.section-head .line {
  width: 62px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}
.grid {
  display: grid;
  gap: 18px;
}
.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: linear-gradient(180deg, #131821, #0e1218);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-media {
  aspect-ratio: 4/5;
  background: #1b2230;
  position: relative;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .card-media:after {
  content: "IMAGE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #667082;
  font-size: 12px;
  letter-spacing: 0.18em;
  pointer-events: none;
} */
.card-body {
  padding: 22px;
}
.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--gold2);
  font-size: 12px;
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}
.card-actions {
  display: flex;
  gap: 10px;
}
.card-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
}

.category-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.pill {
  background: #10141b;
  border: 1px solid var(--line);
  padding: 14px 10px;
  border-radius: 9px;
  text-align: center;
  color: #dedfe4;
  font-size: 12px;
  transition: 0.25s;
}
.pill:hover {
  background: #18160f;
  border-color: var(--gold);
  color: var(--gold2);
  transform: translateY(-2px);
}
.location-grid {
  grid-template-columns: repeat(4, 1fr);
}
.location-grid .pill {
  text-align: left;
  padding: 15px 16px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.image-box {
  min-height: 430px;
  border-radius: 24px;
  background: #151b24;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
/* .image-box:after {
  content: "IMAGE PLACEHOLDER";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #697383;
  letter-spacing: 0.15em;
  font-size: 12px;
} */
.checks {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.check {
  display: flex;
  gap: 12px;
  color: #d4d7dc;
}
.check i {
  color: var(--gold);
  font-style: normal;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  padding: 28px;
  background: #10141b;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}
.stat strong {
  display: block;
  font: 700 34px Georgia;
  color: var(--gold2);
}
.stat span {
  font-size: 13px;
  color: var(--muted);
}
.faq {
  max-width: 900px;
  margin: auto;
}
.faq details {
  background: #10141b;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 12px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p {
  color: var(--muted);
}
.cta-band {
  background: linear-gradient(135deg, #211b0c, #0e1117);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer {
  background: #07090d;
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer h4 {
  color: var(--gold2);
  margin: 0 0 15px;
}
.footer p,
.footer a {
  color: #aeb4bf;
  font-size: 14px;
}
.footer a {
  display: block;
  margin: 8px 0;
}
.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 38px;
  padding-top: 20px;
  color: #777f8d;
  font-size: 12px;
}
.breadcrumb {
  padding: 24px 0;
  color: #8992a1;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--gold2);
}
.inner-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(228, 182, 63, 0.12),
      transparent 35%
    ),
    #0d1118;
  border-bottom: 1px solid var(--line);
}
.inner-hero p {
  max-width: 760px;
  color: #c4c8d0;
}
.price-box {
  background: #111720;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.price-row:last-child {
  border-bottom: 0;
}
.price-row strong {
  color: var(--gold2);
}
.note {
  font-size: 12px;
  color: #88919e;
  margin-top: 14px;
}
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
  display: grid;
  gap: 10px;
}
.floating a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  font-weight: 900;
}
.float-wa {
  background: var(--green);
  color: white;
}
.float-call {
  background: var(--gold);
  color: #111;
}
.seo-copy {
  max-width: 920px;
  margin: auto;
  color: #c6cad1;
}
.seo-copy h3 {
  margin-top: 28px;
}
.seo-copy p {
  color: #abb2bd;
}

@media (max-width: 1000px) {
  .navlinks {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    background: #0b0e13;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .navlinks.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-actions {
    display: none;
  }
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .hero {
    min-height: 610px;
  }
  .section {
    padding: 66px 0;
  }
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 28px;
    display: block;
  }
  .cta-band .hero-cta {
    margin-top: 20px;
  }
  .brand {
    font-size: 18px;
  }
  h1 {
    font-size: 42px;
  }
}

/* Full-width SEO H1 content block placed below hero/breadcrumb areas */
.page-intro-section {
  width: 100%;
  background: linear-gradient(180deg, #0d1118 0%, #0a0d12 100%);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 48px;
}
.page-intro-wrap {
  max-width: 1180px;
}
.page-intro-wrap h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 0 0 18px;
  color: var(--text);
}
.page-intro-wrap h1 span {
  color: var(--gold);
}
.page-intro-wrap p {
  max-width: none;
  margin: 0;
  color: #b9c0ca;
  font-size: 17px;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .page-intro-section {
    padding: 38px 0 34px;
  }
  .page-intro-wrap h1 {
    font-size: 36px;
  }
  .page-intro-wrap p {
    font-size: 15px;
  }
}

/* ==========================================
   PREMIUM DELHI DIRECTORY SECTION
========================================== */

.directory-about-section {
  position: relative;
  width: 100%;
  background: #090d12;
  padding: 90px 20px;
  overflow: hidden;
}

.directory-about-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 88px;

  align-items: center;
}

/* ==========================================
   LEFT IMAGE
========================================== */

.directory-visual {
  position: relative;
  width: 100%;
  min-height: 610px;
}

.directory-image-box {
  position: relative;

  width: 100%;
  max-width: 455px;
  height: 565px;

  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(239, 181, 45, 0.42);

  background: #141a23;

  padding: 12px;
}

.directory-image-box::before {
  content: "";
  position: absolute;
  inset: 12px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;

  pointer-events: none;
  z-index: 2;
}

.directory-image-box img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  border-radius: 16px;
}

/* ==========================================
   FLOATING CARD
========================================== */

.directory-floating-card {
  position: absolute;

  right: -22px;
  bottom: 15px;

  width: 272px;
  min-height: 115px;

  background: #10151c;

  border: 1px solid rgba(239, 181, 45, 0.48);
  border-radius: 16px;

  padding: 20px 18px;

  display: flex;
  align-items: center;
  gap: 15px;

  z-index: 5;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.floating-icon {
  width: 45px;
  height: 45px;

  min-width: 45px;

  border-radius: 50%;

  background: rgba(239, 181, 45, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #efb52d;

  font-size: 24px;
}

.floating-content h3 {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  margin: 0 0 7px;
}

.floating-content p {
  color: #9ea8b7;

  font-size: 11px;
  line-height: 1.7;

  margin: 0;
}

/* ==========================================
   RIGHT CONTENT
========================================== */

.directory-content {
  width: 100%;
}

.directory-kicker {
  color: #efb52d;

  font-size: 12px;
  line-height: 1.4;

  font-weight: 800;
  letter-spacing: 3px;

  margin-bottom: 15px;
}

.directory-title {
  margin: 0 0 24px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.08;

  font-weight: 500;
}

.directory-title span {
  color: #efb52d;
}

/* ==========================================
   PARAGRAPH CONTENT
========================================== */

.directory-text {
  margin-bottom: 28px;
}

.directory-text p {
  color: #c4ccda;

  font-size: 14px;
  line-height: 1.85;

  margin: 0 0 18px;
}

.directory-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   FEATURE BOXES
========================================== */

.directory-feature {
  width: 100%;

  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 16px;

  padding: 15px 17px;

  margin-bottom: 12px;

  background: #0e131a;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 12px;

  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.directory-feature:hover {
  border-color: rgba(239, 181, 45, 0.55);

  background: #111720;

  transform: translateX(4px);
}

.feature-number {
  width: 40px;
  height: 40px;

  min-width: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(239, 181, 45, 0.13);

  color: #efb52d;

  font-size: 11px;
  font-weight: 800;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  margin: 0 0 5px;
}

.feature-content p {
  color: #aab4c3;

  font-size: 11px;
  line-height: 1.6;

  margin: 0;
}

/* ==========================================
   BUTTONS
========================================== */

.directory-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;
}

.directory-btn {
  min-height: 47px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 25px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 13px;
  line-height: 1;

  font-weight: 700;

  transition: all 0.3s ease;
}

.directory-btn-gold {
  color: #090d12;

  background: #efb52d;

  border: 1px solid #efb52d;
}

.directory-btn-gold:hover {
  background: #ffc642;
  border-color: #ffc642;

  transform: translateY(-2px);
}

.directory-btn-outline {
  color: #ffffff;

  background: transparent;

  border: 1px solid rgba(239, 181, 45, 0.55);
}

.directory-btn-outline:hover {
  color: #090d12;

  background: #efb52d;

  border-color: #efb52d;

  transform: translateY(-2px);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {
  .directory-about-container {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .directory-title {
    font-size: 42px;
  }

  .directory-image-box {
    max-width: 100%;
  }

  .directory-floating-card {
    right: -10px;
  }
}

/* ==========================================
   MOBILE / TABLET
========================================== */

@media (max-width: 850px) {
  .directory-about-section {
    padding: 65px 20px;
  }

  .directory-about-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .directory-visual {
    min-height: auto;
    padding-bottom: 45px;
  }

  .directory-image-box {
    width: 100%;
    max-width: 600px;
    height: 520px;

    margin: 0 auto;
  }

  .directory-floating-card {
    right: 20px;
    bottom: 0;
  }

  .directory-content {
    max-width: 650px;
    margin: 0 auto;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 576px) {
  .directory-about-section {
    padding: 50px 15px;
  }

  .directory-about-container {
    gap: 45px;
  }

  .directory-image-box {
    height: 430px;
    padding: 8px;
  }

  .directory-image-box::before {
    inset: 8px;
  }

  .directory-floating-card {
    position: relative;

    width: calc(100% - 25px);

    right: auto;
    bottom: auto;

    margin: -45px auto 0;

    min-height: 105px;
  }

  .directory-visual {
    padding-bottom: 0;
  }

  .directory-kicker {
    font-size: 10px;
    letter-spacing: 2.4px;
  }

  .directory-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .directory-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .directory-feature {
    padding: 14px;
  }

  .directory-buttons {
    width: 100%;
  }

  .directory-btn {
    flex: 1;
    min-width: 145px;
  }
}

/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 400px) {
  .directory-title {
    font-size: 31px;
  }

  .directory-image-box {
    height: 380px;
  }

  .directory-buttons {
    flex-direction: column;
  }

  .directory-btn {
    width: 100%;
  }
}

/* ===================================================
   WHY CHOOSE OUR DELHI DIRECTORY
=================================================== */

.why-directory-section {
  position: relative;
  width: 100%;
  background: #0c1119;
  padding: 85px 20px 95px;
  overflow: hidden;
}

.why-directory-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===================================================
   SECTION HEADING
=================================================== */

.why-directory-head {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.why-directory-kicker {
  margin-bottom: 18px;

  color: #f1b82d;

  font-size: 12px;
  line-height: 1.4;

  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.why-directory-head h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 52px;
  line-height: 1.12;

  font-weight: 500;
}

.why-directory-head h2 span {
  color: #efb52d;
}

.why-directory-head > p {
  max-width: 690px;

  margin: 28px auto 0;

  color: #c5cfdd;

  font-size: 14px;
  line-height: 1.9;
}

/* ===================================================
   CARDS GRID
=================================================== */

.why-directory-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 17px;

  width: 100%;
}

/* ===================================================
   SINGLE CARD
=================================================== */

.why-directory-card {
  position: relative;

  min-height: 355px;

  padding: 32px 26px 27px;

  background: #10151d;

  border: 1px solid rgba(239, 181, 45, 0.28);

  border-radius: 17px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.why-directory-card:hover {
  transform: translateY(-7px);

  background: #121923;

  border-color: rgba(239, 181, 45, 0.6);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

/* ===================================================
   CARD TOP
=================================================== */

.why-card-top {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
}

/* Icon */

.why-card-icon {
  position: relative;
  z-index: 2;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(239, 181, 45, 0.07);

  border: 1px solid rgba(239, 181, 45, 0.38);

  color: #f1b82d;

  font-size: 19px;

  transition: all 0.3s ease;
}

.why-directory-card:hover .why-card-icon {
  background: #efb52d;
  color: #0c1119;
}

/* Large Number */

.why-card-number {
  position: absolute;

  right: -7px;
  top: -17px;

  color: rgba(239, 181, 45, 0.055);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 72px;
  line-height: 1;

  font-weight: 700;

  user-select: none;

  pointer-events: none;
}

/* ===================================================
   CARD HEADING
=================================================== */

.why-directory-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 17px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;
  line-height: 1.27;

  font-weight: 700;
}

/* ===================================================
   CARD PARAGRAPH
=================================================== */

.why-directory-card p {
  position: relative;
  z-index: 2;

  margin: 0 0 13px;

  color: #c1cad8;

  font-size: 13px;
  line-height: 1.9;
}

/* ===================================================
   CARD LINK
=================================================== */

.why-card-link {
  position: relative;
  z-index: 2;

  display: inline-block;

  margin-top: auto;

  color: #f1b82d;

  font-size: 12px;
  line-height: 1.5;

  font-weight: 800;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.why-card-link:hover {
  color: #ffd15b;
  transform: translateX(4px);
}

/* ===================================================
   TABLET
=================================================== */

@media (max-width: 1100px) {
  .why-directory-container {
    max-width: 950px;
  }

  .why-directory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-directory-card {
    min-height: 330px;
  }
}

/* ===================================================
   TABLET / MOBILE
=================================================== */

@media (max-width: 768px) {
  .why-directory-section {
    padding: 65px 18px 70px;
  }

  .why-directory-head {
    margin-bottom: 40px;
  }

  .why-directory-head h2 {
    font-size: 42px;
  }

  .why-directory-head > p {
    margin-top: 22px;

    font-size: 13px;
    line-height: 1.8;
  }
}

/* ===================================================
   MOBILE
=================================================== */

@media (max-width: 600px) {
  .why-directory-section {
    padding: 55px 15px 60px;
  }

  .why-directory-kicker {
    font-size: 10px;
    letter-spacing: 2.3px;
  }

  .why-directory-head h2 {
    font-size: 35px;
    line-height: 1.15;
  }

  .why-directory-head h2 span {
    display: inline;
  }

  .why-directory-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-directory-card {
    min-height: auto;

    padding: 27px 22px;
  }

  .why-card-top {
    margin-bottom: 21px;
  }

  .why-card-icon {
    width: 48px;
    height: 48px;

    font-size: 17px;
  }

  .why-card-number {
    font-size: 65px;
  }

  .why-directory-card h3 {
    font-size: 23px;
  }
}

/* ===================================================
   SMALL MOBILE
=================================================== */

@media (max-width: 400px) {
  .why-directory-head h2 {
    font-size: 31px;
  }

  .why-directory-card {
    padding: 24px 20px;
  }

  .why-directory-card h3 {
    font-size: 21px;
  }

  .why-directory-card p {
    font-size: 12.5px;
  }
}

/* =====================================================
   POPULAR DELHI LOCATIONS SECTION
===================================================== */

.delhi-location-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 90px;
  background: #090d12;
  overflow: hidden;
}

.delhi-location-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

/* =====================================================
   TOP HEADING
===================================================== */

.delhi-location-head {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.delhi-location-kicker {
  margin-bottom: 15px;

  color: #efb52d;

  font-size: 11px;
  line-height: 1.4;

  font-weight: 800;
  letter-spacing: 3px;

  text-transform: uppercase;
}

.delhi-location-head h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 50px;
  line-height: 1.12;

  font-weight: 500;
}

.delhi-location-head h2 span {
  color: #efb52d;
}

.delhi-location-head > p {
  max-width: 650px;

  margin: 25px auto 0;

  color: #c5cfdd;

  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   MAIN ROW
===================================================== */

.delhi-location-row {
  display: grid;

  grid-template-columns: 1.2fr 0.85fr;

  gap: 75px;

  align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.delhi-location-content {
  width: 100%;
}

.delhi-location-content h3 {
  margin: 0 0 22px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 31px;
  line-height: 1.3;

  font-weight: 700;
}

.delhi-location-content > p {
  margin: 0 0 19px;

  color: #c5cfdd;

  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   LOCATION BUTTONS
===================================================== */

.delhi-location-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 27px;
}

.delhi-location-buttons a {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 15px;

  background: #10161f;

  border: 1px solid rgba(239, 181, 45, 0.3);

  border-radius: 9px;

  color: #ffffff;

  font-size: 11px;
  line-height: 1;

  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.delhi-location-buttons a:hover {
  color: #090d12;

  background: #efb52d;

  border-color: #efb52d;

  transform: translateY(-2px);
}

/* VIEW ALL BUTTON */

.delhi-location-buttons .location-view-all {
  padding-left: 20px;
  padding-right: 20px;

  color: #090d12;

  background: #efb52d;

  border-color: #efb52d;

  font-weight: 800;
}

.delhi-location-buttons .location-view-all:hover {
  background: #ffc641;
  border-color: #ffc641;
}

/* =====================================================
   RIGHT VISUAL
===================================================== */

.delhi-location-visual {
  position: relative;

  width: 100%;
}

.delhi-location-image {
  position: relative;

  width: 100%;
  height: 510px;

  overflow: hidden;

  background: #151b24;

  border: 1px solid rgba(239, 181, 45, 0.45);

  border-radius: 23px;
}

.delhi-location-image::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(to top, rgba(6, 10, 15, 0.2), transparent 45%);
}

.delhi-location-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* =====================================================
   LOCATION COUNT BOX
===================================================== */

.location-count-box {
  position: absolute;

  right: 20px;
  bottom: 20px;

  width: 145px;
  min-height: 92px;

  padding: 17px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: rgba(8, 12, 18, 0.94);

  border: 1px solid rgba(239, 181, 45, 0.5);

  border-radius: 14px;

  z-index: 5;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.location-count-box strong {
  display: block;

  margin-bottom: 5px;

  color: #efb52d;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 34px;
  line-height: 1;

  font-weight: 700;
}

.location-count-box span {
  display: block;

  color: #c6ced9;

  font-size: 10px;
  line-height: 1.5;
}

/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1100px) {
  .delhi-location-row {
    gap: 45px;

    grid-template-columns: 1.1fr 0.9fr;
  }

  .delhi-location-image {
    height: 470px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {
  .delhi-location-section {
    padding: 65px 20px 70px;
  }

  .delhi-location-head {
    margin-bottom: 45px;
  }

  .delhi-location-head h2 {
    font-size: 43px;
  }

  .delhi-location-row {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .delhi-location-content {
    max-width: 700px;

    margin: 0 auto;
  }

  .delhi-location-visual {
    max-width: 650px;

    margin: 0 auto;
  }

  .delhi-location-image {
    height: 500px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .delhi-location-section {
    padding: 55px 15px 60px;
  }

  .delhi-location-head {
    margin-bottom: 38px;
  }

  .delhi-location-kicker {
    font-size: 10px;
    letter-spacing: 2.3px;
  }

  .delhi-location-head h2 {
    font-size: 35px;
    line-height: 1.15;
  }

  .delhi-location-head > p {
    margin-top: 20px;

    font-size: 13px;
    line-height: 1.8;
  }

  .delhi-location-content h3 {
    font-size: 27px;
    line-height: 1.3;
  }

  .delhi-location-content h3 br {
    display: none;
  }

  .delhi-location-content > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .delhi-location-buttons {
    gap: 7px;
  }

  .delhi-location-buttons a {
    min-height: 38px;

    padding: 8px 13px;

    font-size: 10.5px;
  }

  .delhi-location-image {
    height: 430px;

    border-radius: 18px;
  }

  .location-count-box {
    right: 15px;
    bottom: 15px;

    width: 135px;

    min-height: 85px;

    padding: 15px;
  }

  .location-count-box strong {
    font-size: 31px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {
  .delhi-location-head h2 {
    font-size: 31px;
  }

  .delhi-location-content h3 {
    font-size: 24px;
  }

  .delhi-location-image {
    height: 370px;
  }

  .delhi-location-buttons .location-view-all {
    width: 100%;
  }
}

/* =====================================================
   DELHI NCR DETAILED INFORMATION SECTION
===================================================== */

.ncr-info-section {
  position: relative;
  width: 100%;
  padding: 85px 20px 90px;
  background: #090d12;
  overflow: hidden;
}

.ncr-info-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

/* =====================================================
   HEADING AREA
===================================================== */

.ncr-info-heading {
  width: 100%;
  max-width: 890px;
  margin: 0 auto 34px;
  text-align: center;
}

.ncr-info-kicker {
  margin-bottom: 16px;

  color: #efb52d;

  font-size: 9px;
  line-height: 1.4;

  font-weight: 800;
  letter-spacing: 2px;

  text-transform: uppercase;
}

.ncr-info-heading h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 50px;
  line-height: 1.12;

  font-weight: 500;
}

.ncr-info-heading h2 span {
  display: block;
  color: #efb52d;
}

/* =====================================================
   CONTENT
===================================================== */

.ncr-info-content {
  width: 100%;
  margin-top: 30px;
}

.ncr-info-content p {
  margin: 0 0 18px;

  color: #c6cfdd;

  font-size: 14px;
  line-height: 2;

  font-weight: 400;
}

.ncr-info-content p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   FEATURE CARDS GRID
===================================================== */

.ncr-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 11px;

  margin-top: 28px;
}

/* =====================================================
   FEATURE CARD
===================================================== */

.ncr-info-card {
  position: relative;

  min-height: 88px;

  padding: 18px 16px;

  background: #10151c;

  border: 1px solid rgba(239, 181, 45, 0.3);

  border-radius: 9px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.ncr-info-card:hover {
  transform: translateY(-4px);

  background: #121923;

  border-color: rgba(239, 181, 45, 0.65);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* CARD HEADING */

.ncr-info-card h3 {
  margin: 0 0 11px;

  color: #efb52d;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 15px;
  line-height: 1.3;

  font-weight: 700;
}

/* CARD TEXT */

.ncr-info-card p {
  margin: 0;

  color: #c0c9d6;

  font-size: 13px;
  line-height: 1.7;
}

/* =====================================================
   BOTTOM BUTTONS
===================================================== */

.ncr-info-actions {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 26px;
}

.ncr-info-btn {
  min-height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 20px;

  border-radius: 25px;

  text-decoration: none;

  font-size: 13px;
  line-height: 1;

  font-weight: 800;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* GOLD BUTTON */

.ncr-info-btn-gold {
  color: #090d12;

  background: #efb52d;

  border: 1px solid #efb52d;
}

.ncr-info-btn-gold:hover {
  color: #090d12;

  background: #ffc943;

  border-color: #ffc943;

  transform: translateY(-2px);
}

/* OUTLINE BUTTON */

.ncr-info-btn-outline {
  color: #ffffff;

  background: transparent;

  border: 1px solid rgba(239, 181, 45, 0.65);
}

.ncr-info-btn-outline:hover {
  color: #090d12;

  background: #efb52d;

  border-color: #efb52d;

  transform: translateY(-2px);
}

/* =====================================================
   LARGE SCREEN
===================================================== */

@media (min-width: 1400px) {
  .ncr-info-container {
    max-width: 1160px;
    text-align: center;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .ncr-info-section {
    padding: 70px 20px;
  }

  .ncr-info-container {
    max-width: 760px;
  }

  .ncr-info-heading h2 {
    font-size: 34px;
  }

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

  .ncr-info-card {
    min-height: 105px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .ncr-info-section {
    padding: 55px 15px 60px;
  }

  .ncr-info-heading {
    margin-bottom: 28px;
  }

  .ncr-info-kicker {
    font-size: 9px;
    letter-spacing: 1.7px;
  }

  .ncr-info-heading h2 {
    font-size: 31px;
    line-height: 1.18;
  }

  .ncr-info-heading h2 span {
    margin-top: 3px;
  }

  .ncr-info-content {
    margin-top: 25px;
  }

  .ncr-info-content p {
    font-size: 12.5px;
    line-height: 1.85;

    margin-bottom: 16px;
  }

  .ncr-info-grid {
    grid-template-columns: 1fr;

    gap: 10px;

    margin-top: 25px;
  }

  .ncr-info-card {
    min-height: auto;

    padding: 18px;
  }

  .ncr-info-card h3 {
    font-size: 17px;
  }

  .ncr-info-card p {
    font-size: 11px;
  }

  .ncr-info-actions {
    margin-top: 23px;
  }

  .ncr-info-btn {
    min-height: 40px;

    padding: 10px 19px;

    font-size: 10px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {
  .ncr-info-heading h2 {
    font-size: 28px;
  }

  .ncr-info-actions {
    flex-direction: column;
  }

  .ncr-info-btn {
    width: 100%;
  }
}

/* ==========================================
   PREMIUM GALLERY SECTION
========================================== */

.premium-gallery-section {
  position: relative;
  width: 100%;
  padding: 85px 20px 95px;
  background: #090d12;
  overflow: hidden;
}

.premium-gallery-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ==========================================
   HEADING
========================================== */

.premium-gallery-head {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 45px;
  text-align: center;
}

.premium-gallery-kicker {
  margin-bottom: 13px;

  color: #efb52d;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.premium-gallery-head h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 45px;
  line-height: 1.15;

  font-weight: 500;
}

.premium-gallery-head h2 span {
  color: #efb52d;
}

.premium-gallery-line {
  width: 55px;
  height: 2px;

  margin: 17px auto;

  background: #efb52d;
}

.premium-gallery-head p {
  max-width: 590px;

  margin: 0 auto;

  color: #aeb8c7;

  font-size: 13px;
  line-height: 1.8;
}

/* ==========================================
   GALLERY GRID
========================================== */

.premium-gallery-grid {
  display: grid;

  /* EXACT 4 IMAGES PER ROW */
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

/* ==========================================
   SINGLE IMAGE
========================================== */

.premium-gallery-item {
  position: relative;

  width: 100%;
  height: 340px;

  overflow: hidden;

  cursor: pointer;

  background: #111720;

  border: 1px solid rgba(239, 181, 45, 0.25);

  border-radius: 15px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.premium-gallery-item:hover {
  transform: translateY(-5px);

  border-color: rgba(239, 181, 45, 0.7);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* IMAGE */

.premium-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.premium-gallery-item:hover img {
  transform: scale(1.07);
}

/* ==========================================
   IMAGE OVERLAY
========================================== */

.premium-gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 18px;

  opacity: 0;

  background: linear-gradient(
    to top,
    rgba(5, 8, 12, 0.95) 0%,
    rgba(5, 8, 12, 0.3) 50%,
    rgba(5, 8, 12, 0.1) 100%
  );

  transition: opacity 0.35s ease;
}

.premium-gallery-item:hover .premium-gallery-overlay {
  opacity: 1;
}

/* ==========================================
   PLUS / ZOOM ICON
========================================== */

.premium-gallery-zoom {
  width: 43px;
  height: 43px;

  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #efb52d;

  color: #090d12;

  font-size: 25px;
  font-weight: 400;

  transform: translateY(-10px);

  transition: transform 0.35s ease;
}

.premium-gallery-item:hover .premium-gallery-zoom {
  transform: translateY(0);
}

/* ==========================================
   CAPTION
========================================== */

.premium-gallery-caption {
  transform: translateY(15px);

  transition: transform 0.35s ease;
}

.premium-gallery-item:hover .premium-gallery-caption {
  transform: translateY(0);
}

.premium-gallery-caption span {
  display: block;

  margin-bottom: 5px;

  color: #efb52d;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.premium-gallery-caption h3 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 20px;
  font-weight: 600;
}

/* ==========================================
   POPUP
========================================== */

.premium-gallery-popup {
  position: fixed;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 50px 90px;

  background: rgba(3, 6, 10, 0.96);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* OPEN POPUP */

.premium-gallery-popup.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   POPUP CONTENT
========================================== */

.premium-popup-content {
  position: relative;

  width: auto;
  max-width: 1000px;

  max-height: 88vh;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: scale(0.92);

  transition: transform 0.35s ease;
}

.premium-gallery-popup.active .premium-popup-content {
  transform: scale(1);
}

.premium-popup-content img {
  display: block;

  max-width: 100%;
  max-height: 82vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 12px;

  border: 1px solid rgba(239, 181, 45, 0.4);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

/* ==========================================
   CLOSE BUTTON
========================================== */

.premium-popup-close {
  position: absolute;

  top: 25px;
  right: 30px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border-radius: 50%;

  border: 1px solid rgba(239, 181, 45, 0.45);

  background: #10161e;

  color: #ffffff;

  font-family: Arial, sans-serif;

  font-size: 31px;
  line-height: 1;

  cursor: pointer;

  z-index: 20;

  transition: all 0.3s ease;
}

.premium-popup-close:hover {
  color: #090d12;

  background: #efb52d;

  border-color: #efb52d;

  transform: rotate(90deg);
}

/* ==========================================
   PREVIOUS / NEXT BUTTONS
========================================== */

.premium-popup-arrow {
  position: absolute;

  top: 50%;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  transform: translateY(-50%);

  border-radius: 50%;

  border: 1px solid rgba(239, 181, 45, 0.45);

  background: #10161e;

  color: #ffffff;

  font-size: 22px;

  cursor: pointer;

  z-index: 20;

  transition: all 0.3s ease;
}

.premium-popup-arrow:hover {
  color: #090d12;

  background: #efb52d;

  border-color: #efb52d;
}

.premium-popup-prev {
  left: 30px;
}

.premium-popup-next {
  right: 30px;
}

/* ==========================================
   IMAGE COUNTER
========================================== */

.premium-popup-counter {
  position: absolute;

  left: 50%;
  bottom: 15px;

  transform: translateX(-50%);

  min-width: 60px;

  padding: 7px 13px;

  text-align: center;

  color: #ffffff;

  background: rgba(5, 8, 12, 0.8);

  border: 1px solid rgba(239, 181, 45, 0.4);

  border-radius: 20px;

  font-size: 11px;
  font-weight: 600;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {
  .premium-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-gallery-item {
    height: 380px;
  }

  .premium-gallery-popup {
    padding: 60px 70px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
  .premium-gallery-section {
    padding: 55px 15px 65px;
  }

  .premium-gallery-head {
    margin-bottom: 35px;
  }

  .premium-gallery-kicker {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .premium-gallery-head h2 {
    font-size: 34px;
  }

  .premium-gallery-head p {
    font-size: 12px;
  }

  .premium-gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
  }

  .premium-gallery-item {
    height: 250px;

    border-radius: 11px;
  }

  .premium-gallery-overlay {
    padding: 12px;
  }

  .premium-gallery-zoom {
    width: 35px;
    height: 35px;

    font-size: 20px;
  }

  .premium-gallery-caption h3 {
    font-size: 16px;
  }

  .premium-gallery-popup {
    padding: 70px 15px;
  }

  .premium-popup-close {
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    font-size: 27px;
  }

  .premium-popup-arrow {
    width: 42px;
    height: 42px;

    font-size: 18px;
  }

  .premium-popup-prev {
    left: 10px;
  }

  .premium-popup-next {
    right: 10px;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
  .premium-gallery-head h2 {
    font-size: 30px;
  }

  .premium-gallery-item {
    height: 210px;
  }
}

/* ==================================================
   SERVICE PACKAGES SECTION
================================================== */

.service-packages-section {
  width: 100%;
  position: relative;
  padding: 85px 20px 95px;
  background: #0b0f15;
  overflow: hidden;
}

.service-packages-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ==================================================
   SECTION HEADING
================================================== */

.service-packages-head {
  max-width: 680px;
  margin: 0 auto 45px;
  text-align: center;
}

.service-packages-kicker {
  margin-bottom: 12px;

  color: #e8ad18;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.service-packages-head h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;
  line-height: 1.15;

  font-weight: 600;
}

.service-packages-head h2 span {
  color: #e8ad18;
}

.service-packages-line {
  width: 52px;
  height: 2px;

  margin: 16px auto;

  background: #e8ad18;
}

.service-packages-head p {
  margin: 0;

  color: #9ea8b7;

  font-size: 13px;
  line-height: 1.8;
}

/* ==================================================
   GRID
================================================== */

.service-packages-grid {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

/* ==================================================
   PACKAGE CARD
================================================== */

.service-package-card {
  position: relative;

  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 30px 27px 25px;

  background: #10141a;

  border: 1px solid rgba(232, 173, 24, 0.25);

  border-radius: 12px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.service-package-card:hover {
  transform: translateY(-6px);

  background: #12171f;

  border-color: rgba(232, 173, 24, 0.65);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* ==================================================
   POPULAR CARD
================================================== */

.service-package-card.package-popular {
  border-color: #d99f0b;

  box-shadow: inset 0 0 0 1px rgba(232, 173, 24, 0.08);
}

.package-badge {
  position: absolute;

  top: -10px;
  left: 50%;

  transform: translateX(-50%);

  padding: 5px 16px;

  background: #e8ad18;

  color: #090d12;

  border-radius: 20px;

  font-size: 9px;
  line-height: 1;

  font-weight: 800;

  white-space: nowrap;
}

/* ==================================================
   TITLE
================================================== */

.package-title {
  text-align: center;
}

.package-title h3 {
  margin: 0 0 6px;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 21px;
  line-height: 1.25;

  font-weight: 700;
}

.package-title span {
  display: block;
  color: #e8ad18;
  font-size: 13px;
  line-height: 1.4;
}

/* ==================================================
   PRICE
================================================== */

.package-price {
  margin: 12px 0 7px;

  color: #f0b51f;

  text-align: center;

  font-size: 29px;
  line-height: 1;

  font-weight: 800;
}

.package-custom-price {
  font-size: 27px;
}

/* ==================================================
   SHORT DESCRIPTION
================================================== */

.package-short-text {
  margin-bottom: 20px;

  color: #b7c0cd;

  text-align: center;

  font-size: 10px;
  line-height: 1.6;
}

/* ==================================================
   FEATURES
================================================== */

.package-features {
  margin: 0 0 24px;
  padding: 0;

  list-style: none;
}

.package-features li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #c7cfda;
  font-size: 14px;
  line-height: 1.5;
}

.package-features li:last-child {
  margin-bottom: 0;
}

.package-features li::before {
  content: "◇";

  position: absolute;

  left: 0;
  top: 0;

  color: #e8ad18;

  font-size: 12px;
}

/* ==================================================
   BOOK BUTTON
================================================== */

.package-book-btn {
  width: 100%;
  min-height: 44px;

  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 11px 20px;

  color: #f0b51f;

  background: transparent;

  border: 1px solid rgba(232, 173, 24, 0.55);

  border-radius: 6px;

  text-decoration: none;

  font-size: 11px;
  line-height: 1;

  font-weight: 800;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.package-book-btn:hover {
  color: #090d12;

  background: #e8ad18;

  border-color: #e8ad18;

  transform: translateY(-2px);
}

/* POPULAR CARD BUTTON */

.package-book-active {
  color: #090d12;

  background: #e8ad18;

  border-color: #e8ad18;
}

.package-book-active:hover {
  background: #ffc32c;
  border-color: #ffc32c;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {
  .service-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {
  .service-packages-section {
    padding: 60px 15px 70px;
  }

  .service-packages-head {
    margin-bottom: 38px;
  }

  .service-packages-kicker {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .service-packages-head h2 {
    font-size: 34px;
  }

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

  .service-packages-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .service-package-card {
    min-height: auto;

    padding: 28px 23px 23px;
  }

  .package-title h3 {
    font-size: 22px;
  }

  .package-price {
    font-size: 28px;
  }

  .package-features li {
    font-size: 12px;
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {
  .service-packages-head h2 {
    font-size: 30px;
  }

  .service-package-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.delhi-rate-section {
  background: #0b0d0f;
  padding: 80px 20px;
  color: #fff;
}

.rate-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}

.rate-heading {
  text-align: center;
  margin-bottom: 45px;
}

.rate-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #e5ae1b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.rate-heading h2 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 44px;
  color: #fff;
}

.rate-heading h2 strong {
  color: #e5ae1b;
  font-weight: inherit;
}

.rate-heading p {
  margin: 0;
  color: #8e97a6;
  font-size: 12px;
}

/* PANEL */

.rate-panel {
  position: relative;
  margin-bottom: 28px;
  padding: 34px 34px 28px;
  overflow: hidden;
  background: #111315;
  border: 1px solid rgba(229, 174, 27, 0.34);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.rate-panel:last-child {
  margin-bottom: 0;
}

.rate-panel h3 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 25px;
  color: #e5ae1b;
  font-family: Georgia, serif;
  font-size: 28px;
}

.rate-panel h3 i {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #e5ae1b;
}

/* WATERMARK */

.rate-watermark {
  position: absolute;
  top: 7px;
  right: 30px;
  z-index: 0;
  color: rgba(229, 174, 27, 0.035);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

/* TABLE */

.rate-table-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto;
}

.rate-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.rate-table th {
  padding: 15px 20px;
  text-align: left;
  color: #e5ae1b;
  font-family: Georgia, serif;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(229, 174, 27, 0.32);
}

.rate-table td {
  padding: 18px 20px;
  color: #aeb6c2;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.rate-table td:nth-child(2),
.rate-table td:nth-child(3) {
  color: #e5ae1b;
  font-size: 16px;
  font-weight: 800;
}

.rate-table tbody tr {
  transition: background 0.25s ease;
}

.rate-table tbody tr:hover {
  background: rgba(229, 174, 27, 0.035);
}

/* TABLET */

@media (max-width: 768px) {
  .delhi-rate-section {
    padding: 60px 15px;
  }

  .rate-heading h2 {
    font-size: 35px;
  }

  .rate-panel {
    padding: 27px 20px 22px;
    border-radius: 15px;
  }

  .rate-panel h3 {
    font-size: 24px;
  }

  .rate-watermark {
    right: 15px;
    font-size: 75px;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .rate-heading h2 {
    font-size: 30px;
  }

  .rate-panel {
    padding: 24px 15px 18px;
  }

  .rate-panel h3 {
    font-size: 22px;
  }

  .rate-watermark {
    top: 14px;
    font-size: 55px;
  }

  .rate-table {
    min-width: 560px;
  }

  .rate-table th {
    padding: 13px 14px;
    font-size: 11px;
  }

  .rate-table td {
    padding: 15px 14px;
    font-size: 12px;
  }

  .rate-table td:nth-child(2),
  .rate-table td:nth-child(3) {
    font-size: 14px;
  }
}
