:root {
  --gold: #08A9E3;
  --gold-dark: #087EAD;
  --green: #171B77;
  --red: #E13B3F;
  --maroon: #161B6F;
  --navy: #101A4D;
  --primary: var(--green);
  --primary-dark: var(--navy);
  --primary-light: var(--cream);
  --cream: #EAF8FF;
  --light: #F4FBFF;
  --white: #ffffff;
  --text: #243142;
  --muted: #687384;
  --border: #B9E3F2;
  --line: #B9E3F2;
  --shadow-sm: 0 12px 32px rgba(15, 24, 38, 0.10);
  --shadow-lg: 0 26px 70px rgba(15, 24, 38, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.small-title,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase
}

.small-title::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(184, 137, 0, 0.18);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* .brand img {
  width: 150px;
  max-height: 80px;
  object-fit: contain;
} */
.brand {
  height: 76px;
 
  min-width: 100px;
   object-fit: contain;
   padding-top: 10px;
 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)
}

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

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 29px 14px;
  color: #243142;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 21px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.88rem;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: var(--primary-light);
  padding-left: 17px;
}

.header-cta {
   padding: 10px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff !important;
  font-weight: 800;
  text-transform: uppercase
}

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

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--white);
  background: var(--primary);
}

/* room */
.reservation {
  position: relative;
  min-height: 530px;
  display: grid;
  align-items: center;
  isolation: isolate;
  background:
    /* linear-gradient(rgba(23, 34, 53, 0.42), rgba(23, 34, 53, 0.70)), */
    url("../images/gallery/event/iyyangar-image.png") center/cover no-repeat;
}

.reservation::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(to top, rgba(23, 34, 53, 0.50), transparent);
}

.room-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* background:
    radial-gradient(circle at 75% 32%, rgba(230, 180, 0, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(23, 34, 53, 0.84) 0%, rgba(123, 0, 0, 0.46) 55%, rgba(0, 0, 0, 0.14) 100%); */
}

.room-content {
  padding-block: 90px;
  color: var(--white);
}

.room-content .eyebrow {
  color: #ffea73;
}

.room-content h1 {
  max-width: 760px;
  margin: 16px 0 18px;
 
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.room-content > p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.room-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.room-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 600;
}

.room-badges i {
  color: #ffea73;
}

/* Booking layout */
.booking-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(230, 180, 0, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f3e8, #fff8e2);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.35fr);
  gap: 32px;
  align-items: start;
}

.booking-sidebar {
  display: grid;
  gap: 26px;
  position: sticky;
  top: 110px;
}

.property-card,
.tariff-card,
.form-card {
  background: var(--white);
  border: 1px solid rgba(184, 137, 0, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.property-card {
  overflow: hidden;
}

.property-image-wrap {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.property-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 34, 53, 0.62), transparent 55%);
}

.property-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.property-card:hover .property-image-wrap img {
  transform: scale(1.05);
}

.property-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #f7dc65;
  font-size: 0.72rem;
  font-weight: 700;
}

.property-content {
  padding: 28px;
}

/* .property-content h2,
.section-heading h2,
.form-card-head h2 {

  color: var(--primary-dark);
  font-size: 2.1rem;
  line-height: 1.08;
} */

.property-content h2 {
  margin: 11px 0 13px;
}

.property-content > p {
  color: var(--muted);
  font-size: 0.88rem;
}

.property-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.property-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #243142;
  font-size: 0.78rem;
  font-weight: 600;
}

.property-features i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 10px;
  color: var(--gold-dark);
  background: #fff4c8;
}

.tariff-card {
  padding: 28px;
}

.section-heading.compact h2 {
  margin-top: 9px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
}

.price-item:hover {
  border-color: rgba(230, 180, 0, 0.65);
  transform: translateX(4px);
}

.price-item.featured {
  border-color: rgba(230, 180, 0, 0.42);
  background: linear-gradient(135deg, #fff8e2, #ffffff);
}

.price-item h3 {
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.price-item p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.price-item strong {
  white-space: nowrap;
  color: var(--primary);
  font-size: 1.12rem;
}

.price-item small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
}

.support-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 17px;
  border-radius: 16px;
  color: var(--white);
  background: var(--primary);
}

.support-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: #ffea73;
  font-size: 1.25rem;
}

.support-box span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
}

.support-box a {
  font-size: 0.98rem;
  font-weight: 700;
}

/* Form */
.form-card {
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow-lg);
}

