:root {
  --xi-blue: #059BD8;
  --xi-blue-dark: #0278AC;
  --xi-orange: #F7941D;
  --orange: #F7941D;
  --xi-orange-dark: #D97909;
  --xi-grey: #7B7E82;
  --ink: #17212B;
  --muted: #687481;
  --soft-blue: #EAF8FE;
  --soft-orange: #FFF3E3;
  --cream: #FFFDF8;
  --line: #E7EDF2;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(16, 34, 54, .14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}

.eyebrow {
  color: var(--xi-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.20;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 6vw, 63px);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(30px, 4vw, 32px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 21px;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 28px;
  min-height: 40px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #059BD8 0%, #0278AC 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(5, 155, 216, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(5, 155, 216, 0.35);
}

.btn-orange {
  background: linear-gradient(135deg, #F7941D 0%, #D97909 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(247, 148, 29, 0.25);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(247, 148, 29, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: white;
  border-color: rgba(255, 255, 255, .32);
  backdrop-filter: blur(10px);
}

.btn-outline {
  background: #fff;
  color: var(--xi-blue);
  border: 1px solid #d9e7f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* HORIZONTAL BOOKING BAR */
.booking-wrap {
  position: relative;
  z-index: 10;
  margin-top: -55px
}

.booking-bar {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: end;
}

.booking-bar .btn {
  height: 50px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.booking-title {
  display: none
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field input,
.field select,
.btn {
  height: 50px;
  box-sizing: border-box;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 42px;
}

.trust-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px
}

.trust-mini div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue-dark)
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.quick-item,
.card,
.review,
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(20, 44, 65, .06)
}

.quick-item {
  padding: 24px;
  text-align: center
}

.quick-item .material-icons {
  font-size: 34px;
  color: var(--orange);
  margin-bottom: 8px
}

.quick-item strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--ink)
}

.quick-item span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  margin-top: 6px
}

/* Search Bar */
.search-bar {
  position: relative;
  width: 20%;
  max-width: 420px;
}

.search-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #059BD8;
  z-index: 2;
  pointer-events: none;
  transition: all .25s ease;
}

.search-icon path {
  stroke: currentColor;
}

.search-bar input {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 48px;
  border: 1px solid #E7EDF2;
  border-radius: 999px;
  background: #FFFFFF;
  color: #1F2937;
  font-size: 14px;
  outline: none;
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.search-bar input::placeholder {
  color: #94A3B8;
}

/* Hover */
.search-bar:hover input {
  border-color: #059BD8;
  box-shadow: 0 8px 20px rgba(5, 155, 216, .12);
}

.search-bar:hover .search-icon {
  color: #059BD8;
  transform: translateY(-50%) scale(1.08);
}

/* Focus */
.search-bar input:focus {
  border-color: #059BD8;
  box-shadow:
    0 8px 20px rgba(5, 155, 216, .12),
    0 0 0 4px rgba(5, 155, 216, .08);
}

.search-bar input:focus~.search-icon,
.search-bar:focus-within .search-icon {
  color: #059BD8;
  transform: translateY(-50%) scale(1.08);
}

.btn-outline:hover {
  background: var(--xi-blue);
  color: #fff;
  border-color: var(--xi-blue);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transition: 0.6s;
}

.btn:hover::before {
  left: 120%;
}

.btn:hover {
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 237, 242, .7);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 130px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 35px;
  font-size: 14px;
  font-weight: 750;
  color: #344150;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}


.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--xi-blue);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-icon-btn:hover {
  background: var(--xi-blue);
  color: white;
  border-color: var(--xi-blue);
  transform: translateY(-2px);
}


.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 130px 0 92px;
  background:
    linear-gradient(90deg, rgba(11, 22, 33, .82) 0%, rgba(11, 22, 33, .45) 30%, rgba(11, 22, 33, .22) 80%),
    url('../img/tranquil-haven-kotagiri-private-villa-xplore-indo.webp') center top 10px/cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px -10%;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), var(--cream) 68%);
  pointer-events: none;
}

.hero-copy h1 {
  max-width: 500px;
  width: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .72fr;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  color: white;
  max-width: 760px;
}

.hero-copy p {
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  max-width: 650px;
  margin-top: 20px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 32px;
}

.hero-tags span {
  background: rgba(255, 255, 255, .14);
  color: white;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.availability {
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .72);
}

