
:root {
  --gold: #00a9eb;
  --gold-dark: #007bb8;
  --green: #080282;
  --red: #0087c8;
  --maroon: #080282;
  --navy: #101a3d;
  --text: #243142;
  --muted: #687384;
  --cream: #eaf8fe;
  --light: #f2faff;
  --white: #fff;
  --line: #bfe7f7;
  --shadow: 0 16px 42px rgba(0, 71, 118, .16);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.section {
  padding: 84px 0
}

.section.soft {
  background: var(--light)
}


/* youtube section */
.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}
.place-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  height: 280px
}

.section {
  padding: 80px 0
}

.section.soft {
  background: var(--light)
}

.section-title {
  text-align: center;
  margin-bottom: 40px
}

.section-title span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #050b14;
  line-height: 1.2;
  margin: 8px 0 12px
}

.section-title p {
  max-width: 760px;
  margin: auto;
  color: var(--muted)
}

.patterned {
  background-color: #eff9fd;
  background-image: radial-gradient(rgba(0, 169, 235, .10) 1px, transparent 1px);
  background-size: 22px 22px
}

.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase
}

.section-title {
  text-align: center;
  margin-bottom: 42px
}

.section-title span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: #050b14;
  line-height: 1.18;
  margin: 8px 0 12px
}

.section-title p {
  max-width: 760px;
  margin: auto;
  color: var(--muted)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s;
  font-size: 14px
}

.btn-gold {
  background: var(--gold);
  color: #111
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px)
}

.btn-green {
  background: var(--green);
  color: #fff
}

.btn-green:hover {
  background: #05006d;
  transform: translateY(-2px)
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent
}

.btn-outline:hover {
  background: #fff;
  color: #111
}

.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: .4s
}

.loader.hide {
  opacity: 0;
  visibility: hidden
}

.loader-box {
  text-align: center
}

.loader-logo {
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .5px
}

.loader-line {
  height: 4px;
  width: 170px;
  background: #eee;
  border-radius: 20px;
  margin-top: 12px;
  overflow: hidden
}

.loader-line::after {
  content: "";
  display: block;
  height: 100%;
  width: 50%;
  background: var(--gold);
  animation: load 1s infinite
}

@keyframes load {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(220%)
  }
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--green);
  width: 0;
  z-index: 9998
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 169, 235, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: .3s
}

.header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, .16)
}

.nav {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  height: 76px;
  min-width: 100px;
 padding: 10px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .55)
}

.brand strong {
  font-size: 29px;
  line-height: 1;
  font-weight: 800
}

.brand-icon {
  height: 95px;
  padding: 10px 0;
  width: auto;
}

.brand small {
  font-family: Georgia, serif;
  color: #ffea73;
  font-style: italic;
  margin-top: 7px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  
}

.nav-link {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  position: relative;
  padding: 26px 0
}

.nav-link.active,
.nav-link:hover {
  color: #fff
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: #080282;
  transition: .3s
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 0 0 14px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s;
  overflow: hidden
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu a {
  display: block;
  padding: 13px 18px;
  font-weight: 600;
  border-bottom: 1px solid #dceff7;
  color: #17202d
}

.dropdown-menu a:hover {
  background: #e8f8fe;
  color: #000
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer
}

.book-top {
  padding: 10px 18px;
  border-radius: 10px;
  background: #080282;
  color: #fff !important;
  font-weight: 400;
  text-transform: uppercase
}

.book-top:hover {
  background: #05006d
}

.book-top::after {
  display: none
}

main {
  padding-top: 76px
}

.hero {
  min-height: calc(90vh - 76px);
  display: flex;
  align-items: center;
  color: #fff
}

.heritage-hero {
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .38), rgba(0, 0, 0, .06)), url('../images/temples/temple-hero.jpg') center/cover no-repeat
}

.hero-grid {
  display: grid;
  width: "100%";
  height: 100%;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 32px
}

.hero-content {
  max-width: 720px;
  background: rgba(0, 0, 0, .45);
  padding: 38px;
  border-left: 6px solid var(--gold);
  border-radius: 2px 22px 22px 2px;
  backdrop-filter: blur(4px)
}

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  text-transform: uppercase
}

