* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Playfair Display', serif;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;

  backdrop-filter: blur(6px);
  background: transparent;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SCROLL EFFECT */
.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  transition: 0.3s;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.header.scrolled .logo {
  color: #333;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #E07A7A;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}


.header.scrolled .nav a {
  color: #0c0c0c;
}

.btn-nav {
  background: #E07A7A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 6px 15px rgba(224,122,122,0.4);
  transition: 0.3s;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(224,122,122,0.5);
}

/* scroll CTA */
.header.scrolled .btn-nav {
  background: #d65f5f;
}

/* TOGGLE */

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

.header.scrolled .menu-toggle {
  color: black;
}

@media (max-width: 768px) {

  /* show hamburger */
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    gap: 0;

    display: none;
  }


  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #000;
  }

  .btn-nav {
    display: none;
  }

  .logo img {
    height: 32px;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('images/banner\ image.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); 
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 900px;
  padding: 20px;
}


.tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: #F4A261;
  margin-bottom: 20px;
}


.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 span {
  color: #E07A7A;
}


.description {
  margin: 20px 0;
  font-size: 16px;
}


.info-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.info-box div {
  background: rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
}


.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary {
  background: #E07A7A;
  padding: 12px 22px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid white;
  padding: 12px 22px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .buttons {
    flex-direction: column;
  }
}

/* GOLDEN TRIANGLE */
.golden-triangle {
  text-align: center;
  padding: 100px 20px;
  background: #f8f6f3;
  width: 100%;
}

.gt-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c77;
}

.golden-triangle h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.sub {
  color: #777;
  max-width: 600px;
  margin: 15px auto 50px;
}

/* TRIANGLE MAP SECTION */
.triangle-wrap {
  max-width: 1100px;
  margin: 0 auto 60px;
}

/* FLEX LAYOUT */
.map-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* CENTER IMAGE */
.map-center img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* SIDE LIST */
.map-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.map-side.left {
  align-items: flex-end;
}

.map-side.right {
  align-items: flex-start;
}


.map-side span {
  background: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  white-space: nowrap;
  transition: 0.3s;
   color: #333;
  border: 1px solid #eee;
}


.map-side span:hover {
  background: #d87b7b;
  color: #fff;
  transform: translateY(-3px);
}

.cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}


.gt-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 100%;
  min-height: 420px;
}


.img {
  position: relative;
}

.img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}


.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #a75402;
  color: #0c0606;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.badge.light {
  background: #f034a1e7;
  color: white;
}

.badge.red {
  background: #f57c00;
  color: #fff;
}


.content {
  padding: 20px;
  text-align: left;
}

.content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.subtext {
  color: #d46a6a;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.section-cta {
  margin-top: 40px;
  text-align: center;
}

.extra-cta {
  display: inline-block;
  margin-top: 25px;
  font-size: 14px;
  color: #333;
  text-decoration: underline;
  transition: 0.3s;
}

.extra-cta:hover {
  color: #d87b7b;
}

.tags span {
  display: inline-block;
  background: #f2ebe5;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin: 5px 5px 0 0;
}

.extra-boxs {
  margin-top: 70px;
  padding: 50px 40px;

  border-radius: 20px;

  width: 100%;
  max-width: 1400px;
  margin-inline: auto;

  text-align: center;
  background: linear-gradient(90deg, #efd4c3, #d9e1ec);
}

.extra-boxs h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.extra-boxs p {
  font-size: 14px;
  color: #6b5b4f;
  max-width: 700px;
  margin: 0 auto;
}

.extra-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.extra-tags span {
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid #e5d6cc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .triangle-wrap {
    max-width: 90%;
  }

  .point img {
    width: 60px;
    height: 60px;
  }

  .extra-boxs {
    padding: 30px 20px;
  }

  .golden-triangle h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {

  .map-flex {
    flex-direction: column;
    gap: 20px;
  }

  .map-side.left {
    order: 1;
  }

  .map-center {
    order: 2;
    width: 100%;
    flex-shrink: 0;
  }

  .map-side.right {
    order: 3;
  }

  /* IMAGE FIX */
  .map-center img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }


  .map-side {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    width: 100%;
  }

  .map-side.left,
  .map-side.right {
    align-items: center;
  }

  .map-side span {
    font-size: 12px;
    padding: 6px 10px;
    display: inline-block;
  }
}



/* DESTINATIONS  */
.destinations {
  text-align: center;
  padding: 60px 20px;
  background: #f8f6f3;
  font-family: 'Playfair Display', serif;
}

.dest-container {
  max-width: 1400px;   
  margin: auto;
  padding: 0 20px;
}

