/* ===============================================
   SRINIVASABALAJIPACKAGE – STYLE.CSS  (IMPROVED)
   Color Palette: Temple Saffron + Deep Maroon + Gold
   =============================================== */

/* === CSS VARIABLES === */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C38;
  --saffron-dark: #CC5500;
  --maroon: #8B0000;
  --maroon-deep: #5C0000;
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --gold-dark: #B8860B;
  --cream: #FFF8EE;
  --white: #FFFFFF;
  --text-dark: #1A0A00;
  --text-mid: #4A2800;
  --text-light: #7A5C3A;
  --bg-light: #FFF3E0;
  --bg-mid: #FDE8C8;
  --shadow-warm: 0 8px 32px rgba(139,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-display: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ============================================================
   POPUP – IMPROVED: gold frame, decorative top/bottom bands
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: linear-gradient(160deg, #fff9f0 0%, #fff3e0 60%, #fff8ee 100%);
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow:
    0 0 0 3px var(--gold),
    0 0 0 6px rgba(212,175,55,0.25),
    0 32px 80px rgba(92,0,0,0.45);
  transform: translateY(36px) scale(0.93);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}

/* Decorative top band */
.popup-deco-top {
  height: 8px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--saffron), var(--gold), var(--saffron), var(--maroon-deep));
}

/* Decorative bottom band */
.popup-deco-bottom {
  height: 8px;
  background: linear-gradient(90deg, var(--maroon-deep), var(--gold-dark), var(--gold-light), var(--gold-dark), var(--maroon-deep));
}

.popup-inner {
  padding: 32px 36px 28px;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(92,0,0,0.1);
  border: 1.5px solid rgba(92,0,0,0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  color: var(--maroon);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.popup-close:hover {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
}

.popup-logo-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.popup-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(139,0,0,0.25));
}
.popup-logo-fallback {
  font-size: 52px;
  line-height: 1;
}
.popup-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--maroon-deep);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.popup-sub {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}
.popup-divider {
  margin: 0 auto 22px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}
.popup-divider::before,
.popup-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.popup-divider::before { right: calc(100% + 10px); }
.popup-divider::after  { left:  calc(100% + 10px); }

.popup-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-call-popup, .btn-wa-popup {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  flex: 1;
  min-width: 140px;
  max-width: 190px;
  justify-content: center;
}
.btn-call-popup {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
}
.btn-call-popup:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.5);
}
.btn-wa-popup {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wa-popup:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.btn-icon { font-size: 22px; flex-shrink: 0; }
.btn-text { display: flex; flex-direction: column; text-align: left; }
.btn-text strong { font-size: 15px; display: block; }
.btn-text small  { font-size: 11px; opacity: 0.85; font-weight: 400; }
.popup-note {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(92,0,0,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(139,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.logo-fallback { display: flex; align-items: center; }
.logo-icon { font-size: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-call-mobile { display: none; }

.btn-call-header {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(255,107,0,0.3);
}
.btn-call-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,107,0,0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(61,0,0,0.88) 0%, rgba(139,0,0,0.76) 40%, rgba(92,0,0,0.88) 70%, rgba(26,0,0,0.93) 100%),
    url('tirupathi.jpg') center / cover no-repeat;
  overflow: hidden;
  padding-top: 72px;
}
/* Fallback gradient when image not available */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,0,0,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 24px;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.6s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
  animation: fadeUp 0.6s 0.3s ease both;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-item:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 8px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin: 8px 0;
}
.popup-title {
  font-size: 24px;
}

.popup-sub {
  font-size: 15px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.55);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(212,175,55,0.6);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
  z-index: 3;
}
.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  margin: 10px auto 0;
  animation: bounce 1.5s infinite;
}

/* === MARQUEE === */
.marquee-strip {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon), var(--maroon-deep));
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* === SECTION HEADER SHARED === */
.section-label {
  display: inline-block;
  color: var(--saffron);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--maroon-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--saffron); }