.availability h3 {
  margin-bottom: 6px;
}

.availability p {
  font-size: 14px;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 850;
  color: #53606D;
  text-transform: uppercase;
  letter-spacing: .06em;
}

input,
select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid #cdd3d8;
  background: #FAFCFE;
  font: inherit;
  color: var(--ink);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.trust-row div {
  background: var(--soft-blue);
  padding: 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--xi-blue-dark);
  text-align: center;
}

section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 620px;
  margin-top: 12px;
}




/* Attraction Card Styles */
#nearby-villas {
  padding: 50px 0;
}

#nearby-villas .section-head {
  margin-bottom: 20px;
}

.attraction-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border-left: 4px solid var(--xi-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: auto;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.attraction-header img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.attraction-header {
  gap: 8px;
  margin-bottom: 10px;
}



.attraction-header .material-icons {
  font-size: 28px;
  color: var(--xi-blue);
  flex-shrink: 0;
}

.attraction-header h3 {
  font-size: 17px;
  line-height: 1.3;
}


.attraction-header .distance {
  font-size: 11px;
  background: rgba(5, 155, 216, 0.08);
  color: var(--xi-blue);
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.attraction-card p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.attraction-features {
  margin-bottom: 10px;
}

.attraction-features .material-icons {
  font-size: 18px;
  color: var(--xi-orange);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  align-self: flex-start;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(20, 44, 65, .06);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(5, 155, 216, .15);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-orange));
  margin-bottom: 16px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.icon.material-icons {
  color: var(--xi-blue);
  font-size: 28px;
}

.card:hover .icon {
  background: linear-gradient(135deg, var(--xi-blue), var(--xi-orange));
  color: white;
  transform: scale(1.05);
}

/* Carousel styling */
.carousel-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0px;
  scrollbar-width: none;
}


.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 250px;
  /* Mobile override needs min-width: 0 — set in media query */
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--xi-blue);
  transition: all 0.2s ease;
  font-size: 18px;
}

.carousel-btn:hover {
  background: var(--xi-blue);
  color: white;
  border-color: var(--xi-blue);
}

.quick-bar {
  margin-top: -46px;
  position: relative;
  z-index: 5;
}

.quick-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
}



.quick-card div {
  padding: 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quick-card div:last-child {
  border-right: 0;
}

.quick-card strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.quick-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.quick-card .material-icons {
  font-size: 32px;
  color: var(--xi-orange);
  margin-bottom: 8px;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(20, 44, 65, .06);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(5, 155, 216, .15);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-orange));
  margin-bottom: 16px;
  font-size: 22px;
}

.icon.material-icons {
  color: var(--xi-blue);
  font-size: 28px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 480px;
}

.image-stack img {
  position: absolute;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  inset: 0 15% 16% 0;
  width: 72%;
  height: 72%;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 58%;
  border: 8px solid var(--cream);
}

