/* ==========================================================================
   Brij Vila Jaisalmer — About Us Page Styles
   File: about.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Local Variables
   -------------------------------------------------------------------------- */
:root {
  --gold: #9f875c;
  --gold-light: #c5b388;
  --gold-glow: rgba(159, 135, 92, 0.15);
  --dark: #111111;
  --dark-surface: #181818;
  --text-dark: #2a2a2a;
  --text-muted: #666666;
  --text-light: #ececec;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Base Helpers
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}



  

.about-hero, 
section {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.story-images {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.floating-img {
  position: absolute;
  bottom: -20px;
  right: 0px;
  width: 48%;
  max-width: 260px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

.text-center { 
  text-align: center; 
}

.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.main-img.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* Match your main container border-radius */
  width: 100%;
  height: 100%;
  min-height: 520px; /* Adjust according to your layout design */
}

.main-img.video-wrapper video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ==========================================================================
   Header & Navbar Styles
   ========================================================================== *//* ===========================================================
   NAVBAR (Same as Homepage)
   =========================================================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    padding:0 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#F8F5EF;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(197,160,89,.18);
    z-index:9999;
}

.navbar .nav-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.navbar .nav-logo-img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:1px solid rgba(197,160,89,.35);
    transition:.35s;
}

.navbar .nav-logo:hover .nav-logo-img{
    transform:scale(1.05);
}

.navbar .logo-text-group{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1.05;
}

.navbar .logo-main{
    font-family:'Cinzel',serif;
    font-size:1.35rem;
    font-weight:600;
    letter-spacing:2px;
    color:#c5a059;
    text-transform:uppercase;
    white-space:nowrap;
}

.navbar .logo-sub{
    display: none;
}

.navbar .nav-links{
    display:flex;
    align-items:center;
    gap:32px;
}

.navbar .nav-links a{
    text-decoration:none;
    color:#2C2C2C;
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:.9rem;
    transition:.3s;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active{
    color:#c5a059;
}

.navbar .btn-primary{
    padding:12px 24px;
}

/* Mobile */

@media(max-width:768px){

    .navbar{
        height:72px;
        padding:0 20px;
    }

    .navbar .nav-links,
    .navbar > .btn-primary {
        display: none !important;
    }

    .navbar .nav-logo-img{
        width:42px;
        height:42px;
    }

    .navbar .logo-main{
        font-size:1.05rem;
    }

    .navbar .logo-sub{
        display: none;
    }

}

/* Navbar Book Now Button */
.navbar .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    background:#9f875c;
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:.82rem;
    font-weight:600;
    border:1px solid #9f875c;
    border-radius:4px;
    transition:all .35s ease;
    white-space:nowrap;
}

.navbar .btn-primary:hover{
    background:#c5b388;
    border-color:#c5b388;
    color:#fff;
    transform:translateY(-2px);
}

/* Mobile menu (matches home page behaviour) */
.navbar .nav-hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 10001;
}

.navbar .nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #2C2C2C;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease;
  transform-origin: center;
}

.navbar .nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar .nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar .nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar .nav-hamburger {
    display: flex !important;
    flex-shrink: 0;
    margin-left: auto;
  }
}

