:root {
  --navy: #07182d;
  --navy-light: #10284a;
  --gold: #c9a45b;
  --gold-light: #e6c77f;
  --cream: #fbf8f1;
  --white: #ffffff;
  --text: #515151;
  --dark: #18202b;
  --maroon: #6d1827;
  --font-title: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1140px, 90%);
  margin: auto;
}

.section {
  padding: 100px 0;
}

/* Header */

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.1;
}

.brand small {
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 500;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-menu a {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-light);
}

.nav-menu .nav-booking {
  background: var(--gold);
  color: var(--navy);
  padding: 11px 17px;
}

.nav-menu .nav-booking:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.menu-button {
  display: none;
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */

.hero {
  min-height: 760px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(3, 12, 27, 0.8), rgba(3, 12, 27, 0.38));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding-top: 60px;
}

.eyebrow,
.section-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.hero h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 106px);
  letter-spacing: -1px;
}

.hero h1 span,
h2 span,
.footer h3 span {
  color: var(--gold);
}

.hero-text {
  width: min(540px, 90%);
  margin: 24px auto 32px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.button-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--gold);
  color: var(--navy);
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 23px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}

.previous {
  left: 28px;
}

.next {
  right: 28px;
}

.slider-dots {
  position: absolute;
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 9px;
  height: 9px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

/* Intro */

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.experience-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 23px 30px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.experience-box strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1;
}

.experience-box span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-content h2,
.section-heading h2,
.cta-box h2 {
  color: var(--navy);
  font-size: clamp(40px, 4vw, 58px);
  margin-bottom: 25px;
}

.intro-content p:not(.section-tag) {
  margin-bottom: 17px;
  font-size: 14px;
}

.text-link {
  display: inline-block;
  color: var(--navy);
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 20px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Stats */

.stats-section {
  background: var(--navy);
  padding: 57px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  color: var(--white);
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 51px;
  line-height: 1;
}

.stat-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Events */

.events {
  background: var(--white);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading > p:last-child {
  font-size: 14px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: var(--navy);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.08);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(3, 12, 27, 0.9));
}

.event-card-content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  color: var(--white);
  padding: 26px;
}

.event-card h3 {
  color: var(--gold-light);
  font-size: 37px;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 12px;
  line-height: 1.6;
}

.center-button {
  text-align: center;
  margin-top: 42px;
}

/* Hall section */

.hall-highlight {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}

.hall-highlight-image {
  background: url("assets/images/hall-two.jpg") center/cover;
  min-height: 400px;
}

.hall-highlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 11%;
  color: var(--white);
}

.hall-highlight-content h2 {
  font-size: clamp(42px, 4vw, 62px);
  margin-bottom: 22px;
}

.hall-highlight-content > p:not(.section-tag) {
  max-width: 480px;
  margin-bottom: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA & Footer */

.cta-section {
  background: var(--cream);
}

.cta-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 43px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 10px 35px rgba(7, 24, 45, 0.08);
}

.cta-box h2 {
  font-size: clamp(35px, 3vw, 48px);
  margin-bottom: 0;
}

.footer {
  background: #051222;
  color: rgba(255, 255, 255, 0.68);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 55px;
}

.footer h3 {
  color: var(--white);
  font-size: 29px;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
}

.footer a:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  padding: 18px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.copyright p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.whatsapp-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
  font-size: 27px;
}

/* Mobile */

@media (max-width: 820px) {
  .header {
    background: rgba(5, 18, 34, 0.96);
  }

  .navbar {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--navy);
    padding: 18px 5% 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu .nav-booking {
    padding: 10px 15px;
  }

  .hero {
    min-height: 650px;
  }

  .slider-arrow {
    display: none;
  }

  .intro-grid,
  .hall-highlight {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 55px;
  }

  .intro-image img {
    height: 430px;
  }

  .experience-box {
    right: 15px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    height: 360px;
  }

  .hall-highlight-content {
    padding: 70px 7%;
  }

  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: block;
    padding: 35px 30px;
  }

  .cta-box .button {
    margin-top: 25px;
  }

  .footer-grid {
    gap: 30px;
  }

  .section {
    padding: 75px 0;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 14px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 13px;
  }

  .button {
    padding: 13px 17px;
    font-size: 10px;
  }

  .intro-image img {
    height: 370px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item strong {
    font-size: 43px;
  }
}
/* Inner Pages */