.list-check {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.list-check li {
  list-style: none;
  display: flex;
  gap: 12px;
  color: #40505E;
  font-weight: 650;
}

.list-check li::before {
  content: "✓";
  color: var(--xi-orange);
  font-weight: 950;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery img:first-child {
  grid-row: 1 / 3;
}

.room-card,
.villa-card {
  overflow: hidden;
  padding: 0;
}

.room-card img,
.villa-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.room-card .pad,
.villa-card .pad {
  padding: 22px;
}

.mini-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.mini-meta span {
  background: var(--soft-blue);
  color: var(--xi-blue-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  font-weight: 750;
  color: #40505E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity:hover {
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-orange));
  border-color: var(--xi-blue);
}

.amenity .material-icons {
  color: var(--xi-orange);
  font-size: 24px;
}

.blue-section {
  background: linear-gradient(135deg, #EAF8FE, #FFF7EC);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72));
}

.experience-card>* {
  position: relative;
  z-index: 1;
}

.experience-card p {
  color: rgba(255, 255, 255, .82);
}

.review {
  background: white;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
}

.stars {
  color: var(--xi-orange);
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 10px;
}

.map-box {
  min-height: 420px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(5, 155, 216, .85), rgba(247, 148, 29, .75)),
    url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1400&q=80') center/cover;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  padding: 30px;
}

.distance-table {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.distance-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.distance-table div:last-child {
  border-bottom: 0;
}

.distance-table strong {
  color: var(--ink);
}

.distance-table span {
  color: var(--muted);
  font-weight: 750;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-top: 10px;
}

.seo-content {
  columns: 2;
  column-gap: 46px;
  color: var(--muted);
}

.seo-content h3 {
  color: var(--ink);
  margin: 0 0 12px;
  break-after: avoid;
}

.seo-content p {
  margin: 0 0 18px;
}

.footer {
  background: #101923;
  color: white;
  padding: 58px 0 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 30px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .72);
}

.footer img {
  width: 210px;
  background: white;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 18px;
}

/* FLOATING BAR - VERTICAL ICONS ON RIGHT */
.floating-bar {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.floating-bar-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.floating-bar-text {
  display: none;
}

.floating-bar-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn-float {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 24px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-float-primary {
  background: #0066cc;
  color: white;
}

.btn-float-primary:hover {
  background: #0052a3;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.btn-float-orange {
  background: #25d366;
  color: white;
}

.btn-float-orange:hover {
  background: #1fa851;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-minimize {
  display: none;
}

.btn-minimize:hover {
  color: var(--xi-blue);
}

.floating-bar.minimized .btn-minimize .material-icons:first-child {
  display: none;
}

.floating-bar:not(.minimized) .btn-minimize .material-icons:last-child {
  display: none;
}

.color-guide {
  background: white;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--line);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.swatch {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.swatch div {
  height: 76px;
}

.swatch span {
  display: block;
  padding: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #40505E;
}

/* Header Responsive Adjustments */
@media (min-width: 981px) {

  /* On desktop, hide redundant call button since text phone number is visible */
  .nav-actions .nav-icon-btn:not(.whats-app-btn) {
    display: none !important;
  }
}

@media (max-width: 1150px) and (min-width: 981px) {

  /* Reduce nav bar gaps to prevent overflow on medium screens (e.g. 1024px) */
  .nav-links {
    gap: 20px;
  }

  .nav-actions {
    gap: 10px;
  }

  .phone-no {
    font-size: 13px;
  }

  .nav-actions .btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .availability {
    max-width: 620px;
  }

  .quick-grid,
  .cards-4,
  .cards-3,
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking bar stack on tablets */
  .booking-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-bar button[type="submit"] {
    grid-column: span 2;
  }

  /* Mobile/Tablet header visibility rules */
  .phone-no {
    display: none !important;
  }

  .nav-actions .nav-icon-btn {
    display: inline-flex !important;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }

  .gallery img:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .seo-content {
    columns: 1;
  }
}

@media (max-width: 640px) {

  /* ─── Navigation ─── */
  .nav-actions .btn-outline,
  .nav-actions .btn-orange {
    display: none !important;
  }

  .brand img {
    width: 140px;
  }

  /* ─── Hero ─── */
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p {
    font-size: 15px;
    margin-top: 14px;
    line-height: normal;
  }

  .hero-tags {
    gap: 7px;
    margin: 14px 0 20px;
  }

  .hero-tags span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ─── Sections ─── */
  section {
    padding: 40px 0;
  }

  /* ─── Booking Bar — full single column on mobile ─── */
  .booking-wrap {
    margin-top: 20px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .booking-bar .field,
  .booking-bar button[type="submit"] {
    grid-column: span 1;
    width: 100%;
  }

  .booking-bar .field input,
  .booking-bar .field select {
    width: 100%;
    box-sizing: border-box;
  }

  /* ─── Quick Info Grid (4 icons below hero) ─── */
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .quick-item {
    padding: 16px 12px;
  }

  .quick-item strong {
    font-size: 18px;
  }

  /* ─── Cards ─── */
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* ─── Quick Card bar ─── */
  .quick-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  /* ─── Gallery ─── */
  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    gap: 10px;
  }

  .gallery img:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  /* ─── Carousel — 1 card at a time on mobile ─── */
  .carousel-wrapper {
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .carousel-item {
    flex: 0 0 calc(100vw - 52px) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 52px);
    scroll-snap-align: start;
  }

  .room-card img,
  .villa-card img {
    height: 200px;
  }

  /* ─── Section Heads: title left, arrows right, same row ─── */
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-head>div:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  .section-head .carousel-controls {
    margin-left: auto;
    flex-shrink: 0;
    align-self: flex-end;
  }

  .section-head h2 {
    font-size: clamp(19px, 5.5vw, 26px);
  }

  /* ─── Floating Action Buttons — stay fixed right, DON'T become full-width ─── */
  .floating-bar {
    right: 12px;
    bottom: 70px;
    gap: 12px;
    width: auto;
  }

  .btn-float {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  /* ─── Split layout ─── */
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .image-stack {
    min-height: 280px;
  }

  /* ─── Footer ─── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.google-reviews {
  margin-top: 20px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.google-score {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.google-stars {
  color: var(--xi-orange);
  font-size: 22px;
  letter-spacing: 2px;
}

.google-count {
  font-size: 14px;
  color: var(--muted);
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-item .stars {
  color: var(--xi-orange);
  margin-bottom: 8px;
  font-size: 16px;
}

.review-item p {
  margin: 0;
  line-height: 1.6;
}

.review-item strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
}

.google-review-btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {

  .google-rating {
    text-align: center;
    justify-content: center;
  }

  .google-score {
    font-size: 42px;
  }

  .google-stars {
    font-size: 20px;
  }
}

#rooms .section-head h3 {
  max-width: 80%;
}

#overview .section-head h3 {
  max-width: 80%;
}

.carousel-item.stay-carousel-item {
  flex: 0 0 calc(33% - 15px);
}

/* UPDATED MAP / ROUTE GUIDE SECTION */
.route-guide-section {
  padding: 82px 0;
  background: radial-gradient(circle at top, #FFFDF8 0%, #F8FAF6 48%, #FFFDF8 100%);
}

.route-title {
  text-align: center;
  margin-bottom: 34px;
}

.route-title h2 {
  font-size: clamp(32px, 5vw, 32px);
  font-weight: 700;
  color: #183124;
  letter-spacing: -.02em;
}

.route-title p {
  margin-top: 10px;
  font-size: 18px;
  color: #4f5458;
}

.route-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(20, 35, 30, .10);
  display: grid;
  grid-template-columns: 1.95fr .95fr;
  gap: 22px;
}

.map-panel {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #eaf4ec;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(.85) contrast(.96) brightness(1.04);
}

.map-distances {
  position: absolute;
  left: 24px;
  bottom: 76px;
  width: min(620px, calc(100% - 48px));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  overflow: hidden;
}

.map-distance-item {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid #E3E4DE;
}

.map-distance-item:last-child {
  border-right: 0
}

.map-distance-item .material-icons {
  color: #183d2a;
  margin-bottom: 8px;
  font-size: 24px;
}

.map-distance-item strong {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 8px;
  min-height: 40px;
}

.map-distance-item span {
  display: block;
  font-size: 14px;
  color: #222;
  line-height: 1.35;
}

.map-btn {
  position: absolute;
  left: 24px;
  bottom: 22px;
  background: #174F2D;
  color: #fff;
  border-radius: 8px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(23, 79, 45, .25);
}

.route-info {
  border-left: 1px solid #E3E4DE;
  padding: 12px 12px 12px 4px;
}

.route-tip {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 8px;
  border-bottom: 1px solid #E3E4DE;
}

.route-tip:last-child {
  border-bottom: 0
}

.route-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #EEF1E5;
  display: grid;
  place-items: center;
  color: #174F2D;
}

.route-icon .material-icons {
  font-size: 31px
}

.route-tip h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 7px;
  color: #171717;
}

.route-tip p {
  color: #414141;
  font-size: 16px;
  line-height: 1.55;
}

.help-box {
  margin: 16px 6px 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EEF1E5, #F7F5E9);
  padding: 22px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.help-box .material-icons {
  font-size: 30px;
  color: #174F2D
}

.help-box h3 {
  font-size: 20px;
  font-weight: 500
}

.help-box p {
  font-size: 14px;
  margin: 4px 0;
  color: #3e443f
}

.help-box strong {
  font-size: 20px;
  color: #17212b
}

.padding-top-0 {
  padding-top: 0 !important;
}

.phone-no {
  font-weight: 600;
}

.whats-app-img {
  max-width: 30px;
}

.whats-app-img-green {
  max-width: 24px;
}

.whats-app-btn:hover {
  background: #d8ffe7 !important;
  border: 1px solid #d8ffe7 !important;
}

.attraction-card p {
  min-height: 75px;
}

.review p {
  min-height: 115px;
}

/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Blog Section Styling */
#blog {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fbfbf9;
  /* Soft premium off-white background matching the screenshot */
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-container img {
  transform: scale(1.05);
}

/* Tag badge top-left */
.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #073B25;
  /* Dark Forest Green from the screenshot */
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

/* Read time badge bottom-right overlapping the image */
.blog-read-time {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-read-time .material-icons {
  font-size: 13px;
  color: #64748b;
}

/* Content Area */
.blog-card .pad {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  margin: 0 0 10px 0;
  transition: color 0.2s ease;
}

.blog-card:hover h3 {
  color: #073B25;
}

.blog-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Read Guide Link with micro-animation */
.blog-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.blog-link span.arrow {
  transition: transform 0.2s ease;
  font-weight: 500;
}

.blog-link:hover {
  color: #073B25;
}

.blog-link:hover span.arrow {
  transform: translateX(4px);
}

/* Carousel layouts custom sizes for Blog Section */
#blog .carousel-item {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 320px;
}

#blog .section-head h2 {
  max-width: 60%;
}

@media (max-width: 980px) {
  #blog .carousel-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  #blog .carousel-item {
    flex: 0 0 100%;
  }
}

/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Blog Section Styling */
#blog {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fbfbf9;
  /* Soft premium off-white background matching the screenshot */
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-container img {
  transform: scale(1.05);
}

/* Tag badge top-left */
.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #073B25;
  /* Dark Forest Green from the screenshot */
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

/* Read time badge bottom-right overlapping the image */
.blog-read-time {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-read-time .material-icons {
  font-size: 13px;
  color: #64748b;
}

/* Content Area */
.blog-card .pad {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card h3 {

  /* Premium serif font matching the screenshot */
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  margin: 0 0 10px 0;
  transition: color 0.2s ease;
}

.blog-card:hover h3 {
  color: #073B25;
}

.blog-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Read Guide Link with micro-animation */
.blog-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.blog-link span.arrow {
  transition: transform 0.2s ease;
  font-weight: 500;
}

.blog-link:hover {
  color: #073B25;
}

.blog-link:hover span.arrow {
  transform: translateX(4px);
}

/* Carousel layouts custom sizes for Blog Section */
#blog .carousel-item {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 320px;
}

@media (max-width: 980px) {
  #blog .carousel-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  #blog .carousel-item {
    flex: 0 0 100%;
  }
}

/* ==========================================
   CONTACT POPUP MODAL STYLING
   ========================================== */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(11, 22, 33, 0.6);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.contact-modal-content {
  background-color: #ffffff;
  padding: 40px 30px 30px;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-modal-close {
  position: absolute;
  right: 24px;
  top: 20px;
  color: #94a3b8;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
}

.contact-modal-close:hover {
  color: #ef4444;
  background: #fee2e2;
  transform: rotate(90deg);
}

.contact-modal-title {
  font-weight: 750;
  font-size: 24px;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.02em;
}

.contact-modal-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  letter-spacing: -0.01em;
}

.contact-field input {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.25s ease;
  background: #f8fafc;
  height: 48px;
  box-sizing: border-box;
}

.contact-field input:focus {
  border-color: #059BD8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(5, 155, 216, 0.1);
}

.contact-modal-content .btn-orange {
  height: 50px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.contact-modal-content .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
}

.common-h2 {
  font-size: clamp(30px, 4vw, 32px);
  letter-spacing: -0.01em;
}

@media (max-width: 1150px) and (min-width: 981px) {
  .room-card .pad h3 {
    font-size: 18px;
  }

  #rooms .room-card .pad {
    min-height: 200px;
  }

  #rooms .section-head h2 {
    max-width: 70%;
  }

  .amenity {
    padding: 10px 12px;
    font-size: 14px;
  }

  .blue-section .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .mini-meta span {
    font-size: 10px;
  }

  #experiences1 .room-card .pad {
    min-height: 360px;
  }

  #experiences1 h2 {
    max-width: 70%;
  }

  #blog .section-head h2 {
    max-width: 70%;
  }
}

