/* =============================================
   CSS VARIABLES — DESIGN TOKENS (AKNARA THEME)
============================================= */
:root {
  /* Primary Deep Purple Theme */
  --purple-deep:  #44175e; 
  --purple-main:  #672989; 
  --purple-light: #8e4ba8; 
  --purple-pale:  #f4edf7; 
  
  /* Secondary Gold/Beige Theme */
  --gold-main:    #A9821A; 
  --gold-light:   #d1b058; 
  --gold-text:    #826310; 
  
  /* Soft Backgrounds - Updated to crisp Pearl/Alabaster for high-end luxury */
  --warm-white:   #FDFCF8; 
  --white:        #FFFFFF;
  
  /* Typography */
  --text-dark:    #171717;
  --text-body:    #404040;
  --text-muted:   #737373;
  --border:       rgba(103, 41, 137, 0.15);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --section-pad: 3.5rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-card: 0 4px 20px rgba(103, 41, 137, 0.06);
  --shadow-hover: 0 12px 40px rgba(103, 41, 137, 0.12);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE WITH LUXURY BACKGROUND
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body { 
  font-family: var(--ff-body); 
  color: var(--text-body); 
  background-color: var(--white); 
  background-image:
    linear-gradient(rgba(169, 130, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 130, 26, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  background-attachment: fixed;
  overflow-x: hidden; 
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::after {
  content: 'A';
  font-family: var(--ff-display);
  position: fixed;
  bottom: -5vh;
  left: -2vw;
  font-size: 85vh;
  line-height: 1;
  color: var(--gold-main);
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   TYPOGRAPHY UTILITIES
============================================= */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-main);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--purple-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--purple-main); }
.section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .section-desc { margin: 0 auto; }
.section-header .eyebrow { justify-content: center; }

/* =============================================
   LAYOUT
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: var(--section-pad) 0; position: relative; z-index: 1; }
/* Replaced heavy beige with crisp, premium off-white */
.bg-warm { background-color: rgba(253, 252, 248, 0.95); } 
.bg-purple-deep { background-color: var(--purple-deep); color: white; }
.bg-pale { background-color: rgba(248, 245, 250, 0.95); }

/* =============================================
   NAVIGATION (SOLID WHITE & LARGER LOGO)
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* FORCED strict height so it never shrinks */
  height: 86px !important; 
  min-height: 86px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0 2rem;
}

/* Solid White Navbar */
#navbar.scrolled,
#navbar.solid-nav {
  background: #ffffff; 
  border-bottom: 1px solid rgba(103, 41, 137, 0.1);
  box-shadow: 0 4px 30px rgba(103, 41, 137, 0.08);
}

#navbar .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto;
  height: 100%; /* Ensures inner content fills the strict height */
}

.nav-logo {
  display: flex; align-items: center;
  transition: opacity var(--transition);
}

.nav-logo img {
  /* Increased size per client request */
  height: 60px !important; 
  width: auto;
}

/* =============================================
   NAVIGATION LINKS (Fixed Clean Underline)
============================================= */
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 2.5rem; 
} 

.nav-links a {
  font-size: 0.9rem; 
  font-weight: 500; 
  letter-spacing: 0.08em;
  text-transform: uppercase; 
  position: relative;
  transition: color var(--transition);
  display: inline-block;
  /* Adds a tiny bit of breathing room between the text and the line */
  padding: 4px 0; 
}

/* Link colors for the transparent state (top of Home page) */
#navbar:not(.scrolled):not(.solid-nav) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

/* Link colors for the Solid White state */
#navbar.scrolled .nav-links a:not(.active), 
#navbar.solid-nav .nav-links a:not(.active) { 
  color: var(--purple-deep); 
}

#navbar.scrolled .nav-links a:hover, 
#navbar.solid-nav .nav-links a:hover { 
  color: var(--purple-main); 
}

.nav-links a.active { 
  color: var(--gold-main) !important; 
  font-weight: 600; 
}

/* The perfectly positioned Gold Underline */
.nav-links a::after {
  content: ''; 
  position: absolute; 
  width: 0; 
  height: 2px;
  /* This ensures the line is always exactly at the bottom of the text */
  bottom: 0; 
  left: 0; 
  background-color: var(--gold-main); 
  transition: width var(--transition);
}