.inner-header {
  position: relative;
  background: var(--navy);
}

.page-banner {
  min-height: 360px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: url("assets/images/hero-2.jpg") center/cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 33, 0.76);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.page-banner h1 {
  font-family: var(--font-title);
  font-size: clamp(55px, 6vw, 78px);
  line-height: 1;
  margin-bottom: 15px;
}

.page-banner h1 span {
  color: var(--gold);
}

.page-banner-content > p:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.about-story-content h2,
.parking-content h2 {
  color: var(--navy);
  font-size: clamp(42px, 4vw, 59px);
  margin-bottom: 25px;
}

.about-story-content p:not(.section-tag) {
  font-size: 14px;
  margin-bottom: 17px;
}

.about-story-image {
  position: relative;
  padding: 0 20px 20px 0;
}

.about-story-image img {
  height: 510px;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.gold-frame {
  position: absolute;
  width: 78%;
  height: 78%;
  border: 3px solid var(--gold);
  right: 0;
  bottom: 0;
}

.capacity-section {
  background: var(--cream);
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.capacity-card {
  background: var(--white);
  box-shadow: 0 8px 28px rgba(7, 24, 45, 0.08);
}

.capacity-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.capacity-card-content {
  padding: 32px;
}

.hall-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  margin-bottom: 8px;
}

.capacity-card h3 {
  color: var(--navy);
  font-size: 43px;
}

.capacity-number {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 69px;
  font-weight: 700;
  line-height: 1;
  margin-top: 18px;
}

.capacity-number span {
  font-size: 42px;
}

.capacity-text {
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.parking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}

.parking-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.parking-content {
  padding: 80px 12%;
  align-self: center;
  color: rgba(255, 255, 255, 0.8);
}

.parking-content h2 {
  color: var(--white);
}

.parking-content > p:not(.section-tag) {
  font-size: 14px;
  margin-bottom: 22px;
}

.parking-number {
  border-left: 3px solid var(--gold);
  padding-left: 17px;
  margin-bottom: 28px;
}

.parking-number strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 60px;
  line-height: 1;
}

.parking-number span {
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 35px 28px;
  text-align: center;
  border: 1px solid #ece7dd;
  transition: 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.1);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.value-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--navy);
  color: var(--gold);
  font-size: 19px;
  border-radius: 50%;
}

.value-card h3 {
  color: var(--navy);
  font-size: 31px;
  margin-bottom: 11px;
}

.value-card p {
  font-size: 12px;
}

@media (max-width: 820px) {
  .about-story-grid,
  .parking-section {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    gap: 50px;
  }

  .about-story-image img {
    height: 420px;
  }

  .parking-photo img {
    min-height: 350px;
  }

  .parking-content {
    padding: 65px 7%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .capacity-grid {
    grid-template-columns: 1fr;
  }

  .capacity-card > img {
    height: 240px;
  }
}
/* Services Page */

.services-banner {
  background-image: url("assets/images/hero-3.jpg");
}

.services-intro {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid #ece7dd;
  padding: 38px 29px;
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 32px rgba(7, 24, 45, 0.11);
  border-color: var(--gold);
}

.service-number {
  position: absolute;
  right: 20px;
  top: 13px;
  color: #ebe4d7;
  font-family: var(--font-title);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 33px;
  margin-bottom: 12px;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.8;
}

.event-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}

.event-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.event-feature-content {
  align-self: center;
  padding: 75px 12%;
  color: rgba(255, 255, 255, 0.77);
}

.event-feature-content h2,
.venue-choice-grid h2 {
  color: var(--white);
  font-size: clamp(43px, 4vw, 60px);
  margin-bottom: 23px;
}

.event-feature-content > p:not(.section-tag) {
  font-size: 14px;
  margin-bottom: 23px;
}

.event-list {
  list-style: none;
  margin-bottom: 30px;
}

.event-list li {
  margin-bottom: 12px;
  font-size: 12px;
}

.event-list span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

.venue-choice-section {
  background: var(--maroon);
}

.venue-choice-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 75px;
  align-items: center;
}

.venue-choice-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.venue-choice-text .text-link {
  color: var(--white);
}