.destination-cta {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
}

.tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #999;
}

.destinations h2 {
  font-size: 42px;
  margin: 10px 0;
}

.dest-badge {
  display: inline-block;
  background: #fff;
  color: #333;

  padding: 6px 16px;
  border-radius: 50px; 

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;

  box-shadow: 0 6px 14px rgba(0,0,0,0.08); 
}

.sub {
  color: #777;
  margin-bottom: 30px;
  max-width: 600px;
  margin-inline: auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap; 
}

.tab {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
}

.tab.active {
  background: #d87b7b;
  color: white;
  border-color: #d87b7b;
}


.content-box {
  display: grid;
  grid-template-columns: 55% 45%; 
  gap: 60px;                       
  padding: 50px;
  border-radius: 20px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: auto;
  transition: 0.4s ease;
}

.left {
  text-align: left;
  max-width: 520px;
}

.badge {
  background: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
}

.left h3 {
  font-size: 34px;
  margin: 15px 0;
}

.left p {
  line-height: 1.7;
  color: #333;
  font-size: 15px;
}


.points-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.points {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.points p {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}


.points p::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #d87b7b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.right {
  display: grid;
  grid-template-rows: auto auto; 
  gap: 18px;
  padding-right: 20px;
}

.main-img {
  width: 100%;
  aspect-ratio: 16/9;   
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


.content-box.delhi .main-img {
  border-color: #e07a5f;
}

/* AGRA  */
.content-box.agra .main-img {
  border-color: #cfd8dc;
}

/* JAIPUR  */
.content-box.jaipur .main-img {
  border-color: #d87b7b;
}

/* JODHPUR  */
.content-box.jodhpur .main-img {
  border-color: #4a6fa5;
}

/* JAISALMER */
.content-box.jaisalmer .main-img {
  border-color: #e0a106;
}

/* UDAIPUR */
.content-box.udaipur .main-img {
  border-color: #5db3a4;
}

/* VARANASI  */
.content-box.varanasi .main-img {
  border-color: #f28c38;
}

.content-box.bikaner .main-img {
  border-color: #b86b3c; /* sandstone brown */
}

.content-box.pushkar .main-img {
  border-color: #e2955c; /* sunset orange */
}

.content-box.ranakpur .main-img {
  border-color: #6fae9b; /* elegant green */
}

.content-box.mandawa .main-img {
  border-color: #c97c5d; /* terracotta accent */
}


.small-imgs img {
  border: 2px solid transparent;
}


.content-box.delhi .small-imgs img { border-color: #e07a5f; }
.content-box.agra .small-imgs img { border-color: #cfd8dc; }
.content-box.jaipur .small-imgs img { border-color: #d87b7b; }
.content-box.jodhpur .small-imgs img { border-color: #4a6fa5; }
.content-box.jaisalmer .small-imgs img { border-color: #e0a106; }
.content-box.udaipur .small-imgs img { border-color: #5db3a4; }
.content-box.varanasi .small-imgs img { border-color: #f28c38; }
.content-box.bikaner .small-imgs img {
  border-color: #b86b3c;
}

.content-box.pushkar .small-imgs img {
  border-color: #e2955c;
}

.content-box.ranakpur .small-imgs img {
  border-color: #6fae9b;
}

.content-box.mandawa .small-imgs img {
  border-color: #c97c5d;
}

.small-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.small-imgs img {
  width: 100%;
  height: 140px; 
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


@media (max-width: 992px) {
  .content-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .left {
    text-align: center;
  }

  .points {
    grid-template-columns: 1fr;
  }
}


.content-box.delhi {
  background: #e7c8b5; 
}

.content-box.agra {
  background: #f1efe9; 
}

.content-box.jaipur {
  background: #e8c4c4; 
}

.content-box.jodhpur {
  background: #d6e2f0; 
}

.content-box.jaisalmer {
  background: #f3d9a5; 
}

.content-box.udaipur {
  background: #d9ece8; 
}

.content-box.varanasi {
  background: #f2c6a0; 
}

.content-box.mandawa {
  background: #ecd6cf;   /* soft fresco pink */
}

.content-box.ranakpur {
  background: #e4efe9;   /* soft sage green */
}

.content-box.pushkar {
  background: #f3d2b8;   /* peach pastel */
}

.content-box.bikaner {
  background: #ead7c3;   /* sandy beige */
}



@media (max-width: 576px) {

  .destinations h2 {
    font-size: 30px;
  }

  .content-box {
    padding: 30px 20px;
    gap: 30px;
  }

  .left h3 {
    font-size: 26px;
  }

  .main-img {
    height: 220px;
  }

  .small-imgs img {
    height: 100px;
  }

  .tab {
    padding: 8px 14px;
    font-size: 13px;
  }
}


/*  TIMELINE  */

.timeline {
  padding: 80px 20px;
  background: #f8f6f3;
  text-align: center;
}

.timeline h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.timeline .tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #b08b6d;
  margin-bottom: 10px;
}

.timeline .sub {
  color: #777;
  margin-bottom: 60px;
  max-width: 600px;
  margin-inline: auto;
}

.timeline-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}


.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e2d7cf;
}


.timeline-item {
  position: relative;
  margin-bottom: 50px;
}


.circle {
  position: absolute;
  left: 20px;
  top: 10px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f57c00, #ff9800);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 2;
}


.card {
  margin-left: 90px;
  background: #fdfaf7;
  border-radius: 16px;
  border: 1px solid #eadfd7;
  overflow: hidden;
  transition: 0.3s;
}

/* hover subtle */
.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.card-header {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  text-align: left;
}

.header-left {
  text-align: left;
}

.date {
  font-size: 13px;
  color: #a67c52;
  margin-bottom: 4px;
}

.city {
  color: #c96b4b;
}

.card-header h3 {
  font-size: 22px;
  margin: 5px 0;
  font-weight: 600;
}

.desc {
  font-size: 14px;
  color: #666;
}


.arrow {
  font-size: 18px;
  margin-top: 10px;
  transition: 0.3s;
}

.card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 30px;
  transition: all 0.4s ease;
  text-align: left;
}


.timeline-item.active .card-body {
  max-height: 1000px;
  opacity: 1;
  padding: 0 30px 30px;
}


.timeline-item.active .arrow {
  transform: rotate(180deg);
}

.card-body img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin: 15px 0 20px;
}


.schedule {
  margin-top: 10px;
}

.schedule .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  align-items: start;
}

.label {
  color: #f57c00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.text {
  color: #2d2d2d;
  line-height: 1.6;
}


.highlight-box {
  background: #f3ebe5;
  padding: 18px;
  border-radius: 14px;
  margin-top: 22px;
}


.highlight-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}


.highlight-title i {
  color: #d87b7b;
  font-size: 14px;
}


.highlight-title span {
  font-size: 14px;
  font-weight: 600;
  color: #3a2f2f;
}


.tags span {
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin: 5px;
  border: 1px solid #e5d6cc;
  display: inline-block;
  transition: 0.2s;
}


.tags span:hover {
  background: #d87b7b;
  color: white;
}

.night {
  margin-top: 18px;
  font-size: 14px;
  color: #444;
}


@media (max-width: 768px) {

  .timeline-wrapper::before {
    left: 20px;
  }

  .circle {
    left: -5px;
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .card {
    margin-left: 50px;
  }

  .schedule .row {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {

  .timeline h2 {
    font-size: 28px;
  }

  .card-header {
    padding: 18px;
  }

  .card-body {
    padding: 0 18px;
  }

  .timeline-item.active .card-body {
    padding: 0 18px 20px;
  }

  .card-body img {
    height: 180px;
  }

}


/* tourdetails */
.tour-details {
  padding: 60px 20px;
  background: #f8f6f3;
  text-align: center;
}

.tour-details .tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  display: block;
}



.tour-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 10px 0;
  text-align: center;
}

.tour-details .sub {
  color: #777;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

/* WRAPPER */
.details-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1150px;
  margin: auto;
  align-items: stretch;
}

/* CARD */
.details-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #eee;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}


.details-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}


.card-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.card-title h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.card-title p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.details-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;   
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-title div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.green {
  background: #e6f6ec;
  color: #2ecc71;
}

.red {
  background: #fdecec;
  color: #e74c3c;
}


.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.item {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #f5fbf7;
}

/* NOT INCLUDED LIST */
.list-item {
  border: 1px solid #f3caca;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #c0392b;
}

.not-included {
  display: flex;
  flex-direction: column;
}

.not-included .note {
  margin-top: auto;   
}

/* NOTE */
.note {
  margin-top: 15px;
  padding: 12px;
  background: #eef4ff;
  border-radius: 10px;
  font-size: 14px;
}

.extra-box {
  margin-top: 40px;
  background: #e7c8b5;
  padding: 30px;
  border-radius: 16px;
  max-width: 1150px;   
  width: 100%;
  margin-inline: auto;
  text-align: start;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.extra-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.extra-box p {
  font-size: 14px;
  color: #5c4a3f;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .details-wrapper {
    grid-template-columns: 1fr;
  }

  .items-grid {
    grid-template-columns: 1fr;
  }
}


/*  PRICING */

.pricing {
  text-align: center;
  padding: 100px 20px;
  background: #f8f6f3;
  font-family: 'Playfair Display', serif;
}

.pricing .tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #c77;
  margin-bottom: 10px;
}

.pricing h2 {
  font-size: 46px;
  margin-bottom: 10px;
}

.pricing .sub {
  color: #777;
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 15px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD BASE */
.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  width: 340px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  position: relative;
  transition: 0.3s;
}

.price-card.featured {
  border: 2px solid #d87b7b;
  transform: translateY(-10px);
}


.top {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}


.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.icon-circle.pink {
  background: #f4d6d6;
  color: #c96b6b;
}

.icon-circle.blue {
  background: #d6e4f4;
  color: #4a6fa5;
}


.title h3 {
  font-size: 18px;
  margin: 0;
}

.title p {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}


.popular {
  position: absolute;
  right: 0;
  top: -10px;
  background: #d87b7b;
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
}

/*  PRICE  */

.price {
  margin: 20px 0;
}

.price h1 {
  font-size: 38px;
  margin: 0;
}

.price span {
  font-size: 14px;
  color: #666;
}

.inr {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-card ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
  position: relative;
  padding-left: 22px;
}


.price-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d87b7b;
  font-size: 13px;
}