@media (max-width: 980.9px) and (min-width: 768px) {
  section {
    padding: 60px 0;
  }

  #overview .section-head h2 {
    max-width: 100%;
  }

  #gallery .gl-l-section {
    max-width: 60%;
  }

  #rooms .section-head h2 {
    max-width: 90%;
  }

  #rooms .room-card .pad {
    min-height: 285px;
  }

  .attraction-card p {
    min-height: 115px;
  }

  .mini-meta span {
    font-size: 10px;
  }

  #experiences1 .room-card .pad {
    min-height: 375px;
  }
}

@media (max-width:767px) {
  #overview .section-head h2 {
    max-width: 100%;
  }


  h2,
  .common-h2 {
    font-size: clamp(21px, 4vw, 32px);
  }

  #rooms .section-head h3 {
    max-width: 100%;
    font-size: 19px;
  }

  #rooms .room-card h3 {
    font-size: 18px;
  }

  #rooms .room-card .pad {
    min-height: 195px;
  }

  .amenity {
    padding: 12px;
    font-size: 13px;
    line-height: normal;
  }

  .color-guide {
    padding: 20px;
  }

  #blog .section-head h2 {
    max-width: 100%;
  }

  .route-card {
    display: block;
  }

  .map-panel {
    min-height: 350px !important;
    height: 350px !important;
    margin-bottom: 24px;
  }

  .map-panel iframe {
    min-height: 350px !important;
    height: 350px !important;
  }

  .map-distances {
    display: none;
  }

  .map-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .help-box strong {
    font-size: 18px;
  }

  .route-info {
    border-left: 0 !important;
  }

  .route-tip {
    grid-template-columns: 45px 1fr;
    gap: 18px;
  }

  .route-icon {
    width: 44px;
    height: 44px;
  }

  .route-icon .material-icons {
    font-size: 26px;
  }

  #gallery .section-head {
    flex-wrap: wrap;
  }
}