.nav-links a:hover::after, 
.nav-links a.active::after { 
  width: 100%; 
}

.nav-cta {
  background: var(--gold-main); color: var(--white); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 26px; border-radius: var(--radius-sm); border: none; transition: all var(--transition);
}

.nav-cta:hover { 
  background: var(--gold-light); 
  box-shadow: 0 4px 16px rgba(169,130,26,0.4); 
  color: var(--purple-deep); 
  transform: translateY(-1px);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: white; transition: all var(--transition); }
#navbar.scrolled .hamburger span, #navbar.solid-nav .hamburger span { background: var(--purple-deep); }

/* =============================================
   HERO SECTION
============================================= */
#hero {
  min-height: 100vh; background: linear-gradient(160deg, var(--purple-deep) 0%, #592377 40%, var(--purple-main) 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(169,130,26,0.07) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(155,95,192,0.2) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-img-wrap { position: absolute; right: 0; top: 0; bottom: 0; width: 48%; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; transform: scale(1.1); will-change: transform; }
.hero-img-gradient { position: absolute; inset: 0; background: linear-gradient(90deg, var(--purple-deep) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 0 1.5rem; }
.hero-eyebrow { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-main); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold-main); display: block; }
.hero-h1 { font-family: var(--ff-display); font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 300; line-height: 1.1; color: white; margin-bottom: 1.5rem; }
.hero-h1 em { font-style: italic; color: var(--gold-main); }
.hero-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-gold { background: var(--gold-main); color: var(--white); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border-radius: var(--radius-sm); border: none; display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 24px rgba(169,130,26,0.35); transform: translateY(-1px); color: var(--purple-deep); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 30px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.3); display: inline-flex; align-items: center; gap: 8px; transition: all var(--transition); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: white; }
.hero-stats { position: absolute; bottom: 3rem; right: 4rem; display: flex; gap: 2.5rem; z-index: 2; }
.hero-stat-item { text-align: center; }
.hero-stat-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 400; color: var(--gold-main); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; z-index: 2; animation: scrollHint 2s ease-in-out infinite; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
@keyframes scrollHint { 0%,100%{opacity:0.4;transform:translateX(-50%) translateY(0)} 50%{opacity:0.8;transform:translateX(-50%) translateY(4px)} }

/* =============================================
   BOOKING STRIP
============================================= */
.booking-strip { background: white; border-top: 3px solid var(--gold-main); box-shadow: 0 -4px 40px rgba(103,41,137,0.1); padding: 1.5rem 0; position: relative; z-index: 10; }
.booking-strip .container { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.booking-field { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 140px; }
.booking-field label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.booking-field input, .booking-field select { border: none; border-bottom: 1px solid var(--border); padding: 6px 0; font-size: 0.85rem; color: var(--text-dark); font-family: var(--ff-body); background: transparent; outline: none; transition: border-color var(--transition); }
.booking-field input:focus, .booking-field select:focus { border-color: var(--purple-main); }
.booking-divider { width: 1px; height: 40px; background: var(--border); }
.btn-book-strip { background: var(--purple-main); color: white; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius-sm); border: none; white-space: nowrap; transition: all var(--transition); width: 100%;}
.btn-book-strip:hover { background: var(--purple-deep); }

/* =============================================
   ABOUT US
============================================= */
#about .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; height: 480px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 78%; height: 85%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 54%; height: 52%; object-fit: cover; border-radius: var(--radius-lg); border: 4px solid white; box-shadow: var(--shadow-card); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { width: 36px; height: 36px; background: var(--purple-pale); color: var(--purple-main); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.about-feature-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.about-feature-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;}


