/* =========================================================
   TOKENS & RESET
========================================================= */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --beige: #f5efe6;
  --cream: #faf7f2;
  --brown: #5c3d2e;
  --dark: #1a1209;
  --text: #3d2b1f;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(90, 50, 20, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Jost", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
[data-aos="fade-left"],
[data-aos="fade-right"] {
  transform: translateY(20px) !important;
}
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
  transform: translateY(0) !important;
}
section {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   UTILITIES
========================================================= */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  line-height: 1.2;
}
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto 0;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
  color: var(--white);
}
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* =========================================================
   PAGE HERO BANNER (non-home pages)
========================================================= */
.page-hero {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 9, 0.75),
    rgba(92, 61, 46, 0.5)
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .section-tag {
  color: var(--gold-light);
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
}

/* =========================================================
   NAVBAR
========================================================= */
#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  padding: 1rem 0;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}
#mainNav.scrolled {
  background: rgba(26, 18, 9, 0.92) !important;
  backdrop-filter: blur(14px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
#mainNav.solid-nav {
  background: rgba(26, 18, 9, 0.96) !important;
  padding: 0.6rem 0;
}
#mainNav .navbar-brand img {
  height: 52px;
}
#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem !important;
  transition: color var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--gold) !important;
}
#mainNav .navbar-toggler {
  border-color: rgba(201, 169, 110, 0.5);
  padding: .4rem .6rem;
}
#mainNav .navbar-toggler:focus { box-shadow: none; }
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,169,110,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-btn { margin-left: .75rem; }

/* ── Mobile menu ── */
@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    background: rgba(20, 13, 6, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 0 0 16px 16px;
    padding: .8rem 1.2rem 1.2rem;
    margin-top: .4rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
    border-top: 1px solid rgba(201, 169, 110, .15);
  }
  #mainNav .nav-link {
    padding: .7rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
  }
  #mainNav .nav-link:last-of-type { border-bottom: none; }
  #mainNav .nav-item.nav-btn {
    margin: .8rem 0 0;
    text-align: center;
  }
  #mainNav .nav-item.nav-btn .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   HERO SLIDER (home)
========================================================= */
#heroCarousel {
  height: 100dvh;
  min-height: 600px;
}
.hero-slide {
  height: 100dvh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 9, 0.72) 0%,
    rgba(92, 61, 46, 0.45) 100%
  );
}
.hero-slide-1 {
  background-image: url("../images/slider-1.jpg");
}
.hero-slide-2 {
  background-image: url("../images/slider-2.jpg");
}
.hero-slide-3 {
  background-image: url("../images/slider-3.jpg");
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
}
.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 1.2rem 0 2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
}
.carousel-indicators .active {
  background: var(--gold);
  width: 52px;
}

/* =========================================================
   ABOUT
========================================================= */
#about {
  padding: 100px 0;
  background: var(--cream);
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
}
.about-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.45);
  font-family: "Cormorant Garamond", serif;
}
.about-badge span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge small {
  font-size: 0.85rem;
  font-family: "Jost", sans-serif;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.about-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

/* =========================================================
   SERVICES
========================================================= */
#services {
  padding: 100px 0;
  background: var(--beige);
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(90, 50, 20, 0.09);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(90, 50, 20, 0.18);
}
.service-img-wrap {
  overflow: hidden;
  height: 220px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.service-body h5 {
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.service-body p {
  font-size: 0.88rem;
  color: #7a6055;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.service-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.service-actions .btn {
  font-size: 0.78rem;
  padding: 0.45rem 1.1rem;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */
#why {
  padding: 100px 0;
  background: var(--cream);
}
.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(90, 50, 20, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(90, 50, 20, 0.16);
}
.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.1);
}
.why-card h5 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.85rem;
  color: #7a6055;
  line-height: 1.6;
}

/* =========================================================
   GALLERY STRIP
========================================================= */
#gallery {
  padding: 80px 0;
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item img {
    height: 160px;
  }
}

/* =========================================================
   CONTACT
========================================================= */
#contact {
  padding: 100px 0;
  background: var(--beige);
}
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
}
.contact-info-item h6 {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.form-control,
.form-select {
  border: 1.5px solid var(--gold-light);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
  background: var(--white);
}
.form-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--dark);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom span {
  color: var(--gold);
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.fab:hover {
  transform: translateY(-4px) scale(1.04);
}
.fab-call {
  background: var(--gold);
  color: var(--white);
}
.fab i {
  margin-right: 0.45rem;
  font-size: 1.05rem;
}
.fab-label {
  font-size: 0.8rem;
}
@media (max-width: 576px) {
  .fab-label {
    display: none;
  }
  .fab {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
  }
  .fab i {
    margin: 0;
  }
}

/* Floating Enquire Now — right side vertical center */
.fab-enquire-wrap {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.fab-enquire {
  pointer-events: auto;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  background: linear-gradient(to bottom, #a07840, var(--gold));
  color: var(--white);
  padding: 18px 10px;
  border: none;
  border-radius: 10px 0 0 10px;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -3px 0 20px rgba(201, 169, 110, 0.5);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}
.fab-enquire:hover {
  box-shadow: -5px 0 28px rgba(201, 169, 110, 0.75);
  padding: 18px 13px;
  color: var(--white);
}
.fab-enquire i {
  font-size: 0.85rem;
  transform: rotate(90deg);
}

/* =========================================================
   ENQUIRY MODAL
========================================================= */
#enquiryModal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
#enquiryModal .modal-header {
  background: linear-gradient(135deg, var(--brown), #3a1f10);
  border: none;
  padding: 1.6rem 2rem 1.2rem;
}
#enquiryModal .modal-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  font-size: 1.7rem;
}
#enquiryModal .modal-subtitle {
  color: var(--gold-light);
  font-size: 0.85rem;
}
#enquiryModal .modal-body {
  background: var(--cream);
  padding: 2rem;
}
#enquiryModal .btn-close {
  filter: invert(1) brightness(2);
}
#enquiryModal .modal-footer {
  background: var(--cream);
  border-top: 1px solid var(--gold-light);
  padding: 1rem 2rem;
}

/* =========================================================
   AOS OVERRIDE
========================================================= */
[data-aos] {
  transition-property: transform, opacity !important;
}