.hero p {
  font-size: 18px;
  margin: 18px 0 26px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-mini-card {
  justify-self: end;
  width: 260px;
  background: rgba(255, 255, 255, .92);
  color: #111;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 169, 235, .45)
}

.hero-mini-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 14px
}

.hero-mini-card b {
  display: block;
  font-size: 22px
}

.hero-mini-card span {
  color: var(--muted);
  font-weight: 600
}

.banner {
  height: 500px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .24))
}

.banner .container {
  position: relative
}

.banner h1 {
  font-size: clamp(34px, 6vw, 60px);
  text-transform: uppercase
}

.banner p {
  max-width: 650px;
  font-size: 18px;
  margin-top: 8px
}

.hero {
  background-image: url('../images/gallery/front4.jpg')

}

.temple-banner {
  background-image: url('../images/gallery/AiravateswararTemple.jpg')
}

.events-banner {
  background-image: url('../images/gallery/img/3.jpg')
}

.places-banner {
  background-image: url('../images/gallery/img/mahamagam.jpg')
}

.reservation {
    background-image: url('../images/gallery/front1.jpg')
}
.rooms-banner{
  background-image: url('../images/gallery/room8.jpg')
}

.facilities-banner {
  background-image: url('../images/gallery/r00m-6.jpg')
}

.contact-banner {
  background-image: url('../images/gallery/img/contactus.jpeg')
}

.hotel-switch {
  background: #fff;
  padding: 80px 0
}

.hotel-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.hotel-card {
  --main-color: #9b0000;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  color: #222;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  transition: .35s;
  position: relative;
  border: 1px solid #eee
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .18)
}

.hotel-card.red {
  --main-color: #9b0000
}

.hotel-card.blue {
  --main-color: #079bd0
}

.hotel-card.gold {
  --main-color: #d6a900
}

.hotel-card-image {
  height: 220px;
  overflow: hidden;
  position: relative
}

.hotel-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .45))
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.08)
}

/* Common hotel logo position */
.hotel-logo {
  position: absolute;
  top: 110px;
  left: 10px;
  z-index: 3;
}

/* Anvi Guest House card logo wrapper */
.hotel-card.gold .hotel-logo {
  top: 120px;
  left: 130px;
  transform: translateX(-50%);
padding-right: 40px;
  width: 235px;
  height: 125px;
}

/* Anvi logo box */
.hotel-card.gold .logo-mrv {
  width: 100%;
  height: 100%;
  padding: 8px;

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

  background: #ffffff;
  border: 4px solid #fff6f6;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);

  overflow: hidden;
}

/* Actual Anvi logo image */
.hotel-card.gold .logo-mrv img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}
.hotel-card.gold .logo-mrv {
  background: #f53f3f;
  color: #fff
}
.hotel-card.gold .logo-mrv span {
  color: #ffe45c
}

.logo-box {
  background: #fff;
  color: #116037;
  padding-top: 15px;
  padding: 16px 15px ;
  font-size: 24px;
  line-height: 1;
  font-family: Georgia, serif;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
  white-space: nowrap
}


.logo-box span {
  display: block;
  font-size: 11px;
  margin-top: 5px;
  color: var(--main-color);
  font-family: Poppins, sans-serif;
  font-weight: 700
}

.hotel-card.blue .logo-box {
  background: #0baee0;
  color: #fff
}

.hotel-card.blue .logo-box span {
  color: #fff
}

.hotel-card.gold .logo-box {
  background: #e52d2d;
  color: #fff
}

.hotel-card.gold .logo-box span {
  color: #ffe45c
}

.hotel-card-content {
  padding: 58px 26px 30px;
  position: relative
}

.hotel-card-content::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 26px;
  width: 52px;
  height: 4px;
  background: var(--main-color);
  border-radius: 10px
}

.hotel-card-title {
  color: #111;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px
}

.hotel-card-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  min-height: 56px;
  margin-bottom: 20px;
  font-weight: 500
}

.hotel-card .btn {
  background: #fff;
  color: var(--main-color);
  min-width: 135px;
  padding: 11px 22px;
  border-radius: 30px;
  border: 2px solid var(--main-color);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: .3s
}

.hotel-card .btn:hover {
  background: var(--main-color);
  color: #fff
}

.grid-2,
.experience-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}