.nav-mobile {
  display: flex;
  position: fixed;
  inset: 0;
  transform-style: flat;
  perspective: none;
  background: rgba(26, 24, 21, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile a,
.nav-mobile .mob-link {
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #F8F4EB;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(14px);
}

.nav-mobile.open a,
.nav-mobile.open .mob-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open a:nth-child(2) { transition-delay: 0.06s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.11s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.16s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.21s; }
.nav-mobile.open a:nth-child(6) { transition-delay: 0.26s; }
.nav-mobile.open a:nth-child(7) { transition-delay: 0.31s; }

.nav-mobile a:hover,
.nav-mobile .mob-link:hover {
  color: #c5b388;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  background: none;
  border: none;
  color: #c5b388;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   3. Hero Banner
   -------------------------------------------------------------------------- */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  background: url('./images/gallery.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.22) 0%, rgba(17,17,17,0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.gold-subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   4. Story Section (Split Architecture Layout)
   -------------------------------------------------------------------------- */
.about-story {
  padding: 100px 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.story-images {
  position: relative;
}

.img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.img-wrapper img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.main-img {
  width: 85%;
  height: 400px;
}

.floating-img {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 280px;
  border: 6px solid #ffffff;
}

.experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--dark);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #cccccc;
  margin-top: 4px;
  display: block;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.story-quote blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

/* .video-wrapper {
  overflow: hidden;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */
/* --------------------------------------------------------------------------
   5. Core Pillars / Philosophy Section
   -------------------------------------------------------------------------- */
/* ============================================================
   BRIJ EXPERIENCES — Curated Services Grid (About Page)
   ============================================================ */
.about-pillars.brij-experiences {
  padding: 5.5rem 0 6rem;
  background: var(--ivory, #faf8f5);
}

.brij-experiences-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 500;
  color: var(--charcoal, #2b2118);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.brij-experiences-header .header-line {
  width: 50px;
  height: 1px;
  background: var(--gold, #b88a3b);
  margin: 1rem auto 1.5rem;
}

.brij-experiences-intro {
  max-width: 36rem;
  margin: 0 auto 3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #6b6358;
  font-weight: 300;
}

.brij-experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.experience-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(184, 138, 59, 0.18);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 138, 59, 0.45);
  box-shadow: 0 18px 40px rgba(43, 33, 26, 0.07);
}

.experience-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ebe4d8;
}

.experience-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.experience-card:hover .experience-card-media img {
  transform: scale(1.06);
}

.experience-card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #f8f5ef;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(43, 33, 26, 0.35);
  pointer-events: none;
}

.experience-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.35rem 1.65rem;
}

.experience-card-cat {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b88a3b);
  margin-bottom: 0.55rem;
}

.experience-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal, #2b2118);
  line-height: 1.25;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

.experience-card-body p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #6b6358;
  font-weight: 300;
  margin-bottom: 1.25rem;
  flex: 1;
}

.experience-book-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  background: transparent;
  border: 1px solid var(--gold, #b88a3b);
  color: #4a4038;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, gap 0.35s ease;
}

.experience-book-btn i {
  font-size: 0.75rem;
  transition: transform 0.35s ease;
}

.experience-book-btn:hover,
.experience-book-btn:focus-visible {
  background: var(--gold, #b88a3b);
  color: #f8f5ef;
  border-color: var(--gold, #b88a3b);
  outline: none;
}

.experience-book-btn:hover i,
.experience-book-btn:focus-visible i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .brij-experiences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-pillars.brij-experiences {
    padding: 4rem 0 4.5rem;
  }

  .brij-experiences-intro {
    margin-bottom: 2.25rem;
    font-size: 0.9rem;
  }

  .brij-experiences-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .experience-card-body {
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .experience-book-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    min-height: 44px;
  }
}
/* --------------------------------------------------------------------------
   6. Key Metrics & Statistics Banner
   -------------------------------------------------------------------------- */
/* ============================================================
   EXTRA LUXURY STATS BANNER (THE BRIJ VILLA)
   ============================================================ */
.about-stats {
  background: var(--charcoal, #121212);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(184, 138, 59, 0.3);
  border-bottom: 1px solid rgba(184, 138, 59, 0.3);
  position: relative;
}

/* Subtle gold top/bottom accent line glow */
.about-stats::before,
.about-stats::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--gold, #b88a3b);
}

.about-stats::before {
  top: -1px;
}

.about-stats::after {
  bottom: -1px;
}

.stats-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  flex: 1;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold, #b88a3b);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(184, 138, 59, 0.15);
}

.stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.75);
}

/* Slim Gold Gradient Divider */
.stat-divider {
  width: 1px;
  height: 55px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 138, 59, 0.6),
    transparent
  );
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .about-stats {
    padding: 3.5rem 1rem;
  }
  .stats-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  .stat-divider {
    display: none;
  }
  .stat-number {
    font-size: 2.8rem;
  }
}