/* BLUE CHECK */
.blue-list li::before {
  color: #4a6fa5;
}

/*  BUTTON */

.btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Playfair Display', serif;
   display: inline-block;        
  text-decoration: none;        
  text-align: center;
}

/* PRIMARY */
.btn.primary {
  background: #d87b7b;
  color: white;
  border: none;
}

.btn.primary:hover {
  background: #c56a6a;
}

/* OUTLINE */
.btn.outline {
  background: transparent;
  border: 1px solid #4a6fa5;
  color: #4a6fa5;
}

.btn.outline:hover {
  background: #4a6fa5;
  color: white;
}

.price-card:hover {
  transform: translateY(-5px);
}


@media (max-width: 900px) {
  .pricing h2 {
    font-size: 36px;
  }

  .price-card {
    width: 100%;
    max-width: 420px;
  }
}


@media (max-width: 480px) {

  .pricing {
    padding: 70px 15px;
  }

  .pricing h2 {
    font-size: 28px;
  }

  .price-card {
    padding: 20px;
  }

  .price h1 {
    font-size: 30px;
  }

  .title h3 {
    font-size: 16px;
  }

  .top {
    flex-direction: row;
    align-items: flex-start;
  }

  .popular {
    top: -12px;
    font-size: 10px;
  }
}


