/* ============================================================
   ROOT VARIABLES & BASE STYLES
============================================================ */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark: #a07c30;
  --maroon: #7b1f2e;
  --maroon-dark: #5a1520;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --cream: #fdf8f0;
  --light-cream: #faf6ef;
  --white: #ffffff;
  --gray: #6c757d;
  --border: rgba(201, 168, 76, 0.25);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.25);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: none;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
  background-color: var(--white);
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.gold-text { color: var(--gold); }
.maroon-text { color: var(--maroon); }
.bg-light-cream { background-color: var(--light-cream); }
.section-padding { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
  letter-spacing: 0.5px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
  color: var(--dark) !important;
}

.btn-outline-maroon {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 28px;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-maroon:hover {
  background: var(--maroon);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 31, 46, 0.3);
}

.btn-outline-hero {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 28px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
}
.btn-outline-hero:hover {
  background: var(--white);
  color: var(--dark) !important;
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  z-index: 1050;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.call-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  bottom: 28px;
  right: 22px;
}
.call-btn:hover {
  transform: scale(1.12) translateY(-2px);
  color: var(--dark);
}

/* ============================================================
   SIDE ENQUIRE BUTTON
============================================================ */
.side-enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 18px 10px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  border-radius: 8px 0 0 8px;
  z-index: 1049;
  cursor: pointer;
  box-shadow: -3px 0 15px rgba(201, 168, 76, 0.45);
  white-space: nowrap;
}
.side-enquire-btn:hover {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* ============================================================
   ENQUIRY MODAL
============================================================ */
.enquire-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.enquire-modal-header {
  background: linear-gradient(135deg, var(--dark), var(--maroon-dark));
  border-bottom: 2px solid var(--gold);
  padding: 20px 28px;
}
.modal-input {
  border: 1.5px solid #e0d5c0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: var(--transition);
  background: #fdf9f3;
}
.modal-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--white);
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNavbar {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.97), rgba(123, 31, 46, 0.95));
  backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
#mainNavbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.1);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 5, 20, 0.82) 0%,
    rgba(123, 31, 46, 0.55) 50%,
    rgba(10, 5, 20, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-btns { margin-top: 10px; }

.animate-fadeUp {
  opacity: 1;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-img-wrap {
  position: relative;
  padding: 20px 20px 40px 0;
}
.about-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 0 var(--gold);
  object-fit: cover;
  height: 480px;
}
.about-img-badge {
  position: absolute;
  bottom: 0;
  left: 20px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-dark);
  border: 2px solid var(--gold);
}
.badge-icon {
  font-size: 1.8rem;
  color: var(--gold);
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.badge-txt {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}
.about-img-secondary {
  position: absolute;
  top: 0;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 500;
}
.about-feature-box:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark), var(--maroon-dark), var(--dark));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
  position: relative;
  padding: 20px;
}
.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  display: inline;
  line-height: 1;
}
.stat-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
  vertical-align: super;
  font-size: 1rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.2);
  border-color: var(--border);
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 185px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay {
  opacity: 1;
}
.service-body {
  padding: 18px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 14px;
}
.service-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-btns .btn {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}
.service-btns .btn-outline-maroon {
  border-width: 1.5px;
  padding: 6px 14px;
}

/* ============================================================
   WHY CHOOSE US SECTION
============================================================ */
.why-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 50%, var(--maroon-dark) 100%);
  position: relative;
  overflow: hidden;
}
.why-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.04);
  pointer-events: none;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  backdrop-filter: blur(4px);
}
.why-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  border-color: var(--gold);
}
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  height: 240px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(123, 31, 46, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
}
.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold);
}
.gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  position: relative;
  background: url('../images/gallery/15.jpeg') center/cover no-repeat;
  padding: 90px 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(123, 31, 46, 0.85));
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-info-card {
  background: linear-gradient(135deg, var(--dark), var(--maroon-dark));
  color: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-dark);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.5;
}
.contact-info-value:hover { color: var(--gold); }

.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 2px solid var(--border);
}

/* ============================================================
   FOOTER
============================================================ */
.footer-section {
  background: #0f0f1a;
  border-top: 2px solid rgba(201, 168, 76, 0.3);
}
.footer-bottom {
  padding: 20px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MEDIA QUERIES
============================================================ */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .about-main-img { height: 350px; }
  .about-img-secondary { width: 100px; height: 100px; right: -10px; }
  .hero-slide { height: 80vh; min-height: 500px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 55px 0; }
  .about-img-secondary { display: none; }
  .about-main-img { height: 280px; box-shadow: 12px 12px 0 var(--gold); }
  .hero-slide { height: 100dvh; }
  .hero-title { font-size: 1.9rem; }
  .contact-form-card,
  .contact-info-card { padding: 24px 20px; }
  .stat-num { font-size: 2rem; }
  .gallery-item { height: 200px; }
}

@media (max-width: 575.98px) {
  .hero-btns .btn { font-size: 0.85rem; padding: 9px 18px; }
  .side-enquire-btn { padding: 14px 8px; font-size: 0.75rem; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
  .call-btn { bottom: 24px; right: 16px; }
}
