/* ==========================================================================
   Shivam Rooms — Ultra-Premium Minimalist Architecture
   Crisp White (#FFFFFF), Deep Charcoal Gray & Elegant Champagne Gold
   ========================================================================== */

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

:root {
  /* Crisp Minimalist & Boutique Hotel Palette */
  --bg-page: #FFFFFF;
  --bg-surface: #FFFFFF;
  --bg-subtle: #FAF9F6;
  --bg-soft: #F5F3EE;

  /* Typography Colors - Deep Charcoal Gray for Sharp Contrast */
  --charcoal-deep: #111111;
  --charcoal-main: #1F1E1D;
  --charcoal-muted: #54534E;
  --charcoal-light: #7E7C76;

  /* Elegant Champagne Gold Accents */
  --gold-primary: #B89047;
  --gold-hover: #9E7938;
  --gold-light: #DFD3BC;
  --gold-subtle: #FDFBF7;
  --gold-gradient: linear-gradient(135deg, #CBA86B 0%, #B89047 100%);
  --gold-gradient-hover: linear-gradient(135deg, #B89047 0%, #9E7938 100%);

  /* Borders & Shadows */
  --border-subtle: #EFECE6;
  --border-focus: #D4CDBF;
  --border-gold: #D8C7A5;

  /* Refined Architectural Shadows */
  --shadow-subtle: 0 4px 20px rgba(17, 17, 17, 0.03);
  --shadow-card: 0 14px 38px rgba(17, 17, 17, 0.05);
  --shadow-hover: 0 24px 56px rgba(17, 17, 17, 0.09);
  --shadow-gold: 0 8px 24px rgba(184, 144, 71, 0.22);

  /* WhatsApp Brand */
  --whatsapp-bg: #25D366;
  --whatsapp-hover: #1EBE5D;

  /* Layout Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--charcoal-main);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-subtle);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: opacity var(--transition);
}

.brand-link:hover {
  opacity: 0.85;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal-deep);
  line-height: 1.15;
}

.brand-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 0.15rem;
}

.btn-click-to-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.35rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--charcoal-deep);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.btn-click-to-call i {
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.btn-click-to-call:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-click-to-call:hover i {
  color: #FFFFFF;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--whatsapp-bg);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
  transition: all var(--transition);
}

.btn-header-wa:hover {
  background: var(--whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   HERO SECTION (SWEET, AIRY & CENTERED)
   ========================================================================== */
.hero-section {
  padding: 6.5rem 1.5rem 7.5rem;
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}

/* Subtle architectural radial glow */
.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(184, 144, 71, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal-deep);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-subtle);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--charcoal-deep);
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

.hero-headline .gold-accent {
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 500;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--charcoal-muted);
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2.1rem;
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.btn-hero-primary i {
  font-size: 0.85rem;
  transition: transform var(--transition);
}

.btn-hero-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184, 144, 71, 0.32);
}

.btn-hero-primary:hover i {
  transform: translateY(2px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.9rem;
  background: transparent;
  color: var(--charcoal-deep);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

.btn-hero-alt {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.9rem;
  background: var(--bg-soft);
  color: var(--charcoal-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-alt i {
  color: var(--gold-primary);
}

.btn-hero-alt:hover {
  background: var(--bg-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

/* ==========================================================================
   ROOMS & PREMIUM TARIFF PLANS (STRICT MINIMALIST GRID)
   ========================================================================== */
.tariffs-section {
  padding: 5rem 1.5rem 7.5rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal-deep);
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.tariff-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

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

.tariff-card.featured {
  border: 1.5px solid var(--gold-primary);
  background: #FFFFFF;
}

/* Optional subtle golden accent line at the top of cards */
.tariff-card::top {
  content: "";
  display: block;
  height: 3px;
  background: var(--gold-primary);
}

.room-photo-placeholder {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-soft);
}

.room-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tariff-card:hover .room-photo-placeholder img {
  transform: scale(1.06);
}

.card-content {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal-deep);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.card-duration-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background: #181716;
  border: 1px solid rgba(229, 193, 88, 0.45);
  border-radius: var(--radius-full);
  color: #F8E3B6;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0.1rem auto 1.4rem;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.2);
  transition: all var(--transition);
}

.card-duration-badge i {
  color: #E5C158;
  font-size: 0.9rem;
}

.tariff-card.featured .card-duration-badge {
  background: linear-gradient(135deg, #E5C158 0%, #B89047 100%);
  color: #111111;
  border-color: #F8E3B6;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(184, 144, 71, 0.38);
}

.tariff-card.featured .card-duration-badge i {
  color: #111111;
}

.card-rates {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-gold);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  margin: 0 auto 1.3rem;
  font-size: 0.92rem;
  color: var(--charcoal-main);
  flex-wrap: wrap;
}

.rate-item {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--charcoal-muted);
}

.rate-val {
  color: var(--charcoal-deep);
  font-weight: 700;
  font-size: 1rem;
}

.rate-divider {
  color: var(--gold-primary);
  opacity: 0.6;
}

.card-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-whatsapp-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--whatsapp-bg);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.22);
  transition: all var(--transition);
}

.btn-whatsapp-book i {
  font-size: 1.15rem;
}