/* =============================================
   FACILITIES
============================================= */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.facility-card-premium { position: relative; height: 340px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.facility-card-premium img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.facility-card-premium:hover img { transform: scale(1.08); }
.facility-overlay {
  position: absolute;
  inset: 0;
  /* Darker gradient at the bottom to ensure text readability */
  background: linear-gradient(to top, rgba(68,23,94,0.9) 0%, rgba(68,23,94,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  color: white;
  transition: background 0.4s ease;
}

/* On hover, increase the gradient so the text is even clearer */
.facility-card-premium:hover .facility-overlay {
  background: linear-gradient(to top, rgba(68,23,94,0.98) 0%, rgba(68,23,94,0.6) 60%, transparent 100%);
}

.facility-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold-main);
  margin-bottom: 0.4rem;
  transform: translateY(15px);
  transition: transform 0.4s ease;
  /* Added a subtle text shadow to make gold pop against any photo */
  text-shadow: 0 2px 4px rgba(0,0,0,0.5); 
}

.facility-desc-premium {
  font-size: 0.85rem;
  color: white; /* Changed from rgba(255,255,255,0.75) to solid white for readability */
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.facility-card-premium:hover .facility-title { transform: translateY(0); }
.facility-card-premium:hover .facility-desc-premium { opacity: 1; transform: translateY(0); }

/* =============================================
   ROOMS (FLEXBOX STRUCTURE)
============================================= */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.room-card { 
  background: white; 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  box-shadow: var(--shadow-card); 
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.room-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.room-img { height: 220px; position: relative; overflow: hidden; flex-shrink: 0; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-tag { position: absolute; top: 14px; left: 14px; background: var(--gold-main); color: var(--white); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 24px; }
.room-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.room-name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 400; color: var(--purple-deep); margin-bottom: 0.5rem; }
.room-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; flex-grow: 1; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.2rem; }
.room-amenity { font-size: 0.68rem; letter-spacing: 0.04em; color: var(--text-muted); background: var(--warm-white); padding: 4px 10px; border-radius: 20px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; }
.room-price { font-size: 0.75rem; color: var(--text-muted); }
.room-price strong { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; color: var(--purple-deep); margin-right: 2px; }
.btn-room { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-main); border: 1px solid var(--purple-main); background: transparent; padding: 9px 18px; border-radius: var(--radius-sm); transition: all var(--transition); }
.btn-room:hover { background: var(--purple-main); color: white; }

/* =============================================
   BANQUET HALLS
============================================= */
.banquet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.banquet-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--purple-deep); color: white; }
.banquet-img { height: 240px; background: linear-gradient(135deg, var(--purple-main), var(--purple-deep)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.banquet-body { padding: 2rem; }
.banquet-name { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 400; color: white; margin-bottom: 0.3rem; }
.banquet-subtitle { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold-main); text-transform: uppercase; margin-bottom: 1rem; }
.banquet-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.5rem; }
.banquet-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.banquet-spec-label { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.banquet-spec-val { font-family: var(--ff-display); font-size: 1.2rem; color: var(--gold-main); }
.btn-banquet { display: inline-flex; align-items: center; gap: 8px; margin-top: 1.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-main); border: 1px solid rgba(169,130,26,0.4); background: transparent; padding: 10px 22px; border-radius: var(--radius-sm); transition: all var(--transition); }
.btn-banquet:hover { background: var(--gold-main); color: var(--purple-deep); }