/* --------------------------------------------------------------------------
   7. Call To Action (CTA) Box
   -------------------------------------------------------------------------- */
/* ============================================================
   EXTRA LUXURY CTA SECTION (THE BRIJ VILLA)
   ============================================================ */
.about-cta {
  padding: 5rem 0;
  background: var(--ivory, #faf8f5);
}

.cta-card {
  background: var(--charcoal, #121212);
  border: 1px solid rgba(184, 138, 59, 0.35);
  border-radius: 4px;
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Subtle inset gold outline overlay for framing */
.cta-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(184, 138, 59, 0.15);
  pointer-events: none;
  border-radius: 2px;
}

.cta-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold, #b88a3b);
  display: block;
  margin-bottom: 0.75rem;
}

.cta-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.cta-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Primary Gold Button */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gold, #b88a3b);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border: 1px solid var(--gold, #b88a3b);
  border-radius: 2px;
  transition: all 0.35 ease;
}

.btn-primary:hover {
  background: #a37830;
  border-color: #a37830;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 138, 59, 0.25);
}

/* Outline Light Button */
.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--gold, #b88a3b);
  color: var(--gold, #b88a3b);
  transform: translateY(-2px);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 3.5rem 2rem;
    gap: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   8. Shared Footer Styles (Exact Match to Index CSS)
   ========================================================================== */
footer {
  background: #F8F5EF;
  color: #4A4038;
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(184, 138, 59, 0.25);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(184, 138, 59, 0.15);
}

footer .logo-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold, #9f875c);
  letter-spacing: 1px;
}

footer .nav-logo,
footer .nav-logo:hover,
footer .nav-logo:focus {
  text-decoration: none;
}

footer .logo-sub {
  display: none;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #85786D;
  line-height: 1.7;
  margin: 18px 0 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 59, 0.35);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #9f875c);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--gold, #9f875c);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #2B211A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #85786D;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold, #9f875c);
}

.contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: #85786D;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-item a {
  color: #85786D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold, #9f875c);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.82rem;
  color: #85786D;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #85786D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2B211A;
}

/* --------------------------------------------------------------------------
   9. Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .main-img {
    width: 100%;
    height: 380px;
  }
  
  .floating-img {
    display: none;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .stat-divider {
    display: none;
  }

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

@media (max-width: 600px) {
  .about-story, 
  .about-pillars, 
  .about-cta {
    padding: 60px 20px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions a {
    width: 100%;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}



/* =========================================================
   FOOTER SOCIAL ICON — BRAND COLORS
   ========================================================= */

.footer-social .social-btn[data-contact="whatsapp"] {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.45);
}

.footer-social .social-btn[data-contact="whatsapp"]:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}


.footer-social .social-btn[data-contact="instagram"] {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.45);
}

.footer-social .social-btn[data-contact="instagram"]:hover {
  background: #E1306C;
  color: #fff;
  border-color: #E1306C;
}


.footer-social .social-btn[data-contact="facebook"] {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.45);
}

.footer-social .social-btn[data-contact="facebook"]:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
} 



/* About Story - Main Hotel Image */
.about-story .main-img.video-wrapper {
  width: 85%;
  height: 450px !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
}

.about-story .main-img.video-wrapper img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ================================
   ABOUT STORY - MOBILE FIX
================================ */

@media (max-width: 768px) {

  .about-story {
    width: 100%;
    max-width: 100%;
    padding: 55px 22px 60px;
    overflow: hidden;
  }

  .about-story .story-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .about-story .story-images {
    width: 100%;
    max-width: 100%;
  }

  .about-story .main-img,
  .about-story .main-img.video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: 330px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  .about-story .main-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }

  .about-story .story-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-story .story-text h2 {
    font-size: 2.6rem;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: normal;
  }

  .about-story .story-text p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-title .footer-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
} 