/* assets/css/style.css — Root Variables & Base */
:root {
  /* Brand Colors — Indian Palette */
  --color-saffron: #FF9933;
  --color-maroon: #800020;
  --color-gold: #D4AF37;
  --color-turmeric: #F4A300;
  --color-cream: #FFF8E7;
  --color-deep-green: #1A6B1A;
  --color-charcoal: #2C2C2C;
  --color-white: #FFFFFF;
  --color-light-bg: #FFF3E0;
  --color-dark-bg: #1A0A0A;

  --gradient-hero: linear-gradient(135deg, rgba(128, 0, 32, 0.85) 0%, rgba(44, 10, 10, 0.70) 100%);
  --gradient-cta: linear-gradient(90deg, #FF9933 0%, #D4AF37 50%, #FF9933 100%);
  --gradient-gold-line: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
  --gradient-card-hover: linear-gradient(180deg, transparent 40%, rgba(128, 0, 32, 0.85) 100%);

  /* Typography */
  --font-display: 'Yatra One', cursive;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --font-accent: 'Dancing Script', cursive;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Typography Scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 40px;

  /* Border & Shadows */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-card: 0 4px 24px rgba(128, 0, 32, 0.10);
  --shadow-hover: 0 8px 40px rgba(255, 153, 51, 0.25);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.4);

  /* Transitions & Z-index */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;

  /* Z-index layers */
  --z-whatsapp: 900;
  --z-nav: 800;
  --z-modal: 1000;
  --z-preloader: 9999;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  /* Offset for sticky nav */
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: var(--text-base);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Sections */
section {
  padding: var(--space-xl) 0;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.section-header .hindi-sub {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-maroon);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header.dark-mode .hindi-sub {
  color: var(--color-saffron);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-maroon);
  line-height: 1.2;
}

.section-header p {
  margin-top: var(--space-md);
  color: #555;
}

.section-header.dark-mode h2 {
  color: var(--color-white);
}

.gold-underline {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold-line);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-dark-bg);
  z-index: var(--z-preloader);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-maroon);
  border-top-color: var(--color-saffron);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

.loading-text {
  margin-top: 16px;
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 20px;
  letter-spacing: 2px;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background: var(--gradient-cta);
  background-size: 200% auto;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background-position var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
  box-shadow: 0 4px 20px rgba(255, 153, 51, 0.4);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 153, 51, 0.6);
  color: var(--color-white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-saffron);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: var(--color-saffron);
  color: var(--color-white);
}

/* Special Button */
.btn-special {
  background: linear-gradient(45deg, var(--color-gold), var(--color-saffron));
  color: var(--color-white) !important;
  border: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
  animation: pulse-glow 2s infinite;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.btn-special::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

/* Navigation Component */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 0;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(26, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}

.nav-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
  transition: filter var(--transition-fast);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 8px rgba(255, 153, 51, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: 3vw;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 1px;
  position: relative;
  transition: all var(--transition-fast);
  padding: 8px 16px;
  border-radius: 30px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-saffron);
  background: rgba(255, 153, 51, 0.1);
}

.nav-links a::after {
  display: none;
}

.nav-cta-item {
  margin-left: auto;
}

.nav-cta-item a:hover,
.nav-cta-item a.active {
  background: transparent;
}

.nav-cta-item a::after {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}

/* Hero Section */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  /* Handled in JS parallax or mobile friendly */
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

#particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-display);
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  font-size: clamp(40px, 8vw, 96px);
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 3vw, 24px);
  color: var(--color-cream);
  min-height: 36px;
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-desc {
  font-size: var(--text-md);
  color: rgba(255, 248, 231, 0.9);
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounceDown 2s infinite;
  transition: color var(--transition-fast);
  cursor: pointer;
  z-index: 2;
}

.scroll-down:hover {
  color: var(--color-saffron);
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-identity {
  display: flex;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto;
  background: rgba(26, 10, 10, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 18px 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.identity-badge {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.identity-icon {
  font-size: 20px;
  line-height: 1;
}

.veg-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #008000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: white;
}

.veg-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #008000;
  border-radius: 50%;
}

.identity-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-cream);
  opacity: 0.8;
}

/* Decorative Divider */
.section-paisley-border {
  height: 8px;
  width: 100%;
  background: repeating-linear-gradient(90deg,
      var(--color-saffron) 0px,
      var(--color-gold) 10px,
      var(--color-maroon) 20px,
      var(--color-saffron) 30px);
  opacity: 0.6;
}