/* =============================================
   PLACES TO VISIT
============================================= */
.places-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.place-card-luxe { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition); border-bottom: 3px solid transparent; display: flex; flex-direction: column; }
.place-card-luxe:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-bottom-color: var(--gold-main); }
.place-img-luxe { height: 220px; overflow: hidden; position: relative; }
.place-img-luxe img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.place-card-luxe:hover .place-img-luxe img { transform: scale(1.08); }
.place-body-luxe { padding: 2rem 1.5rem 1.5rem; position: relative; flex-grow: 1; }
.place-dist-badge { position: absolute; top: -16px; right: 1.5rem; background: var(--purple-main); color: white; padding: 6px 14px; border-radius: 24px; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; box-shadow: 0 4px 12px rgba(103,41,137,0.25); display: flex; align-items: center; gap: 4px; }
.place-name-luxe { font-family: var(--ff-display); font-size: 1.4rem; color: var(--purple-deep); margin-bottom: 0.5rem; }
.place-desc-luxe { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   PROMOTIONS
============================================= */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.promo-card { border-radius: var(--radius-lg); overflow: hidden; background: white; border: 1px solid var(--border); transition: all var(--transition); position: relative; }
.promo-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.promo-badge { position: absolute; top: 14px; right: 14px; background: var(--gold-main); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; z-index: 2;}
.promo-img { height: 180px; overflow: hidden; position: relative; }
.promo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.promo-card:hover .promo-img img { transform: scale(1.05); }
.promo-body { padding: 1.4rem 1.5rem; }
.promo-date { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 6px; }
.promo-title { font-family: var(--ff-display); font-size: 1.2rem; color: var(--purple-deep); margin-bottom: 0.5rem; }
.promo-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.btn-promo { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-main); padding: 0; border: none; background: none; display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.btn-promo:hover { gap: 10px; }

/* =============================================
   CONTACT & BOOKING FORM
============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info { padding-top: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
.contact-icon { width: 44px; height: 44px; background: var(--purple-pale); color: var(--purple-main); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-val { font-size: 0.9rem; color: var(--text-dark); line-height: 1.5; }
.contact-social { display: flex; gap: 10px; margin-top: 2rem; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); color: var(--text-muted); background: white; }
.social-btn:hover { background: var(--purple-main); color: white; border-color: var(--purple-main); }
.contact-form, .booking-form-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-card); }
.booking-form-card { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select { border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; font-size: 0.85rem; font-family: var(--ff-body); color: var(--text-dark); background: var(--white); transition: border-color var(--transition); outline: none; resize: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple-main); background: white; }
.form-group textarea { min-height: 100px; }
.btn-submit { width: 100%; background: var(--purple-main); color: white; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px; border-radius: var(--radius-sm); border: none; margin-top: 0.5rem; transition: all var(--transition); }
.btn-submit:hover { background: var(--purple-deep); box-shadow: 0 6px 24px rgba(103,41,137,0.25); }
.booking-section-title { font-family: var(--ff-display); font-size: 1.3rem; color: var(--purple-deep); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.booking-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* Booking Page Specific */
.booking-steps { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; }
.step-item { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.step-item.active { color: var(--gold-main); }
.step-item.done { color: rgba(255,255,255,0.6); }
.step-num { width: 28px; height: 28px; border-radius: 50%; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 600; }
.step-item.active .step-num { background: var(--gold-main); color: var(--white); border-color: var(--gold-main); }
.step-line { width: 48px; height: 1px; background: rgba(255,255,255,0.15); }

/* =============================================
   FAQ
============================================= */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; cursor: pointer; }
.faq-question span { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--purple-main); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.2rem; }
.faq-answer p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   TESTIMONIALS & PARALLAX CTA
============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.testimonial-card::before { content: '"'; font-family: var(--ff-display); font-size: 5rem; font-weight: 300; color: var(--purple-pale); position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.testimonial-stars { color: var(--gold-main); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--purple-main); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; color: white; flex-shrink: 0; }
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); }
.author-origin { font-size: 0.7rem; color: var(--text-muted); }