.section-desc {
  color: var(--text-light);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* === ABOUT === */
.about-section {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-placeholder {
  border-radius: 24px;
  height: 480px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-warm);
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 50%, var(--saffron-dark) 100%);
}
.about-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}
.about-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.temple-art { font-size: 120px; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3)); }
.about-img-fallback p {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--maroon-deep);
  line-height: 1;
}
.badge-txt {
  font-size: 12px;
  color: var(--maroon);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content p { color: var(--text-mid); margin-bottom: 16px; font-size: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.feat-icon { font-size: 16px; }

/* === PACKAGES === */
.packages-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-mid) 100%);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow-warm);
  transition: var(--transition);
  border: 2px solid transparent;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139,0,0,0.18);
  border-color: rgba(255,107,0,0.2);
}
.pkg-featured {
  background: linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  color: white;
  border-color: var(--gold) !important;
  transform: scale(1.03);
}
.pkg-featured::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); height: 5px; }
.pkg-featured:hover { transform: scale(1.03) translateY(-8px); }
.pkg-featured .pkg-name { color: var(--gold-light); }
.pkg-featured .pkg-price { color: var(--gold-light); }
.pkg-featured .pkg-features li { color: rgba(255,255,255,0.85); }
.pkg-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: var(--saffron);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 44px;
  transform: rotate(40deg);
}
.ribbon-gold { background: var(--gold); color: var(--maroon-deep); }
.ribbon-premium { background: var(--maroon); }
.pkg-icon { font-size: 44px; margin-bottom: 16px; }
.pkg-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--maroon-deep);
  margin-bottom: 12px;
}
.pkg-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pkg-features { margin-bottom: 32px; }
.pkg-features li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pkg-features li:last-child { border-bottom: none; }
.btn-pkg {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}
.btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.4); }
.btn-pkg-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-deep);
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}
.btn-pkg-gold:hover { box-shadow: 0 8px 24px rgba(212,175,55,0.5); }

/* === SERVICES === */
.services-section {
  padding: 100px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-warm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--saffron);
  box-shadow: 0 16px 48px rgba(139,0,0,0.14);
}
.svc-icon { font-size: 48px; margin-bottom: 20px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--maroon-deep);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-light); font-size: 15px; }