.experience-photo,
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.experience-photo img,
.about-img img {
  height: 430px;
  width: 100%;
  object-fit: cover
}

.temple-experience h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: #080d16;
  margin: 10px 0 16px
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px
}

.feature-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06)
}

.feature-list i {
  grid-row: 1/3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: #d9f2fc;
  border-radius: 50%;
  color: #111
}

.feature-list strong {
  font-size: 17px;
  color: #111
}

.feature-list span {
  color: var(--muted);
  font-size: 14px
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 20px
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.about-list i {
  color: var(--gold-dark);
  margin-top: 5px
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 35px
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: center
}

.stat b {
  font-size: 34px;
  color: #111
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
  border: 1px solid #dceff7
}

.info-card:hover {
  transform: translateY(-7px)
}

.info-card img {
  height: 215px;
  width: 100%;
  object-fit: cover;
  transition: .4s
}

.info-card:hover img {
  transform: scale(1.05)
}

.info-card .content {
  padding: 24px
}

.info-card h3 {
  font-size: 21px;
  color: #06101e;
  margin-bottom: 8px
}

.price {
  color: var(--gold-dark);
  font-weight: 800;
  margin: 10px 0
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0
}

.mini-list span {
  background: #eaf8fd;
  border: 1px solid #9bdcf4;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.icon-card {
  background: #fff;
  border: 1px solid #c2e8f7;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  transition: .3s;
  position: relative;
  overflow: hidden
}

.icon-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 100px;
  height: 100px;
  background: rgba(0, 169, 235, .15);
  border-radius: 50%
}

.icon-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold)
}

.icon-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dff5fd;
  color: #111;
  font-size: 25px
}

.icon-card h3 {
  font-size: 18px;
  margin-bottom: 8px
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  transition: .3s
}

.gallery img:hover {
  transform: scale(1.03)
}

.temple-gallery {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.temple-gallery img {
  height: 230px
}

.temple-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .8fr 1.2fr;
  gap: 12px
}

.temple-strip img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow)
}

.temple-strip img:nth-child(even) {
  margin-top: 35px
}

.cta {
  background: linear-gradient(120deg, var(--navy), #263d5c);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.cta h2 {
  font-size: 32px
}

.temple-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.photo-mosaic img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gold);
  transition: .3s
}

.photo-mosaic img:nth-child(1),
.photo-mosaic img:nth-child(5) {
  grid-row: span 2;
  height: 310px
}

.photo-mosaic img:hover {
  transform: scale(1.03);
  z-index: 2
}

.temple-intro h2 {
  font-size: 42px;
  text-transform: uppercase;
  color: #111
}

.route-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px
}

.route-board div {
  background: #e7f7fd;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 18px;
  text-align: center
}

.route-board b {
  display: block;
  font-size: 24px;
  color: #111
}

.route-board span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted)
}

.temple-card-grid,
.heritage-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.temple-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 330px;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #111
}

.temple-card:nth-child(3n+1) {
  margin-top: 35px
}

.temple-card:nth-child(4n+2) {
  margin-top: 15px
}

.temple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
  position: absolute;
  inset: 0
}

.temple-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .82))
}

.temple-card:hover img {
  transform: scale(1.1)
}

.temple-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 2;
  padding: 28px
}

.temple-card-content span {
  background: rgba(0, 169, 235, .95);
  color: #111;
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase
}

.temple-card-content h3 {
  font-size: 21px;
  margin: 12px 0 6px
}

.temple-card-content p {
  font-weight: 700;
  font-size: 13px
}

.heritage-masonry .temple-card:nth-child(5n+1) {
  grid-row: span 2;
  min-height: 520px
}

.heritage-masonry .temple-card:nth-child(2n) {
  min-height: 300px
}

.navagraha-panel {
  background: linear-gradient(180deg, #eaf8fd, #fff)
}

.orbit-grid {
  width: min(760px, 100%);
  min-height: 420px;
  margin: auto;
  position: relative;
  display: grid;
  place-items: center
}

.orbit-grid::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(8, 2, 130, .30);
  border-radius: 50%;
  animation: spin 35s linear infinite
}

.orbit-grid span {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  border-radius: 30px;
  padding: 8px 14px;
  font-weight: 800;
  color: #111
}

.orbit-grid span:nth-of-type(1) {
  top: 30px;
  left: 48%
}

