/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Champagne Gold — Primary Luxury Accent ── */
  --gold: #C9A04A;
  --gold-light: #E2BF72;
  --gold-dark: #9A7228;
  --gold-pale: rgba(201, 160, 74, 0.10);
  /* ── Warm Charcoal Dark Tones ── */
  --dark: #1A1612;
  --dark-2: #241E18;
  --dark-rich: #100D09;
  --dark-section: #1F1A15;
  /* ── Warm Neutral Light ── */
  --cream: #FAF6EE;
  --beige: #F0E9DB;
  --light-grey: #EDE8DF;
  --white: #FFFFFF;
  /* ── Typography ── */
  --grey: #5A5248;
  --text-muted: #8C8070;
  /* ── Borders, Shadows ── */
  --border: rgba(201, 160, 74, 0.22);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  --shadow-gold: 0 8px 32px rgba(201, 160, 74, 0.32);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.10);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* ── Jains Brand Blue kept for navbar only ── */
  --brand-blue: #2F2E94;
  --brand-blue-dark: #201F6E;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  /* font-family: 'Inter', sans-serif; */
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: clip;
  line-height: 1.7;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── NAVBAR ── */
/* #mainNav {
  background: rgba(18, 18, 28, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
  padding: 0.6rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
} */

#mainNav.scrolled {
  background: rgba(18, 18, 28, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.4rem 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* ── NAVBAR LOGO ── */
.navbar-brand img {
  max-height: 54px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.navbar-brand span {
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 1px;
}

.navbar-brand small {
  display: block;
  /* font-family: 'Inter', sans-serif; */
  font-size: 0.6rem;
  color: #aaa;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-radius: 2px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.navbar-toggler {
  border-color: var(--gold);
  background: transparent;
}

.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='%23C9A84C' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: url('../images/hero_banner.png') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12, 12, 20, 0.92) 0%, rgba(12, 12, 20, 0.60) 60%, rgba(12, 12, 20, 0.78) 100%),
    linear-gradient(to top, rgba(204, 34, 41, 0.12) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-highlight-item .num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  /* font-family: 'Playfair Display', serif; */
}

.hero-highlight-item .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--brand-blue));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.scroll-dot {
  width: 28px;
  height: 46px;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  margin: 0 auto 0.5rem;
}

.scroll-dot::after {
  content: '';
  width: 4px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(14px);
    opacity: 0.3
  }
}

.scroll-text {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── SECTION UTILITIES ── */
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.6rem;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold);
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.8;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold), transparent);
  margin: 1rem 0 2rem;
  border-radius: 2px;
}

.gold-line.center {
  margin: 1rem auto 2rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-lg {
  padding: 8rem 0;
}

.bg-dark-rich {
  background: var(--dark);
}

.bg-beige {
  background: var(--beige);
}

.bg-dark-2 {
  background: var(--dark-2);
}

/* ── ABOUT ── */
#about {
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.about-img-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--dark);
  color: var(--white);
  padding: 20px 32px 32px 32px;
  text-align: center;
  min-width: 140px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about-img-badge .badge-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  /* font-family: 'Playfair Display', serif; */
  line-height: 1;
  padding-bottom: 10px;
}

.about-img-badge .badge-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  border-radius: 2px;
}

.stat-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stat-card .stat-num {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── HIGHLIGHTS ── */
#highlights {
  background: var(--dark-section);
}

.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.highlight-card:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201, 160, 74, 0.2);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 160, 74, 0.18), rgba(47, 46, 148, 0.05));
  border: 1px solid rgba(201, 160, 74, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.highlight-card:hover .highlight-icon i {
  color: var(--dark) !important;
}

.highlight-card h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* ── AMENITIES ── */
#amenities {
  background: var(--beige);
}

.amenity-tabs .nav-link {
  color: var(--grey);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  margin: 0 0.3rem;
}

.amenity-tabs .nav-link.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.amenity-tabs .nav-link:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: var(--transition);
  margin-bottom: 0.8rem;
}

.amenity-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-gold);
}

.amenity-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}

.amenity-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
}

/* ── SPECIFICATIONS ── */
#specifications {
  background: var(--dark);
}

.spec-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 160, 74, 0.2);
  border-radius: 2px !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.spec-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.4rem 1.8rem;
  letter-spacing: 0.5px;
}

.spec-accordion .accordion-button:not(.collapsed) {
  background: rgba(201, 160, 74, 0.1);
  color: var(--gold-light);
  box-shadow: none;
  border-bottom: 1px solid rgba(201, 160, 74, 0.25);
}