.parallax-cta { min-height: 360px; background: linear-gradient(rgba(68,23,94,0.88), rgba(68,23,94,0.88)); background-attachment: fixed; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.parallax-cta h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: white; line-height: 1.2; margin-bottom: 0.75rem; }
.parallax-cta h2 em { color: var(--gold-main); font-style: italic; }
.parallax-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--purple-deep); color: white; padding: 4rem 0 0; position: relative; z-index: 1; margin-top: auto; z-index: 100;}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; } /* Making logo white for footer */
.footer-about { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-col-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-main); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   UTILITIES (Progress, Back to Top, Menu)
============================================= */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--purple-main), var(--gold-main)); z-index: 2000; width: 0%; transition: width 0.05s linear; }
.back-to-top { position: fixed; bottom: 2rem; left: 2rem; width: 44px; height: 44px; background: var(--purple-main); color: white; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 16px rgba(103,41,137,0.4); opacity: 0; transform: translateY(10px); transition: all var(--transition); z-index: 500; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--purple-deep); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .rooms-grid, .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  #about .about-grid, .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 2.5rem; --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 0 1.25rem; }
  
  #hero { min-height: 100svh; }
  .hero-img-wrap { width: 100%; opacity: 0.15; }
  .hero-img-gradient { background: linear-gradient(180deg, var(--purple-deep) 0%, rgba(68,23,94,0.6) 60%, transparent 100%); }
  .hero-content { max-width: 100%; padding: 7rem 1.25rem 2rem; }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions a { text-align: center; justify-content: center; width: 100%; }
  .hero-stats { position: relative; bottom: auto; right: auto; justify-content: center; background: rgba(255,255,255,0.05); margin-top: 2rem; padding: 1.5rem 1.25rem; }
  .hero-scroll-hint { display: none; }

  .booking-strip .container { flex-direction: column; align-items: stretch; gap: 0; }
  .booking-field { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
  .booking-divider { display: none; }
  .btn-book-strip { margin-top: 0.75rem; padding: 15px; }

  #about .about-grid, .facilities-grid, .rooms-grid, .banquet-grid, .promo-grid, .testimonials-grid, .contact-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 0.6rem; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(2) { grid-column: span 2; }
  
  .places-grid { grid-template-columns: 1fr 1fr; }
  .parallax-cta { background-attachment: scroll; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 2rem; }
  .places-grid { grid-template-columns: 1fr; }
  .booking-steps { gap: 0.25rem; }
  .step-item span:not(.step-num) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .parallax-cta { background-attachment: scroll; }
}
/* =============================================
   RESTORED SAFE SUB-PAGE HEADER
============================================= */
.sub-page-header {
  /* Slightly increased padding for a grander feel */
  padding: calc(var(--nav-h) + 6rem) 1.5rem 5rem;
  
  /* Rich gradient overlay mixed with a subtle, dark water ripple texture */
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,2 54,16 54,84 28,98 2,84 2,16' fill='none' stroke='rgba(169%2C130%2C26%2C0.22)' stroke-width='1'/%3E%3C/svg%3E");
background-size: 56px 50px;
  background-position: center;
  background-attachment: fixed; /* Creates a high-end parallax scroll effect */
  background-color: var(--purple-deep);
  
  text-align: center; 
  color: white; 
  position: relative; 
  overflow: hidden;
  border-bottom: 2px solid var(--gold-main); /* Elegant gold grounding line */
  z-index: 100;
}
.sub-page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 100%, rgba(169, 130, 26, 0.2) 0%, transparent 65%);
  pointer-events: none;
}
.sub-page-title {
  font-family: var(--ff-display); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 300; 
  margin-bottom: 1.2rem; position: relative; z-index: 2; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.sub-page-title em { color: var(--gold-main); font-style: italic; }
.sub-page-subtitle {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); max-width: 650px;
  margin: 0 auto; position: relative; z-index: 2; line-height: 1.7; font-weight: 300;
}

/* =============================================
   HERO SLIDER (BULLETPROOF ANIMATION)
============================================= */
#hero-slider-section {
  position: relative;
  height: 100vh; min-height: 600px;
  width: 100%;
  overflow: hidden;
  background-color: #111; /* Fallback dark */
}
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  /* The slow zoom effect triggers only when active */
  animation: kenburns 5.5s ease-out forwards;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(68,23,94,0.4) 0%, rgba(17,17,17,0.8) 100%);
  z-index: 3;
}
.slider-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; align-items: center; /* Vertically centers the text */
}