.orbit-grid span:nth-of-type(2) {
  top: 90px;
  right: 120px
}

.orbit-grid span:nth-of-type(3) {
  top: 190px;
  right: 70px
}

.orbit-grid span:nth-of-type(4) {
  bottom: 90px;
  right: 130px
}

.orbit-grid span:nth-of-type(5) {
  bottom: 30px;
  left: 47%
}

.orbit-grid span:nth-of-type(6) {
  bottom: 90px;
  left: 120px
}

.orbit-grid span:nth-of-type(7) {
  top: 190px;
  left: 70px
}

.orbit-grid span:nth-of-type(8) {
  top: 90px;
  left: 120px
}

.orbit-grid span:nth-of-type(9) {
  top: 205px;
  left: 48%
}

.orbit-center {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  align-content: center;
  color: #111;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
  z-index: 2
}

.orbit-center i {
  font-size: 42px
}

.orbit-center b {
  font-size: 16px
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.timeline {
  position: relative;
  max-width: 850px;
  margin: auto
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold)
}

.time-item {
  width: 50%;
  padding: 0 32px 32px;
  position: relative
}

.time-item:nth-child(odd) {
  left: 0;
  text-align: right
}

.time-item:nth-child(even) {
  left: 50%
}

.time-item::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border: 3px solid var(--gold);
  border-radius: 50%
}

.time-item:nth-child(odd)::after {
  right: -10px
}

.time-item:nth-child(even)::after {
  left: -10px
}

.time-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow)
}

.route-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 18px;
  align-items: center
}

.route-card {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06)
}

.route-card b {
  display: block;
  color: #111
}

.route-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.event-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  transition: .3s
}

.event-card:hover {
  transform: translateY(-8px)
}

.event-card img {
  height: 260px;
  width: 100%;
  object-fit: cover
}

.event-card div {
  padding: 24px
}

.event-card span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px
}

.event-card h3 {
  font-size: 23px;
  color: #111;
  margin: 6px 0
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.room-card {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 169, 235, .35);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s
}

.room-card:hover {
  transform: translateY(-8px)
}

.room-card img {
  height: 225px;
  width: 100%;
  object-fit: cover;
  transition: .4s
}

.room-card:hover img {
  transform: scale(1.06)
}

.room-body {
  padding: 24px
}

.room-body h3 {
  font-size: 22px
}

.room-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0
}

.amenities {
  display: grid;
  gap: 8px;
  margin: 14px 0
}

.amenities li i {
  color: var(--gold-dark);
  margin-right: 8px
}

.room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px
}

.room-price {
  font-size: 22px;
  font-weight: 800;
  color: #111
}

.room-price small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600
}

.form-wrap {
  background: #d9d5cc;
  padding: 45px;
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.form-title {
  text-align: center;
  margin-bottom: 25px;
  color: #111
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 13px;
  font-weight: 700
}

.field label span {
  color: var(--gold-dark)
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  outline: none
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 169, 235, .25)
}

textarea {
  resize: vertical;
  min-height: 130px
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: #eaf8e5;
  color: #1d6a13;
  font-weight: 700
}

.form-message.show {
  display: block
}

.tariff {
  text-align: center;
  background: #fff;
  padding: 5px 0

}

.tariff .circle-img {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  border: 6px solid #fff;
  box-shadow: var(--shadow)
}

.tariff h2 {
  font-size: 36px;
  margin-top: 18px;
  color: #fcf9f9
}

.tariff p {
  font-size: 20px;
  font-weight: 800;
  color: #fcf9f9;
}

.reservation-bg {
  background: linear-gradient(90deg, #aaa 0 15%,  #aaa 85% 100%)
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px
}

.contact-info {
  display: grid;
  gap: 26px
}

.contact-line {
  display: flex;
  gap: 18px
}

.contact-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12)
}

.map-placeholder {
  height: 310px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e7e7e7, #fafafa);
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  margin-top: 30px
}

.map-placeholder i {
  font-size: 45px;
  color: var(--gold-dark);
  margin-bottom: 12px
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #def4fd;
  color: #111
}

.footer {
  background: #101927;
  color: #d8dee8;
  padding: 60px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px
}

.footer h3 {
  color: #fff;
  margin-bottom: 16px
}