.spec-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(79%) sepia(26%) saturate(752%) hue-rotate(8deg) brightness(96%) contrast(85%);
}

.spec-accordion .accordion-body {
  background: transparent;
  padding: 1.5rem 1.8rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.spec-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.spec-list li:last-child {
  border-bottom: none;
}

/* ── GALLERY ── */
#gallery {
  background: var(--beige);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── LOCATION ── */
#location {
  background: var(--cream);
}

.location-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
  height: 100%;
}

.location-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.location-card .loc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.location-card h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.location-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-card ul li {
  font-size: 0.83rem;
  color: var(--grey);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-card ul li:last-child {
  border-bottom: none;
}

.loc-dist {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── MAP CONTAINER ── */
.map-container {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  padding: 0.8rem;
}

.map-container:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.map-container iframe {
  display: block;
  filter: grayscale(15%) contrast(105%);
  transition: var(--transition);
  border-radius: 2px;
}

.map-container:hover iframe {
  filter: none;
}

/* ── FLOOR PLANS ── */
#floorplans {
  background: var(--dark-2);
}

.floor-tab-nav .nav-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
}

.floor-tab-nav .nav-link.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold) !important;
}

.floor-plan-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  padding: 2.5rem;
}

.floor-plan-visual {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  padding: 3rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.floor-plan-visual i {
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.3);
  margin-bottom: 1rem;
}

.floor-plan-visual p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.floor-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.floor-detail:last-child {
  border-bottom: none;
}

.floor-detail .fd-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floor-detail .fd-val {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── CONTACT ── */
#contact {
  background: var(--beige);
}

.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #E0DAD0;
  border-radius: 2px;
  padding: 12px 1.2rem;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  background: #FDFBF8;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--white);
  outline: none;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.ci-text h6 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
}

.ci-text p {
  font-size: 0.9rem;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-rich);
  color: rgba(255, 255, 255, 0.55);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--brand-blue);
}

.footer-brand span {
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-brand small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.2rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin: 1rem 0 1.5rem;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-red-light);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── MOBILE STICKY CTA ── */
.sticky-enquire-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: none;
}

.sticky-enquire-btn a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(47, 46, 148, 0.5);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(47, 46, 148, 0.45)
  }

  50% {
    box-shadow: 0 8px 50px rgba(47, 46, 148, 0.75)
  }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom p {
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  margin-bottom: 10px;
}

.mob-btn.fixed {
  z-index: 99999;
  width: 100%;
  bottom: 0;
  overflow: hidden;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.35);
}

.fixed {
  position: fixed;
}

.mob-btn.fixed a:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--gold);
  color: var(--dark) !important;
}

.mob-btn.fixed a {
  width: 50%;
  float: left;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--dark-2);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-bg {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* min-height: 500px; */
}

.form-top {
  position: absolute;
  z-index: 10000;
  width: 100%;
  top: 45px;
}

.default-form-area {
  /* padding: 86px 50px 118px 47px; */
  /* padding: 0px 28px 20px 16px; */
  padding: 0px 20px 0px 20px;
}

.second-section {
  color: #000;
  padding-top: 30px;
}

.second-section h5 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

.second-section p {
  font-size: 18px;
  font-weight: 500;
}

.form-note {
  font-size: 12px !important;
  color: grey;
  text-align: center;
}

.sub-btn {
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 800;
}

.sub-btn button {
  color: var(--dark);
  font-weight: 800;
  width: 100% !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 4px;
  padding: 12px 6px;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.sub-btn button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.form-card {
  background: #fff;
  /* padding: 0px 30px; */
  border-radius: 12px;
  /* box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1); */
  margin-top: 20px;
}

/* #mainNav {
  padding-block: 0px;
  background: rgba(18, 18, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 61, 82, 0.12);
  transition: all var(--transition-fast);
}

.navbar-brand {
  margin-right: 0px !important;
} */

.nav-logo {
  /* max-height: 60px; */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.mainmenu-area {
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  /* padding: 0.6rem 0; */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.top-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.link-btn4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-style-one {
  position: relative;
  line-height: 24px;
  color: var(--dark);
  background: var(--gold);
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  text-decoration: none;
}

.btn-style-one:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-style-one img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0.2);
}

/* Override horizontal animations on mobile to prevent overflow/shifting */
/* @media (max-width: 767.98px) {
  .reveal-left {
    transform: translateY(20px);
  }

  .reveal-right {
    transform: translateY(20px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }
} */
 .form-card .form-control {
    border-left: 0;
    width: 80% !important;
    height: 45px;
}