/* About Section */
#about {
  background-color: var(--color-cream);
}

.about-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.mandala-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23D4AF37' fill-opacity='0.4' d='M0,0 C50,0 100,50 100,100 C100,50 50,0 0,0 Z'/%3E%3C/svg%3E");
  background-size: contain;
  z-index: 10;
}

.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-maroon);
  margin-bottom: var(--space-md);
}

.about-text p {
  color: #555;
  margin-bottom: var(--space-lg);
}

.features-list li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.feature-icon {
  font-size: 20px;
}

.rangoli-divider {
  height: 40px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'%3E%3Ccircle cx='40' cy='20' r='10' fill='none' stroke='%23D4AF37' stroke-width='1.5' opacity='0.4'/%3E%3Ccircle cx='40' cy='20' r='3' fill='%23D4AF37' opacity='0.4'/%3E%3Cpath d='M25 20 L55 20 M40 5 L40 35 M30 10 L50 30 M30 30 L50 10' stroke='%23D4AF37' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
  background-position: center;
  background-color: var(--color-white);
}

/* Menu Section */
#menu {
  background-color: var(--color-light-bg);
}

.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-xl);
  background: var(--color-white);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  background: transparent;
  border: none;
  color: #666;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.filter-btn:hover {
  color: var(--color-saffron);
}

.filter-btn.active {
  background: var(--color-saffron);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.menu-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.dish-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.dish-image-container {
  height: 240px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.dish-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 153, 51, 0.2);
}

.dish-card:hover .dish-image-container img {
  transform: scale(1.05);
}

.dish-overlay {
  display: none !important;
}

.dish-overlay span {
  display: none !important;
}

.dish-card:hover .dish-overlay {
  opacity: 0;
}

.dish-card:hover .dish-overlay span {
  transform: none;
}

.diet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.diet-badge.veg {
  border-color: var(--color-deep-green);
}

.diet-badge.veg .circle {
  width: 12px;
  height: 12px;
  background: var(--color-deep-green);
  border-radius: 50%;
}

.diet-badge.non-veg {
  border-color: #CC0000;
}

.diet-badge.non-veg .dot {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #CC0000;
}

.dish-content {
  padding: 24px;
}

.dish-content h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-maroon);
  margin-bottom: 8px;
}

.dish-desc {
  font-size: var(--text-sm);
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.dish-content h4 span {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
}

.order-link {
  background-color: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.order-link:hover, .order-link:active {
  background-color: #25D366;
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Download Menu Button */
.btn-download-menu {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
  text-decoration: none;
  color: var(--color-charcoal);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-normal), border-color var(--transition-fast);
  cursor: pointer;
}

.btn-download-menu:hover {
  transform: translateY(-3px);
  border-color: var(--color-saffron);
  box-shadow: 0 12px 32px rgba(255, 153, 51, 0.25);
}

.download-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.download-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.download-text strong {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  color: var(--color-maroon);
  display: block;
}

.download-text small {
  font-size: var(--text-xs);
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.menu-action {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Gallery Section */
#gallery {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
  height: 200px;
}

.gallery-item.tall {
  grid-row: span 2;
  height: calc(400px + 16px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  border: 2px solid transparent;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  border-color: var(--color-gold);
}

.zoom-icon {
  font-size: 32px;
  transform: scale(0.5);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

/* Authenticity / Reels Section */
.jali-bg {
  background-color: var(--color-maroon);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='none'/%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(212,175,55,0.15)'/%3E%3Cline x1='0' y1='20' x2='40' y2='20' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3Cline x1='20' y1='0' x2='20' y2='40' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  padding-bottom: 60px;
}

/* Contact Section */
#contact {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.contact-info {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-maroon);
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.info-item .icon {
  font-size: 24px;
}

.info-item h4 {
  font-size: 16px;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  color: #555;
  font-size: 14px;
}

.info-item a:hover {
  color: var(--color-saffron);
}

.hours-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  color: var(--color-charcoal);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-saffron);
  color: var(--color-white);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-card);
}

/* Footer */
#footer {
  background: var(--color-dark-bg);
  padding: 60px 0 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-saffron);
}

.footer-copy {
  margin-top: 24px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  width: 100%;
}

/* Floating WhatsApp & Back to Top */
#whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: var(--z-whatsapp);
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-ring 3s ease-in-out infinite;
  transition: transform 0.2s;
}

#whatsapp-float:hover {
  transform: scale(1.1);
}

#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: var(--z-whatsapp);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--color-saffron);
}