.footer li {
  margin: 8px 0;
  color: #bac4d1
}

.footer a:hover {
  color: var(--gold)
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 35px;
  padding-top: 18px;
  text-align: center;
  color: #9aa6b6
}

.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: var(--green);
  display: none;
  place-items: center;
  z-index: 999;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  cursor: pointer
}

.back-top.show {
  display: grid
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .65s
}

.reveal.show {
  opacity: 1;
  transform: none
}


.accordion {
  margin-top: 22px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  overflow: hidden
}

.acc-item+.acc-item {
  border-top: 1px solid var(--gold)
}

.acc-head {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  background: #fff
}

.acc-body {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted)
}

.acc-item.active .acc-body {
  display: block
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal.open {
  display: flex
}

.modal-box {
  background: #fff;
  border-radius: 22px;
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  position: relative
}

.modal-box img {
  height: 360px;
  width: 100%;
  object-fit: cover
}

.modal-content {
  padding: 26px
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 2
}

@media(max-width:1100px) {

  .temple-card-grid,
  .heritage-masonry {
    grid-template-columns: repeat(3, 1fr)
  }

  .photo-mosaic {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:980px) {
  .hamburger {
    display: block
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 76px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    transition: .3s;
    box-shadow: var(--shadow);
    overflow: auto
  }

  .nav-menu.open {
    right: 0
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    color: #111
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-radius: 8px;
    background: #eaf8fd
  }

  .dropdown.open .dropdown-menu {
    display: block
  }

  .book-top {
    display: inline-flex;
    margin-top: 12px
  }

  .hero-grid,
  .grid-2,
  .experience-grid,
  .temple-layout,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .hero-mini-card {
    justify-self: start
  }

  .hotel-card-grid,
  .card-grid,
  .rooms-grid,
  .place-grid,
  .event-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .cta {
    flex-direction: column;
    text-align: center
  }

  .timeline::before {
    left: 8px
  }

  .time-item,
  .time-item:nth-child(even),
  .time-item:nth-child(odd) {
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 36px;
    padding-right: 0
  }

  .time-item::after,
  .time-item:nth-child(even)::after,
  .time-item:nth-child(odd)::after {
    left: 0
  }

  .route-grid {
    grid-template-columns: 1fr 1fr
  }

  .temple-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .temple-strip img:nth-child(even) {
    margin-top: 0
  }

  .orbit-grid span {
    position: static;
    margin: 6px
  }

  .orbit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    min-height: auto
  }

  .orbit-grid::before {
    display: none
  }

  .orbit-center {
    width: 130px;
    height: 130px;
    flex-basis: 130px;
    margin: 0 100% 10px
  }
}

@media(max-width:680px) {
  .brand {
    min-width: 126px;
    height: 68px
  }

  .brand strong {
    font-size: 22px
  }

  .brand small {
    font-size: 12px
  }

  .nav {
    height: 68px
  }

  main {
    padding-top: 68px
  }

  .nav-menu {
    top: 68px;
    height: calc(100vh - 68px)
  }

  .hero-content {
    padding: 26px
  }

  .hero-mini-card {
    width: 100%
  }

  .hotel-card-grid,
  .card-grid,
  .rooms-grid,
  .place-grid,
  .icon-grid,
  .gallery,
  .form-grid,
  .event-grid,
  .temple-card-grid,
  .heritage-masonry,
  .route-grid {
    grid-template-columns: 1fr
  }

  .gallery img {
    height: 220px
  }

  .section {
    padding: 60px 0
  }

  .form-wrap {
    padding: 25px 18px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .tariff h2 {
    font-size: 28px
  }

  .tariff p {
    font-size: 16px
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr)
  }

  .photo-mosaic img,
  .photo-mosaic img:nth-child(1),
  .photo-mosaic img:nth-child(5) {
    height: 170px;
    grid-row: auto
  }

  .temple-card,
  .heritage-masonry .temple-card:nth-child(5n+1),
  .heritage-masonry .temple-card:nth-child(2n) {
    min-height: 360px;
    margin-top: 0
  }

  .hotel-logo {
    left: 18px
  }

  .logo-box {
    font-size: 21px;
    padding: 10px 16px
  }

  .hotel-card-content {
    padding-left: 20px;
    padding-right: 20px
  }

  .temple-strip {
    grid-template-columns: 1fr
  }

  /* .reservation-bg {
    background: #eee8db
  } */

  .modal-box img {
    height: 260px
  }
}

/* =========================================================
   LE GARDEN INN BLUE THEME OVERRIDES
   Reference palette: #00A9EB (header) and #080282 (active line)
   ========================================================= */
.header {
  background: rgba(0, 169, 235, .98);
  border-bottom-color: rgba(255,255,255,.28);
}
.header.scrolled {
  background: #00a9eb;
  box-shadow: 0 10px 30px rgba(0, 74, 119, .22);
}
.brand {
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.brand small { color: #e9f9ff; }
.nav-link { color: #fff; }
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link::after { background: #080282; }
.book-top { background: #080282; color: #fff !important; }
.book-top:hover { background: #05006d; }
.hamburger { color: #fff; }
.progress { background: #080282; }
.loader-logo { color: #00a9eb; }
.loader-line::after { background: #080282; }
.btn-gold { background: #00a9eb; color: #fff; }
.btn-gold:hover { background: #007bb8; }
.btn-green { background: #080282; }
.btn-green:hover { background: #05006d; }
.patterned {
  background-color: #eff9fd;
  background-image: radial-gradient(rgba(0,169,235,.13) 1px, transparent 1px);
}
.section.soft { background: #f2faff; }
.section-title span,
.eyebrow,
.price,
.event-card span,
.amenities li i,
.about-list i { color: #007bb8; }
.icon-card,
.info-card,
.room-card { border-color: #c2e8f7; }
.icon-card::before { background: rgba(0,169,235,.12); }
.icon-card i,
.feature-list i,
.socials a { background: #dff5fd; color: #080282; }
.hotel-card.blue { --main-color: #00a9eb; }
.hotel-card.gold { --main-color: #080282; }
.hotel-card.red { --main-color: #007bb8; }
.cta,
.footer { background: linear-gradient(135deg, #07144e, #0e2c61); }
.back-top { color: #080282; }
input, select, textarea { border-color: #00a9eb; }
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(0,169,235,.22);
}
@media(max-width:980px){
  .nav-menu { background: #fff; }
  .nav-link { color: #101a3d; }
  .nav-link:hover, .nav-link.active { color: #080282; }
  .hamburger { color: #fff; }
}
/* Hospitality image slider */

.hospitality-slider {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 22px;
  background: #08a9e3;
  box-shadow: 0 18px 42px rgba(15, 24, 38, 0.18);
}

.hospitality-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    transform 0.75s ease,
    opacity 0.75s ease,
    visibility 0.75s ease;
}

.hospitality-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hospitality-slide.slide-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}

.hospitality-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospitality-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(16, 26, 77, 0.05) 30%,
      rgba(16, 26, 77, 0.75) 100%
    );
}

.hospitality-slider-overlay {
  position: absolute;
  left: 28px;
  right: 90px;
  bottom: 30px;
  z-index: 5;
  color: #ffffff;
}

.hospitality-slider-overlay span {
  display: inline-block;
  margin-bottom: 6px;
  color: #9ee8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hospitality-slider-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.25;
}

.hospitality-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(8, 169, 227, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.hospitality-arrow:hover {
  background: #171b77;
  transform: translateY(-50%) scale(1.08);
}

.hospitality-prev {
  left: 18px;
}

.hospitality-next {
  right: 18px;
}

.hospitality-dots {
  position: absolute;
  right: 25px;
  bottom: 30px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hospitality-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.hospitality-dot.active {
  width: 26px;
  border-radius: 20px;
  background: #ffffff;
}

@media (max-width: 980px) {
  .hospitality-slider {
    height: 400px;
  }
}

@media (max-width: 680px) {
  .hospitality-slider {
    height: 320px;
    border-radius: 16px;
  }

  .hospitality-arrow {
    width: 40px;
    height: 40px;
  }

  .hospitality-prev {
    left: 12px;
  }

  .hospitality-next {
    right: 12px;
  }

  .hospitality-slider-overlay {
    left: 20px;
    right: 20px;
    bottom: 55px;
  }

  .hospitality-dots {
    right: auto;
    left: 20px;
    bottom: 22px;
  }
}