.card-quick-call {
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--charcoal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.card-quick-call a {
  color: var(--charcoal-deep);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.card-quick-call a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   PHOTO GALLERY SECTION & READY-TO-UPLOAD SLOTS
   ========================================================================== */
.gallery-section {
  padding: 5rem 1.5rem 7rem;
  background: var(--bg-page);
}

.section-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: var(--charcoal-muted);
  max-width: 600px;
  margin: 0.8rem auto 0;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
  aspect-ratio: 4 / 3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.gallery-img-box {
  width: 100%;
  height: 100%;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.25) 50%, rgba(17, 17, 17, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.overlay-content {
  transform: translateY(12px);
  transition: transform var(--transition);
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.gallery-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(184, 144, 71, 0.9);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.gallery-caption {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.gallery-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.gallery-zoom-btn i {
  font-size: 0.88rem;
}

/* ==========================================================================
   FULL-SCREEN LIGHTBOX MODAL
   ========================================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-box {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .lightbox-content-box {
  transform: scale(1);
}

.lightbox-img {
  max-width: 88vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-caption {
  margin-top: 1.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: #FFFFFF;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: absolute;
  top: 1.8rem;
  right: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  border-color: transparent;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-nav.prev {
  left: 2rem;
}

.lightbox-nav.next {
  right: 2rem;
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

/* ==========================================================================
   DEDICATED INSTANT HELP DESK & CONTACT OPTIONS SECTION
   ========================================================================== */
.contact-helpline-section {
  padding: 6rem 1.5rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
}

.helplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.helpline-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.helpline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.helpline-card:hover::before {
  opacity: 1;
}

.helpline-card.whatsapp::before {
  background: var(--whatsapp-bg);
}

.helpline-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}

.helpline-card.whatsapp .helpline-icon {
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-bg);
}

.helpline-card:hover .helpline-icon {
  transform: scale(1.1);
}

.helpline-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.helpline-card.whatsapp .helpline-badge {
  color: var(--whatsapp-bg);
}

.helpline-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal-deep);
  margin-bottom: 0.75rem;
}

.helpline-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.btn-helpline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-helpline-action.primary,
.btn-helpline-action.secondary,
.btn-helpline-action.location {
  background: var(--bg-subtle);
  color: var(--charcoal-deep);
  border: 1px solid var(--border-gold);
}

.btn-helpline-action.primary:hover,
.btn-helpline-action.secondary:hover,
.btn-helpline-action.location:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-helpline-action.whatsapp {
  background: var(--whatsapp-bg);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.22);
}

.btn-helpline-action.whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   MINIMAL FOOTER & LOCATION DETAILS
   ========================================================================== */
.site-footer {
  padding: 5.5rem 1.5rem 3rem;
  background: var(--bg-page);
}

.footer-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.footer-location-block {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
}

.address-snippet {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: var(--charcoal-deep);
  line-height: 1.5;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-navigate-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.2rem;
  background: var(--charcoal-deep);
  color: #FFFFFF;
  border: 1px solid var(--charcoal-deep);
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-navigate-maps i {
  color: var(--gold-primary);
  font-size: 1.05rem;
  transition: transform var(--transition);
}

.btn-navigate-maps:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-navigate-maps:hover i {
  color: #FFFFFF;
  transform: scale(1.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

.gold-dot {
  color: var(--gold-primary);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp-bg);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all var(--transition);
}

.floating-wa-btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   MOBILE & RESPONSIVE ADAPTATIONS
   ========================================================================== */
@media (max-width: 968px) {
  .tariffs-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR (DEFAULT HIDDEN ON DESKTOP)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.85rem 1.15rem;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-subtext {
    font-size: 0.72rem;
  }

  .header-action {
    display: flex;
    gap: 0.5rem;
  }

  .btn-click-to-call,
  .btn-header-wa {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .hero-section {
    padding: 3.5rem 1.15rem 4.5rem;
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.4rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 0.98rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  /* Full width touch targets in Hero */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn-hero-primary,
  .hero-cta-group .btn-hero-secondary,
  .hero-cta-group .btn-hero-alt {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    font-size: 0.96rem;
  }

  .tariffs-section,
  .gallery-section,
  .contact-helpline-section {
    padding: 3.5rem 1.15rem 4.5rem;
  }

  /* Single column grids with perfect spacing */
  .tariffs-grid,
  .gallery-grid,
  .helplines-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav.prev {
    left: 0.6rem;
  }

  .lightbox-nav.next {
    right: 0.6rem;
  }

  .card-content {
    padding: 1.6rem 1.2rem;
  }

  .card-rates {
    padding: 0.6rem 0.9rem;
    font-size: 0.86rem;
    gap: 0.45rem;
  }

  /* Full width touch buttons for cards */
  .btn-whatsapp-book,
  .btn-helpline-action {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
  }

  /* Stacked quick-call numbers for error-free thumb tapping */
  .card-quick-call {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    background: var(--bg-soft);
    padding: 0.65rem;
    border-radius: var(--radius-md);
    margin-top: 0.9rem;
  }

  .card-quick-call span:nth-of-type(2) {
    display: none; /* Hide the dot separator */
  }

  .site-footer {
    padding: 3.5rem 1.15rem 6.5rem !important;
  }

  .address-snippet {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  /* Hide floating button on mobile in favor of the full bottom sticky action bar */
  .floating-wa-btn {
    display: none !important;
  }

  /* Activate Fixed Mobile Sticky Action Bar */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.65rem 1rem 0.85rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.14);
    border-top: 1px solid var(--border-gold);
    gap: 0.75rem;
  }

  .mobile-bar-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
  }

  .mobile-bar-btn.call {
    background: var(--charcoal-deep);
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.2);
  }

  .mobile-bar-btn.whatsapp {
    background: var(--whatsapp-bg);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}