/* EXTRA  */

.pricing-extra {
  padding: 80px 20px;
  background: #f8f6f3;
  text-align: center;
}

/* INCLUDED BOX  */

.included-box {
  max-width: 1100px;
  margin: auto;
  background: #efe6df;
  padding: 40px;
  border-radius: 20px;
}

.included-box h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: left;
}

.included-grid p {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: #333;
}


.included-grid p::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #f28c38;
  font-size: 14px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.feature {
  max-width: 220px;
}


.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 12px;
  font-size: 18px;
}


.icon.orange {
  background: #fde6d2;
  color: #f28c38;
}

.icon.blue {
  background: #dbe9f6;
  color: #4a6fa5;
}

.icon.red {
  background: #f4d6d6;
  color: #d87b7b;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 13px;
  color: #777;
}

/*  CTA */
.cta-box {
  max-width: 800px;
  margin: auto;
  background: linear-gradient(135deg, #d87b7b, #b85c4a);
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #fbeeee;
}

.cta-box .date {
  font-size: 13px;
  opacity: 0.9;
   color: #fbeeee;
}

@media (max-width: 992px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    gap: 40px;
  }
}


@media (max-width: 576px) {

  .included-box {
    padding: 25px 20px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .features {
    flex-direction: column;
    gap: 30px;
  }

  .cta-box {
    padding: 25px;
  }

  .cta-box h3 {
    font-size: 18px;
  }
}


.custom-footer {
  background: #072c3f;
  color: #f5c542;
  padding: 60px 20px;
    font-family: 'Playfair Display', serif;
  text-align: center;
}

.footer-center {
  max-width: 800px;
  margin: auto;
}

.namaste-icon {
  width: 70px;
  margin-bottom: 15px;
}

.footer-center h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-center h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 400;
}

.footer-center p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}

.custom-footer hr {
  border: 0.5px solid rgba(255,255,255,0.2);
  margin: 40px 0;
}