.form-card-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.form-card-head h2 {
  margin: 9px 0 8px;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

.form-card-head p {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-card-head p span,
.field label span {
  color: #990000;
}

.reservation-form {
  margin-top: 32px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}

.form-section-title > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 14px;
  color: var(--white);
  background: var(--primary);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(51, 105, 0, 0.20);
}

.form-section-title h3 {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.form-section-title p {
  color: var(--muted);
  font-size: 0.76rem;
}

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

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: #243142;
  font-size: 0.78rem;
  font-weight: 700;
}

.input-wrap {
  position: relative;
}

.input-wrap > i {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 1;
  color: #687384;
  transform: translateY(-50%);
  transition: color var(--transition);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px 12px 45px;
  border: 1px solid #ecdca7;
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: #fffdf7;
  font-size: 0.84rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #9b927f;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(230, 180, 0, 0.16);
}

.input-wrap:focus-within > i {
  color: var(--gold-dark);
}

.input-wrap select {
  appearance: none;
  cursor: pointer;
}

.select-wrap::after {
  content: "\f107";
  position: absolute;
  right: 16px;
  top: 50%;
  color: #687384;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  pointer-events: none;
  transform: translateY(-50%);
}

.textarea-wrap > i {
  top: 20px;
  transform: none;
}

.input-wrap textarea {
  min-height: 125px;
  resize: vertical;
  padding-top: 15px;
}

.form-divider {
  height: 1px;
  margin: 34px 0;
  background: var(--border);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 25px 0 20px;
  color: var(--muted);
  font-size: 0.74rem;
  cursor: pointer;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.submit-btn {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(184, 137, 0, 0.28);
  transition: var(--transition);
}

.submit-btn i {
  transition: transform var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(184, 137, 0, 0.34);
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.secure-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #687384;
  font-size: 0.68rem;
}

.secure-note i {
  color: var(--primary);
}

.form-message {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Steps */
.booking-steps {
  padding: 105px 0;
  background: var(--white);
}

.section-heading.centered {
  max-width: 650px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered .small-title {
  justify-content: center;
}

.section-heading.centered h2 {
  margin-top: 10px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

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

.step-card {
  position: relative;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ffffff, #fff8e2);
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(230, 180, 0, 0.50);
  transform: translateY(-8px);
  box-shadow: var(--shadow-sm);
}

.step-card > span {
  position: absolute;
  right: 18px;
  top: 9px;
  color: rgba(51, 105, 0, 0.08);
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.step-card > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--gold-dark);
  background: #fff4c8;
  font-size: 1.35rem;
}

.step-card h3 {
  margin-bottom: 9px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Footer */
.site-footer {
  padding-top: 75px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--primary-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 42px;
  padding-bottom: 55px;
}

.footer-about img {
  width: 160px;
  max-height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-about p {
  max-width: 320px;
  margin-top: 18px;
  font-size: 0.82rem;
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.site-footer li {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.site-footer a {
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #ffea73;
}

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

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: var(--transition);
}

.socials a:hover {
  color: var(--primary-dark);
  background: #ffea73;
  border-color: #ffea73;
  transform: translateY(-3px);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list i {
  width: 18px;
  margin-top: 4px;
  color: #ffea73;
}

.copyright {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.copyright div {
  display: flex;
  gap: 22px;
}

.floating-whatsapp,
.back-top {
  position: fixed;
  right: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp {
  bottom: 84px;
  width: 56px;
  height: 56px;
  background: #25d366;
  font-size: 1.65rem;
}

.back-top {
  bottom: 24px;
  width: 45px;
  height: 45px;
  background: var(--primary);
}

.floating-whatsapp:hover,
.back-top:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1050px) {
  .hamburger {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 800;
  }

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

  .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 {
    display: block;
  }
  
.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
}

  .header-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    min-height: 74px;
  }

  .brand img {
    width: 130px;
  }

  .nav-menu {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .reservation {
    min-height: 500px;
  }

  .room-content {
    padding-block: 70px;
  }

  .room-content h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .room-badges {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-section,
  .booking-steps {
    padding: 75px 0;
  }

  .booking-sidebar {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 25px 18px;
    border-radius: 22px;
  }

  .form-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .property-features {
    grid-template-columns: 1fr;
  }

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

  .copyright {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .copyright div {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 460px) {
  .room-content h1 {
    font-size: 3rem;
  }

  .property-image-wrap {
    height: 210px;
  }

  .price-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-section-title {
    align-items: flex-start;
  }

  .floating-whatsapp,
  .back-top {
    right: 14px;
  }
}

/* Iyyangar gold, green, maroon and navy theme */
.site-header {
  background: rgba(230, 180, 0, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 7px 22px rgba(15, 24, 38, 0.12);
}

.nav-link {
  color: #06101e;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  background: var(--green);
}

.header-cta,
.hamburger,
.back-top {
  background: var(--green);
}

.header-cta:hover,
.back-top:hover {
  background: #244c00;
}

.dropdown-menu {
  border-color: var(--line);
}

.dropdown-menu a:hover {
  color: var(--maroon);
  background: var(--cream);
}

.reservation {
  background:
    /* linear-gradient(rgba(23, 34, 53, 0.40), rgba(23, 34, 53, 0.72)), */
    url("../images/gallery/front1.jpg") center/cover no-repeat;
}

.reservation::after {
  background: linear-gradient(to top, rgba(23, 34, 53, 0.58), transparent);
}

.room-overlay {
  background:
    radial-gradient(circle at 76% 30%, rgba(230, 180, 0, 0.28), transparent 31%),
    linear-gradient(90deg, rgba(23, 34, 53, 0.90) 0%, 56%, rgba(0, 0, 0, 0.12) 100%);
}

.room-content .eyebrow,
.room-badges i,
.site-footer a:hover,
.contact-list i {
  color: #ffea73;
}

.room-badges span {
  border-color: rgba(255, 234, 115, 0.38);
  background: rgba(255, 248, 226, 0.12);
}

.booking-section {
  background:
    radial-gradient(circle at 6% 8%, rgba(230, 180, 0, 0.16), transparent 22%),
    radial-gradient(circle at 94% 88%, rgba(51, 105, 0, 0.09), transparent 20%),
    linear-gradient(180deg, var(--light), var(--cream));
}

.property-card,
.tariff-card,
.form-card {
  border-color: var(--line);
}

.property-label {
  color: #111111;
  background: var(--gold);
}

.property-features i,
.step-card > i {
  color: var(--maroon);
  background: #fff1bd;
}

.price-item:hover,
.step-card:hover {
  border-color: var(--gold);
}

.price-item.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff3bd, #fffdf5);
}

.price-item strong {
  color: var(--green);
}

.support-box,
.form-section-title > span {
  background: var(--green);
}

.support-icon {
  color: var(--green);
  background: #ffea73;
}

.form-card {
  background: rgba(255, 255, 255, 0.96);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  border-color: var(--line);
  background: #fffdf7;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(230, 180, 0, 0.18);
}

.input-wrap:focus-within > i {
  color: var(--maroon);
}

.consent-check input {
  accent-color: var(--green);
}

.submit-btn {
  color: #111111;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 16px 30px rgba(184, 137, 0, 0.30);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--gold), #ffcf20);
  box-shadow: 0 20px 36px rgba(184, 137, 0, 0.38);
}

.secure-note i {
  color: var(--green);
}

.booking-steps {
  background: #fffdf8;
}

.step-card {
  border-color: var(--line);
  background: linear-gradient(145deg, #ffffff, var(--cream));
}

.step-card > span {
  color: rgba(51, 105, 0, 0.08);
}

.site-footer {
  background: var(--navy);
}

.socials a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.form-message.success {
  color: #244c00;
}

.form-message.error {
  color: var(--red);
}
/* footer */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3bf;
  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
}

/* =========================================================
   FINAL LE GARDEN INN BLUE NAVBAR OVERRIDE
   This block is intentionally placed at the end so it
   overrides the older gold/green navbar rules above.
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #08A9E3 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 5px 18px rgba(8, 74, 112, 0.16) !important;
  backdrop-filter: none;
}

.navbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 190px;
  min-width: 190px;
  height: 90px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  overflow: visible;
}

.brand img {
  width: 170px;
  height: auto;
  max-height: 84px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 34px 13px 31px;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #171B77 !important;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  margin-left: 4px;
  border-radius: 5px;
  background: #171B77 !important;
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(16, 26, 77, 0.24);
  transition: background 0.3s ease, transform 0.3s ease;
}

.header-cta:hover {
  background: #101A4D !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #171B77 !important;
}

.dropdown-menu {
  top: 100%;
  min-width: 200px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #B9E3F2 !important;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 34px rgba(16, 26, 77, 0.16);
}

.dropdown-menu a {
  color: #243142;
  border-radius: 7px;
}

.dropdown-menu a:hover {
  color: #171B77 !important;
  background: #EAF8FF !important;
}

@media (max-width: 1050px) {
  .hamburger {
    display: grid;
  }

  .navbar {
    min-height: 78px;
  }

  .brand {
    width: 160px;
    min-width: 160px;
    height: 78px;
  }

  .brand img {
    width: 150px;
    max-height: 72px;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid #B9E3F2;
    border-radius: 0 0 16px 16px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(16, 26, 77, 0.18);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 13px;
    border-radius: 8px;
    color: #101A4D !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #171B77 !important;
    background: #EAF8FF;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 10px;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .header-cta {
    width: 100%;
    margin: 8px 0 0;
    min-height: 46px;
    border-radius: 8px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    min-height: 72px;
  }

  .brand {
    width: 145px;
    min-width: 145px;
    height: 72px;
  }

  .brand img {
    width: 138px;
    max-height: 66px;
  }

  .nav-menu {
    top: 72px;
    left: 14px;
    right: 14px;
  }
}