/* =============================================
   PREMIUM BANQUETS PAGE REDESIGN
============================================= */
.luxe-split-section {
  display: flex;
  min-height: 85vh;
  background: white;
  border-bottom: 1px solid var(--border);
}
.luxe-split-section.reverse { flex-direction: row-reverse; background: var(--warm-white); }
.luxe-image-half {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.luxe-image-half img {
  width: 100%; height: 100%; object-fit: cover;
}
.luxe-content-half {
  width: 50%;
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.luxe-hall-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--purple-deep);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.luxe-hall-cap {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.luxe-price-wrap {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
.luxe-price-box h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.luxe-price-box .amount {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--purple-main);
}
.per-plate {
  margin-top: 2rem;
  background: var(--purple-pale);
  padding: 1.5rem;
  border-left: 3px solid var(--gold-main);
  font-size: 0.9rem;
  color: var(--purple-deep);
}

/* Premium Inclusions Grid */
.premium-inclusions-wrap { padding: 6rem 0; background: white; }
.premium-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem 3rem;
  margin-top: 4rem;
}
.premium-inclusion-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.premium-inclusion-item svg {
  color: var(--gold-main);
  flex-shrink: 0;
}
.premium-inclusion-text {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 400;
}

@media (max-width: 992px) {
  .luxe-split-section, .luxe-split-section.reverse { flex-direction: column; min-height: auto; }
  .luxe-image-half, .luxe-content-half { width: 100%; }
  .luxe-image-half { height: 400px; }
  .luxe-content-half { padding: 4rem 2rem; }
  .luxe-price-wrap { flex-direction: column; gap: 1.5rem; }
}

/* =============================================
   MOBILE NAVIGATION FIXES
   ============================================= */
@media (max-width: 768px) {
  .nav-cta { display: none; }

  .hamburger { 
    display: flex !important; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    z-index: 1001;
  }
  
  .hamburger span { 
    width: 24px; 
    height: 2px; 
    background: #44175e; 
    transition: all 0.4s ease; 
  }

  .nav-links { 
    display: none; /* Default hidden */
    flex-direction: column; 
    position: fixed; 
    top: 86px; /* Match your navbar height */
    left: 0; 
    right: 0; 
    background: #ffffff; 
    padding: 2rem; 
    gap: 1.5rem; 
    z-index: 999; 
    text-align: center; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  /* This is the key: when JS adds the class, display it */
  .nav-links.is-open { 
    display: flex !important; 
  }

  .nav-links a { 
    color: #44175e !important; 
    font-weight: 600;
  }
}

/* =============================================
   LUXURY SHOWCASE GALLERY GRID (UPGRADE)
   ============================================= */
.luxury-hall-gallery {
  padding: 3rem 0 5rem;
  background: var(--bg-main, #ffffff);
}

.gallery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.showcase-item {
  position: relative;
  border-radius: 8px; /* Elegant rounded corners */
  overflow: hidden; /* Automatically crops edge-to-edge */
  aspect-ratio: 4 / 3;
  background: #2a0e3a; /* Deep purple placeholder, never white */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06); /* Luxury soft elevation */
  cursor: pointer;
  border: none !important; /* Removes those cheap borders */
  transform: translateZ(0); /* Stops image flickering on hover */
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Forces photo to fill 100% of the box */
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Luxury zoom effect on hover */
.showcase-item:hover img {
  transform: scale(1.10);
}

/* Dark Purple & Gold Sliding Overlay */
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(68, 23, 94, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-tag {
  color: #ffffff;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.showcase-item:hover .showcase-tag {
  transform: translateY(0);
}

.showcase-tag span {
  color: var(--gold-main, #d4af37);
}

/* Responsive: 2 columns on tablet, 1 column on small phones */
@media (max-width: 992px) {
  .gallery-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 576px) {
  .gallery-showcase-grid { grid-template-columns: repeat(1, 1fr); gap: 1rem; }
}

/* =============================================
   HOME PAGE LUXURY 4x3 GALLERY GRID
   ============================================= */
.home-gallery-section {
  padding: 4rem 0 5rem;
  position: relative;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.home-gallery-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* Keeps all 12 photos perfectly uniform */
  background: #2a0e3a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transform: translateZ(0); /* Stops flickering during animations */
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Smooth zoom on hover */
.home-gallery-card:hover img {
  transform: scale(1.10);
}

/* Luxury Purple & Gold Overlay */
.home-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(68, 23, 94, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-gallery-card:hover .home-gallery-overlay {
  opacity: 1;
}

.home-gallery-label {
  color: #ffffff;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.home-gallery-card:hover .home-gallery-label {
  transform: translateY(0);
}

.home-gallery-label span {
  color: var(--gold-main, #d4af37);
  font-size: 0.9rem;
}

/* Responsive: 2 columns on tablets and phones */
@media (max-width: 992px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* =============================================
   WHATSAPP FLOATING WIDGET (LUXURY STYLE)
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Crisp SVG Icon */
.whatsapp-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

/* Subtle, Luxury Pulse Animation */
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse-wa 2.5s infinite;
}

/* Branded Deep Purple Tooltip on Hover */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--purple-deep, #2a0e3a);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold accent border */
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
  .whatsapp-tooltip {
    display: none; /* Hides tooltip on touchscreens so it doesn't get stuck */
  }
}

/* =============================================
   FOOTER SOCIAL MEDIA BUTTONS (LUXURY STYLE)
   ============================================= */
footer .contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

footer .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

/* Elevates and turns gold on hover */
footer .social-btn:hover {
  background: var(--gold-main, #d4af37);
  border-color: var(--gold-main, #d4af37);
  color: #2a0e3a; /* Deep purple icon for crisp, luxury contrast */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

footer .social-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

footer .social-btn:hover svg {
  transform: scale(1.1);
}