.footer h3 {
  margin-bottom: 10px;
}

.footer {
  padding: 50px 0 35px;
}

.footer {
  background: #111820;
  color: #d8dde5;
  padding: 60px 0 20px
}


.footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.4fr;
  gap: 40px
}

.footer .logo {
  font-size: 44px;
  font-weight: 700
}

.footer .logo .x {
  color: #2a8be8
}

.footer .logo .i {
  color: #f39a27
}

.footer .logo small {
  display: block;
  letter-spacing: 4px;
  color: #fff;
  font-size: 12px;
  margin-top: 4px
}

.footer h4 {
  color: #fff;
  margin: 0 0 20px;
  font-size: 22px
}

.footer h4:after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #d8a23b;
  margin-top: 10px
}

.footer p {
  line-height: 1.8
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer li {
  margin: 14px 0
}

.footer a {
  color: #d8dde5;
  text-decoration: none
}

.footer a:hover {
  color: #d8a23b
}

.footer .features {
  margin-top: 40px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.footer .feature {
  display: flex;
  align-items: center;
  gap: 15px
}

.footer .feature i {
  font-size: 34px;
  color: #d8a23b
}

.footer .feature b {
  display: block;
  color: #fff
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 15px
}

.footer .links a {
  margin-right: 24px
}

.footer .social a {
  margin-left: 18px;
  font-size: 24px;
  color: #fff
}

.footer .social a:hover {
  color: #d8a23b
}

.footer .copy {
  text-align: center;
  color: #aab2bc;
  margin-top: 20px
}

@media(max-width:900px) {

  .footer .grid,
  .footer .features {
    grid-template-columns: 1fr
  }

  .footer .bottom {
    flex-direction: column
  }

  .route-title h2 {
    font-size: clamp(25px, 5vw, 24px);
  }

  .route-title p {
    font-size: 16px;
  }
}

/* ─── Trending Breadcrumb Card ─── */
.hero-aside {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  max-width: 380px;
  justify-self: end;
  align-self: end;
  margin-bottom: 8px;
}

.trending-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.2), rgba(247, 148, 29, 0.35));
  border: 1px solid rgba(247, 148, 29, 0.4);
  color: #f7941d;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  align-self: flex-start;
}

.trending-badge .star-pulse {
  font-size: 15px;
  animation: pulse 2s infinite alternate;
}

.breadcrumb-trending {
  font-family: 'Montserrat', sans-serif;
}

.breadcrumb-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumb-path a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-path a:hover {
  color: #f7941d;
}

.breadcrumb-path .sep {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb-path .current {
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-aside {
    display: none !important;
  }
}

.blue-section .cards-4 h3 {
  min-height: 60px;
}