@media (max-width: 820px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-feature,
  .venue-choice-grid {
    grid-template-columns: 1fr;
  }

  .event-feature-image img {
    min-height: 360px;
  }

  .event-feature-content {
    padding: 65px 7%;
  }

  .venue-choice-grid {
    gap: 25px;
  }
}

@media (max-width: 540px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* Gallery Page */

.gallery-banner {
  background-image: url("assets/images/hero-4.jpg");
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--navy);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 34, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(5, 18, 34, 0.48);
}

.gallery-overlay {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -35%);
  white-space: nowrap;
  transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-cta {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.gallery-cta h2 {
  font-size: clamp(43px, 4vw, 60px);
  margin-bottom: 26px;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 35px;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.image-modal.show {
  display: flex;
}

.image-modal img {
  max-width: 92%;
  max-height: 90vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  right: 28px;
  top: 14px;
  color: var(--white);
  background: transparent;
  border: none;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-tall,
  .gallery-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .image-modal {
    padding: 20px;
  }
}
/* Booking Page */

.booking-banner {
  background-image: url("assets/images/hero-5.jpg");
}

.booking-section {
  background: var(--cream);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.booking-info {
  padding-top: 15px;
}

.booking-info h2 {
  color: var(--navy);
  font-size: clamp(42px, 4vw, 60px);
  margin-bottom: 23px;
}

.booking-info > p:not(.section-tag) {
  font-size: 14px;
  margin-bottom: 30px;
}

.booking-info-list {
  border-top: 1px solid #dfd7c8;
}

.booking-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #dfd7c8;
}

.booking-icon {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 13px;
}

.booking-info-item h3 {
  color: var(--navy);
  font-size: 27px;
  margin-bottom: 4px;
}

.booking-info-item p {
  font-size: 11px;
}

.booking-contact-box {
  margin-top: 28px;
  padding: 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.booking-contact-box a {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.booking-form-box {
  background: var(--white);
  padding: 43px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 15px 35px rgba(7, 24, 45, 0.1);
}

.booking-form-box > h3 {
  color: var(--navy);
  font-size: 42px;
  margin-bottom: 4px;
}

.booking-form-box > p {
  font-size: 11px;
  margin-bottom: 27px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 12px;
  outline: none;
  border: 1px solid #ded9d0;
  color: var(--dark);
  font: 12px var(--font-body);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 91, 0.13);
}

.booking-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 10px;
  margin-top: 13px;
  color: #777;
}

.booking-bottom {
  background: var(--maroon);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}

.booking-bottom p {
  display: inline;
  font-size: 13px;
  margin-right: 10px;
}

.booking-bottom a {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 820px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .booking-form-box {
    padding: 32px 25px;
  }
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* Contact Page */

.contact-banner {
  background-image: url("assets/images/hero-1.jpg");
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.contact-card {
  background: var(--white);
  padding: 38px 28px;
  text-align: center;
  border-bottom: 3px solid transparent;
  box-shadow: 0 8px 25px rgba(7, 24, 45, 0.06);
  transition: 0.3s ease;
}

.contact-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-5px);
}

.contact-card-icon {
  color: var(--gold);
  font-size: 33px;
  margin-bottom: 16px;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 34px;
  margin-bottom: 11px;
}

.contact-card p {
  min-height: 67px;
  font-size: 12px;
  line-height: 1.8;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
}

.visit-section {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.visit-content h2 {
  color: var(--navy);
  font-size: clamp(42px, 4vw, 60px);
  margin-bottom: 21px;
}

.visit-content > p:not(.section-tag) {
  font-size: 14px;
  margin-bottom: 28px;
}

.visit-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.visit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-outline-dark {
  color: var(--navy);
  border-color: var(--navy);
}

.button-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.contact-final {
  background: var(--maroon);
  padding: 85px 0;
  text-align: center;
  color: var(--white);
}

.contact-final h2 {
  font-size: clamp(45px, 5vw, 68px);
  margin-bottom: 27px;
}

@media (max-width: 820px) {
  .contact-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 17px;
  }

  .contact-card p {
    min-height: auto;
  }

  .visit-grid {
    gap: 45px;
  }

  .map-section iframe {
    height: 350px;
  }
}