/* === WHY SECTION === */
.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 60%, #6B0000 100%);
  position: relative;
  overflow: hidden;
}
.why-bg-art {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 600px;
  opacity: 0.03;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-label { color: var(--gold-light); }
.why-content .section-title { color: white; text-align: left; }
.why-content .section-title span { color: var(--gold-light); }
.why-points { margin: 36px 0; }
.why-point {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: rgba(212,175,55,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.why-point h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.why-point p { color: rgba(255,255,255,0.65); font-size: 15px; }
.why-image { display: flex; justify-content: center; }
.why-img-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 24px;
  width: 320px;
  height: 380px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  position: relative;
}
.why-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}
.why-img-fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.why-img-art { font-size: 100px; }
.why-img-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.6;
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gal-large { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item { overflow: hidden; border-radius: 16px; }
.gal-placeholder {
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gal-placeholder:hover { transform: scale(1.03); }
.gal-placeholder span { font-size: 52px; }
.gal-placeholder p { color: white; font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.gal-p1 { background: linear-gradient(135deg, var(--maroon-deep), var(--maroon)); }
.gal-p2 { background: linear-gradient(135deg, var(--saffron-dark), var(--saffron)); }
.gal-p3 { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.gal-p4 { background: linear-gradient(135deg, #3D1C02, #7A4000); }
.gal-p5 { background: linear-gradient(135deg, var(--maroon), var(--saffron-dark)); }
/* Real image in gallery */
.gal-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.gal-placeholder:hover .gal-real-img { transform: scale(1.05); }
.gal-fallback {
  position: relative;
  z-index: 1;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg-mid) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-warm);
  transition: var(--transition);
  border-left: 4px solid var(--saffron);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: rgba(255,107,0,0.08);
  font-family: serif;
  line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(139,0,0,0.14); }
.testi-featured {
  background: linear-gradient(160deg, var(--maroon-deep), var(--maroon));
  color: white;
  border-left-color: var(--gold);
}
.testi-featured p { color: rgba(255,255,255,0.85); }
.testi-featured strong { color: var(--gold-light); }
.testi-featured span { color: rgba(255,255,255,0.5); }
.testi-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; color: var(--maroon-deep); }
.testi-author span { font-size: 13px; color: var(--text-light); }
.testi-featured .testi-author strong { color: var(--gold-light); }
.testi-featured .testi-author span { color: rgba(255,255,255,0.5); }

/* === CONTACT === */
.contact-section {
  padding: 100px 0;
  background: var(--maroon-deep);
}
.contact-box {
  background: linear-gradient(135deg, #8B0000 0%, #5C0000 50%, #3D0000 100%);
  border-radius: 24px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  border: 1px solid rgba(212,175,55,0.25);
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: '🙏';
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-size: 200px;
  opacity: 0.04;
}
.contact-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-content h2 span { color: var(--gold-light); }
.contact-content p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-icon { font-size: 28px; }
.contact-item strong { display: block; color: var(--gold-light); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item a, .contact-item span {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold-light); }
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.btn-call-big, .btn-wa-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  line-height: 1.4;
  text-decoration: none;
}
.btn-call-big small, .btn-wa-big small {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
}
.btn-call-big {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
}
.btn-call-big:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,107,0,0.5); }
.btn-wa-big {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.btn-wa-big:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(37,211,102,0.45); }

/* === FOOTER === */
.site-footer {
  background: var(--maroon-deep);
  border-top: 2px solid var(--gold);
  margin: 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 24px 0;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-phone a {
  color: var(--saffron-light);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.footer-links h4, .footer-packages h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links ul, .footer-packages ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-packages a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-packages a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-cta-btns { display: flex; gap: 10px; margin-top: 20px; }
.footer-btn-call, .footer-btn-wa {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}
.footer-btn-call { background: var(--saffron); color: white; }
.footer-btn-call:hover { background: var(--saffron-dark); transform: translateY(-1px); }
.footer-btn-wa { background: #25D366; color: white; }
.footer-btn-wa:hover { background: #1da851; transform: translateY(-1px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 24px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   FLOATING BUTTONS — FIXED: stacked vertically bottom-right
   ============================================================ */
.float-wa,
.float-call {
  position: fixed;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
/* WhatsApp at very bottom */
.float-wa {
  bottom: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}
/* Call stacked above WhatsApp */
.float-call {
  bottom: 98px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
}
.float-wa:hover  { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.float-call:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.5); }

/* Tooltip labels on hover */
.float-wa::before,
.float-call::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(0,0,0,0.75);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}
.float-wa:hover::before,
.float-call:hover::before { opacity: 1; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .packages-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; gap: 56px; }
  .about-img-placeholder { height: 340px; }
  .why-grid        { grid-template-columns: 1fr; }
  .why-image       { display: flex; justify-content: center; margin-top: 40px; }
  .why-img-box     { width: 280px; height: 320px; }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-box     { grid-template-columns: 1fr; padding: 48px 36px; gap: 36px; }
  .contact-actions { flex-direction: row; }
  .btn-call-big, .btn-wa-big { flex: 1; }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(60,0,0,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 4px;
    border-bottom: 2px solid var(--gold);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-call-mobile {
    display: block;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white !important;
    margin-top: 8px;
    text-align: center;
    border-radius: 10px;
    border-bottom: none !important;
  }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  /* Logo — shrink on mobile */
  .logo-name { font-size: 13px; }
  .logo-img  { height: 80px; }

  /* Hero */
  .hero-content { padding: 60px 20px; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 10px 16px; }
  .hero-actions { flex-direction:row; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-featured  { transform: none; }
  .pkg-featured:hover { transform: translateY(-8px); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-large { grid-row: span 1; }
  .gal-wide  { grid-column: span 2; }
  .gal-placeholder span { font-size: 60px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .about-img-placeholder { height: 400px; }

  /* Contact */
  .contact-box    { padding: 36px 20px; }
  .contact-actions { flex-direction: column; }
  .contact-content h2 { font-size: 26px; }

  /* Popup */
  .popup-inner { padding: 28px 20px 24px; }
  .popup-buttons { flex-direction: column; gap: 12px; }
  .btn-call-popup, .btn-wa-popup { max-width: 100%; width: 100%; }
  .popup-divider { font-size: 10px; }

  /* Section padding */
  .about-section, .packages-section, .services-section,
  .why-section, .gallery-section, .testimonials-section,
  .contact-section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }

  /* Floats */
  .float-wa   { width: 52px; height: 52px; font-size: 22px; bottom: 30px; right: 16px; }
  .float-call { width: 52px; height: 52px; font-size: 22px; bottom: 98px; right: 16px; }
  .float-wa::before, .float-call::before { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
  .logo-name { font-size: 12px; }
  .logo-tagline { display: none; }
  .hero-stats { flex-direction: row; gap: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-large { grid-row: span 1; }
  .gal-wide  { grid-column: span 1; }
  .gal-placeholder span { font-size: 70px; }
  .contact-box { padding: 28px 16px; }
  .footer-cta-btns { flex-direction: column; }
  .packages-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-point { gap: 16px; }
  .why-num { font-size: 32px; width: 48px; }
}
