/* ============================================================
   SRI GANAPATHI CATERING SERVICE — PREMIUM STYLESHEET
   Author: Antigravity | Theme: Divine South Indian Luxury
   ============================================================ */

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

/* ---------- CSS VARIABLES ---------- */
:root {
  --maroon:      #6B0F1A;
  --maroon-dark: #4A0810;
  --maroon-light:#8B1A2A;
  --gold:        #C9973C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A07828;
  --gold-grad:   linear-gradient(135deg, #C9973C 0%, #E8C97A 50%, #C9973C 100%);
  --cream:       #FDF6EC;
  --cream-dark:  #F5E8D0;
  --green:       #2D6A4F;
  --green-light: #3A8A65;
  --white:       #FFFFFF;
  --text-dark:   #1A0A0A;
  --text-mid:    #4A2020;
  --text-light:  #7A5050;
  --shadow-gold: 0 4px 30px rgba(201,151,60,0.25);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.35);
  --radius:      12px;
  --transition:  all 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; width: 100%; overflow-x: hidden; }
body {
  font-family:'Poppins', sans-serif;
  background:var(--cream);
  color:var(--text-dark);
  width: 100%;
  overflow-x:hidden;
  position: relative;
  cursor:default;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--cream-dark); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

/* ---------- PAGE LOADER ---------- */
#page-loader {
  position:fixed; inset:0; z-index:9999;
  background:var(--maroon-dark);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  transition:opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity:0; visibility:hidden; }
.loader-om {
  font-size:4rem; color:var(--gold-light);
  animation:loaderPulse 1.2s ease-in-out infinite;
  line-height:1;
}
.loader-bar {
  width:180px; height:3px;
  background:rgba(255,255,255,0.2);
  border-radius:2px; margin-top:24px; overflow:hidden;
}
.loader-progress {
  height:100%; width:0%;
  background:var(--gold-grad);
  border-radius:2px;
  animation:loadProgress 1.8s ease-out forwards;
}
.loader-text {
  font-family:'Cormorant Garamond', serif;
  color:var(--gold-light); font-size:1rem;
  letter-spacing:3px; margin-top:16px;
  opacity:0.85;
}
@keyframes loaderPulse {
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.15); opacity:0.7; }
}
@keyframes loadProgress { to{ width:100%; } }

/* ---------- NAVBAR ---------- */
#navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 5%;
  transition:var(--transition);
}
#navbar.scrolled {
  background:rgba(74,8,16,0.97);
  backdrop-filter:blur(16px);
  padding:12px 5%;
  box-shadow:0 4px 24px rgba(0,0,0,0.4);
}
.nav-brand {
  display:flex; align-items:center; gap:12px;
}
.nav-logo-icon {
  width:42px; height:42px;
  background:var(--gold-grad);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  box-shadow:0 0 16px rgba(201,151,60,0.5);
  flex-shrink:0;
}
.nav-title {
  font-family:'Playfair Display', serif;
  font-size:1.1rem; font-weight:700;
  color:var(--white); line-height:1.2;
}
.nav-title span {
  display:block; font-size:0.7rem;
  font-family:'Poppins', sans-serif;
  font-weight:400; letter-spacing:2px;
  color:var(--gold-light); text-transform:uppercase;
}
.nav-links {
  display:flex; gap:32px; align-items:center;
}
.nav-links a {
  color:rgba(255,255,255,0.88);
  font-size:0.875rem; font-weight:500;
  letter-spacing:0.5px;
  position:relative; transition:color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px;
  background:var(--gold-grad);
  border-radius:1px; transition:width 0.3s ease;
}
.nav-links a:hover { color:var(--gold-light); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background:var(--gold-grad);
  color:var(--maroon-dark) !important;
  padding:9px 22px; border-radius:50px;
  font-weight:600 !important;
  box-shadow:var(--shadow-gold);
  transition:var(--transition) !important;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,151,60,0.5); }
.nav-cta::after { display:none !important; }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:4px;
}
.hamburger span {
  display:block; width:26px; height:2px;
  background:var(--gold-light); border-radius:2px;
  transition:var(--transition);
}
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTON STYLES (Used Globally)
   ============================================================ */
.btn-primary {
  background:var(--gold-grad);
  color:var(--maroon-dark);
  font-weight:700; font-size:0.95rem;
  padding:15px 36px; border-radius:50px;
  letter-spacing:0.5px;
  box-shadow:0 6px 28px rgba(201,151,60,0.4);
  transition:var(--transition);
  border:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(201,151,60,0.55);
}
.btn-secondary {
  background:rgba(255,255,255,0.1);
  color:var(--white);
  font-weight:600; font-size:0.95rem;
  padding:15px 36px; border-radius:50px;
  letter-spacing:0.5px;
  border:1px solid rgba(255,255,255,0.35);
  backdrop-filter:blur(8px);
  transition:var(--transition);
  display:inline-flex; align-items:center; gap:8px;
  cursor:pointer;
}
.btn-secondary:hover {
  background:rgba(255,255,255,0.2);
  border-color:var(--gold-light);
  color:var(--gold-light);
  transform:translateY(-3px);
}
.btn-whatsapp {
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff; font-weight:600; font-size:0.95rem;
  padding:15px 36px; border-radius:50px;
  border:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  transition:var(--transition);
  box-shadow:0 6px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(37,211,102,0.5);
}
/* ---------- SECTION BASE ---------- */
section { padding:90px 5%; }
.section-tag {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--gold);
  font-size:0.78rem; letter-spacing:3px;
  text-transform:uppercase; font-weight:600;
  margin-bottom:14px;
}
.section-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800; color:var(--maroon);
  line-height:1.2; margin-bottom:16px;
  position:relative; display:inline-block;
}
.section-title::after {
  content:''; display:block; margin-top:12px;
  height:3px; border-radius:2px;
  background:var(--gold-grad);
  width:0;
  transition:width 1s cubic-bezier(0.22,1,0.36,1);
}
.section-title.in-view::after { width:60%; }
.text-center .section-title.in-view::after { width:60%; }
.section-sub {
  color:var(--text-light); font-size:1.05rem;
  max-width:580px; line-height:1.7;
}
.text-center { text-align:center; }
.text-center .section-title::after { margin:12px auto 0; }
.container { max-width:1240px; margin:0 auto; }

/* ---------- GOLD DIVIDER ---------- */
.gold-divider {
  display:flex; align-items:center; gap:14px;
  margin:14px 0 36px;
}
.gold-divider.center { justify-content:center; }
.gold-divider::before,.gold-divider::after {
  content:''; flex:1; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.gold-divider-sym { color:var(--gold); font-size:1.1rem; }

/* ---------- ABOUT SECTION ---------- */
#about { background:var(--white); }
.about-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; margin-top:50px;
}
.about-img-wrap {
  position:relative;
}
.about-img-wrap img {
  width:100%; border-radius:var(--radius);
  box-shadow:var(--shadow-dark);
}
.about-badge {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--gold-grad);
  color:var(--maroon-dark);
  padding:20px 24px; border-radius:var(--radius);
  text-align:center; box-shadow:var(--shadow-gold);
  font-weight:700;
}
.about-badge .num {
  display:block; font-family:'Playfair Display',serif;
  font-size:2.4rem; line-height:1;
}
.about-badge .lbl {
  font-size:0.75rem; letter-spacing:1px;
  text-transform:uppercase; margin-top:4px;
}
.about-text p {
  color:var(--text-mid); font-size:1rem;
  line-height:1.8; margin-bottom:20px;
}
.about-features {
  display:grid; grid-template-columns:1fr 1fr;
  gap:20px; margin-top:32px;
}
.about-feat {
  display:flex; gap:14px; align-items:flex-start;
  padding:18px; border-radius:var(--radius);
  background:var(--cream);
  border:1px solid rgba(201,151,60,0.2);
  transition:var(--transition);
}
.about-feat:hover {
  border-color:var(--gold);
  box-shadow:var(--shadow-gold);
  transform:translateY(-4px);
}
.about-feat-icon {
  width:42px; height:42px; flex-shrink:0;
  background:var(--gold-grad);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
}
.about-feat h4 {
  font-size:0.9rem; color:var(--maroon);
  font-weight:700; margin-bottom:4px;
}
.about-feat p {
  font-size:0.8rem; color:var(--text-light);
  line-height:1.5; margin:0;
}

/* ---------- SERVICES SECTION ---------- */
#services { background:var(--cream); }
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:28px; margin-top:50px;
}
.service-card {
  background:var(--white);
  border-radius:16px;
  border:1px solid rgba(201,151,60,0.15);
  overflow:hidden;
  transition:var(--transition);
  position:relative;
}
.service-card::before {
  content:''; position:absolute;
  inset:0; border-radius:16px;
  background:var(--gold-grad);
  opacity:0; transition:opacity 0.4s;
  z-index:0;
}
.service-card:hover {
  transform:translateY(-8px);
  box-shadow:0 16px 48px rgba(107,15,26,0.18), 0 0 0 2px var(--gold);
}
.service-card:hover::before { opacity:0.06; }
.service-icon-wrap {
  padding:32px 28px 20px;
  display:flex; align-items:center; gap:16px;
  position:relative; z-index:1;
}
.service-icon {
  width:56px; height:56px;
  background:linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; flex-shrink:0;
  box-shadow:0 4px 20px rgba(107,15,26,0.3);
  transition:var(--transition);
}
.service-card:hover .service-icon {
  background:var(--gold-grad);
}
.service-card h3 {
  font-family:'Playfair Display',serif;
  font-size:1.25rem; color:var(--maroon);
  font-weight:700; line-height:1.2;
}
.service-card p {
  padding:0 28px 28px;
  color:var(--text-light); font-size:0.9rem;
  line-height:1.7; position:relative; z-index:1;
}
.service-tag {
  position:absolute; top:16px; right:16px;
  background:rgba(201,151,60,0.12);
  color:var(--gold-dark); font-size:0.7rem;
  font-weight:600; letter-spacing:1px;
  padding:4px 10px; border-radius:20px;
  text-transform:uppercase;
}

/* ---------- MENU EXPERIENCE ---------- */
#menu-exp {
  background:var(--maroon-dark);
  position:relative; overflow:hidden;
}
#menu-exp::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(201,151,60,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(45,106,79,0.08) 0%, transparent 60%);
}
.menu-split {
  display:grid; grid-template-columns:1fr 1fr;
  gap:70px; align-items:center;
  position:relative; z-index:1;
}
.menu-img-wrap {
  position:relative;
}
.menu-img-wrap img {
  width:100%; border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.menu-img-frame {
  position:absolute; inset:-12px;
  border:2px solid rgba(201,151,60,0.3);
  border-radius:20px; pointer-events:none;
  animation:framePulse 3s ease-in-out infinite;
}
@keyframes framePulse {
  0%,100%{ opacity:1; } 50%{ opacity:0.4; }
}
.menu-text .section-title { color:var(--gold-light); }
.menu-text .section-sub { color:rgba(255,255,255,0.72); }
.menu-items {
  margin-top:28px; display:flex;
  flex-direction:column; gap:14px;
}
.menu-item {
  display:flex; align-items:center; gap:14px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(201,151,60,0.2);
  border-radius:12px; padding:14px 18px;
  transition:var(--transition);
}
.menu-item:hover {
  background:rgba(201,151,60,0.1);
  border-color:var(--gold);
  transform:translateX(6px);
}
.menu-item-dot {
  width:10px; height:10px; flex-shrink:0;
  background:var(--gold); border-radius:50%;
  box-shadow:0 0 8px var(--gold);
}
.menu-item span {
  color:rgba(255,255,255,0.88);
  font-size:0.95rem; font-weight:500;
}

/* ---------- GALLERY SECTION ---------- */
#gallery { background:var(--cream); }
.gallery-grid {
  columns:3; column-gap:16px;
  margin-top:50px;
}
.gallery-item {
  break-inside:avoid; margin-bottom:16px;
  border-radius:12px; overflow:hidden;
  position:relative; cursor:pointer;
}
.gallery-item img {
  width:100%; display:block;
  transition:transform 0.5s ease;
}
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to top,
    rgba(107,15,26,0.85) 0%,
    rgba(201,151,60,0.2) 100%
  );
  opacity:0; transition:opacity 0.4s ease;
  display:flex; align-items:flex-end;
  padding:20px;
}
.gallery-overlay span {
  color:var(--gold-light); font-size:0.85rem;
  font-weight:600; letter-spacing:1px;
}
.gallery-item:hover img { transform:scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity:1; }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background:var(--white); overflow:hidden; }
.testi-header { margin-bottom:50px; }
.testi-slider-wrap { position:relative; overflow:hidden; }
.testi-track {
  display:flex; gap:28px;
  transition:transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}
.testi-card {
  min-width:calc(33.333% - 20px);
  width:calc(33.333% - 20px);
  max-width:calc(33.333% - 20px);
  background:var(--cream);
  border:1px solid rgba(201,151,60,0.2);
  border-radius:16px; padding:32px;
  position:relative; flex-shrink:0;
  box-sizing: border-box;
}
.testi-card::before {
  content:'\201C';
  font-size:5rem; line-height:1;
  font-family:'Playfair Display',serif;
  color:var(--gold-light); opacity:0.3;
  position:absolute; top:10px; left:20px;
}
.testi-stars { color:var(--gold); font-size:1rem; margin-bottom:14px; }
.testi-text {
  color:var(--text-mid); font-size:0.95rem;
  line-height:1.7; font-style:italic; margin-bottom:20px;
}
.testi-author {
  display:flex; align-items:center; gap:12px;
}
.testi-avatar {
  width:44px; height:44px;
  background:var(--gold-grad);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:var(--maroon-dark); font-size:1.1rem;
}
.testi-author h5 {
  font-size:0.95rem; color:var(--maroon); font-weight:700;
}
.testi-author span {
  font-size:0.78rem; color:var(--text-light);
}
.testi-nav {
  display:flex; gap:12px; justify-content:center; margin-top:36px;
}
.testi-btn {
  width:44px; height:44px; border-radius:50%;
  border:2px solid var(--gold);
  background:transparent; color:var(--gold);
  font-size:1.1rem; cursor:pointer;
  transition:var(--transition);
  display:flex; align-items:center; justify-content:center;
}
.testi-btn:hover { background:var(--gold); color:var(--maroon-dark); }
.testi-dots {
  display:flex; gap:8px; align-items:center; justify-content:center;
  margin-top:20px;
}
.testi-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(107,15,26,0.2); cursor:pointer;
  transition:var(--transition);
}
.testi-dot.active {
  background:var(--gold); width:24px; border-radius:4px;
}

/* ---------- WHY CHOOSE US ---------- */
#why-us { background:var(--cream); }
.why-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:24px; margin-top:50px;
}
.why-card {
  background:var(--white);
  border-radius:16px; padding:32px 24px;
  text-align:center;
  border:1px solid rgba(201,151,60,0.15);
  transition:var(--transition);
  position:relative; overflow:hidden;
}
.why-card::after {
  content:''; position:absolute;
  bottom:0; left:0; right:0; height:3px;
  background:var(--gold-grad);
  transform:scaleX(0); transition:transform 0.4s ease;
  transform-origin:left;
}
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-gold); }
.why-card:hover::after { transform:scaleX(1); }
.why-icon {
  width:64px; height:64px;
  background:linear-gradient(135deg, #FDF0DC, #F5DBA0);
  border-radius:16px; margin:0 auto 20px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  box-shadow:0 4px 16px rgba(201,151,60,0.2);
}
.why-card h3 {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; color:var(--maroon);
  font-weight:700; margin-bottom:10px;
}
.why-card p {
  font-size:0.875rem; color:var(--text-light); line-height:1.6;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background:var(--maroon);
  padding:50px 5%;
}
.stats-inner {
  max-width:1000px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat-item { text-align:center; }
.stat-num {
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:900; color:var(--gold-light);
  line-height:1;
}
.stat-lbl {
  color:rgba(255,255,255,0.7);
  font-size:0.85rem; margin-top:8px;
  letter-spacing:1px;
}

/* ---------- CONTACT SECTION ---------- */
#contact { background:var(--white); }
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; margin-top:50px; align-items:start;
}
.contact-info h3 {
  font-family:'Playfair Display',serif;
  font-size:1.5rem; color:var(--maroon); margin-bottom:24px;
}
.contact-detail {
  display:flex; gap:14px; align-items:flex-start;
  margin-bottom:20px;
}
.contact-icon {
  width:44px; height:44px; flex-shrink:0;
  background:var(--gold-grad); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; box-shadow:var(--shadow-gold);
}
.contact-detail h4 {
  font-size:0.85rem; letter-spacing:1px;
  text-transform:uppercase; color:var(--gold-dark);
  margin-bottom:4px; font-weight:600;
}
.contact-detail p, .contact-detail a {
  color:var(--text-mid); font-size:0.95rem; line-height:1.5;
}
.map-placeholder {
  margin-top:28px;
  background:linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius:16px; overflow:hidden;
  border:2px solid rgba(201,151,60,0.25);
  box-shadow:var(--shadow-gold);
}
.map-placeholder iframe {
  width:100%; height:250px; border:none;
  filter:sepia(20%) saturate(1.2);
}
.contact-form-wrap h3 {
  font-family:'Playfair Display',serif;
  font-size:1.5rem; color:var(--maroon); margin-bottom:24px;
}
.form-row {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.form-group {
  margin-bottom:18px;
}
.form-group label {
  display:block; font-size:0.8rem; font-weight:600;
  color:var(--maroon); margin-bottom:6px;
  letter-spacing:0.5px; text-transform:uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid rgba(107,15,26,0.15);
  border-radius:10px; font-size:0.9rem;
  font-family:'Poppins',sans-serif;
  background:var(--cream);
  color:var(--text-dark);
  transition:border-color 0.3s, box-shadow 0.3s;
  outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,151,60,0.12);
}
.form-group textarea { resize:vertical; min-height:110px; }
.form-submit {
  width:100%; padding:15px;
  background:var(--gold-grad);
  color:var(--maroon-dark); font-weight:700;
  font-size:1rem; border:none; border-radius:50px;
  cursor:pointer; transition:var(--transition);
  font-family:'Poppins',sans-serif;
  box-shadow:var(--shadow-gold);
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.form-submit:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(201,151,60,0.5);
}
.form-success {
  display:none; text-align:center; padding:24px;
  background:rgba(45,106,79,0.08);
  border:1px solid var(--green); border-radius:12px;
  color:var(--green); font-weight:600;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,#25D366,#128C7E);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:white;
  box-shadow:0 6px 24px rgba(37,211,102,0.5);
  transition:var(--transition);
  animation:waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform:scale(1.12);
  box-shadow:0 10px 32px rgba(37,211,102,0.65);
  animation:none;
}
@keyframes waPulse {
  0%,100%{ box-shadow:0 6px 24px rgba(37,211,102,0.5); }
  50%{ box-shadow:0 6px 24px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.1); }
}
.wa-tooltip {
  position:absolute; right:68px; top:50%; transform:translateY(-50%);
  background:var(--maroon); color:#fff; font-size:0.78rem;
  font-weight:600; padding:6px 12px; border-radius:6px;
  white-space:nowrap; opacity:0; pointer-events:none;
  transition:opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity:1; }

/* ---------- FOOTER ---------- */
footer {
  background:var(--maroon-dark);
  padding:60px 5% 0;
  position:relative; overflow:hidden;
}
footer::before {
  content:''; 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='%23C9973C' fill-opacity='0.04'%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;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px; margin-bottom:50px; position:relative; z-index:1;
}
.footer-brand .nav-title { font-size:1.2rem; margin-bottom:16px; }
.footer-brand p {
  color:rgba(255,255,255,0.6); font-size:0.875rem;
  line-height:1.7; max-width:280px; margin-bottom:24px;
}
.social-links { display:flex; gap:12px; }
.social-link {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(201,151,60,0.3);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); font-size:0.95rem;
  transition:var(--transition); text-decoration:none;
}
.social-link:hover {
  background:var(--gold);
  color:var(--maroon-dark);
  border-color:var(--gold);
  transform:translateY(-3px);
}
.footer-col h4 {
  color:var(--gold-light); font-size:0.9rem;
  font-weight:700; letter-spacing:1px;
  text-transform:uppercase; margin-bottom:20px;
}
.footer-col ul li {
  margin-bottom:10px;
}
.footer-col ul li a {
  color:rgba(255,255,255,0.6); font-size:0.875rem;
  transition:color 0.3s;
}
.footer-col ul li a:hover { color:var(--gold-light); }
.footer-bottom {
  border-top:1px solid rgba(201,151,60,0.15);
  padding:20px 0; text-align:center;
  position:relative; z-index:1;
}
.footer-bottom p {
  color:rgba(255,255,255,0.45); font-size:0.8rem;
}
.footer-bottom span { color:var(--gold-light); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity:0; transform:translateY(50px);
  transition:opacity 0.75s cubic-bezier(0.22,1,0.36,1),
             transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.slide-left  { transform:translateX(-60px); }
.reveal.slide-right { transform:translateX(60px); }
.reveal.visible     { opacity:1 !important; transform:translate(0) !important; }

/* stagger children */
.reveal:nth-child(2){ transition-delay:0.1s; }
.reveal:nth-child(3){ transition-delay:0.2s; }
.reveal:nth-child(4){ transition-delay:0.3s; }
.reveal:nth-child(5){ transition-delay:0.4s; }
.reveal:nth-child(6){ transition-delay:0.5s; }

/* ============================================================
   DIVINE ADDITIONS — ANIMATIONS & EFFECTS
   ============================================================ */

/* ---- divine section top border ---- */
#about::before, #services::before,
#gallery::before, #testimonials::before,
#why-us::before, #contact::before {
  content:'';
  display:block; height:4px;
  background:linear-gradient(90deg,
    transparent 0%, var(--gold) 30%,
    var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  margin-bottom:0;
  animation:borderShimmer 4s linear infinite;
  background-size:200% 100%;
}
@keyframes borderShimmer {
  0%{ background-position:200% 0; }
  100%{ background-position:-200% 0; }
}

/* ---- lotus divider SVG ---- */
.divine-divider {
  text-align:center; padding:10px 0;
  font-size:1.4rem; color:var(--gold);
  letter-spacing:12px;
  animation:divineFade 3s ease-in-out infinite;
  opacity:0.7;
}
@keyframes divineFade {
  0%,100%{ opacity:0.5; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.05); }
}

/* ---- glowing gold card border on hover ---- */
.service-card:hover,
.why-card:hover {
  box-shadow: 0 20px 60px rgba(107,15,26,0.2),
              0 0 0 2px var(--gold),
              0 0 30px rgba(201,151,60,0.25) !important;
}

/* ---- menu section Ganesha bg ---- */
.menu-ganesha-bg {
  position:absolute; right:0; top:50%;
  transform:translateY(-50%);
  opacity:0.06; width:340px;
  pointer-events:none;
  animation:floatWm 10s ease-in-out infinite;
}

/* ---- diya row decoration ---- */
.diya-row {
  display:flex; justify-content:center;
  gap:clamp(12px,3vw,28px);
  padding:14px 0; font-size:1.5rem;
  animation:diyaRowGlow 2.5s ease-in-out infinite;
}
@keyframes diyaRowGlow {
  0%,100%{ filter:drop-shadow(0 0 4px rgba(201,151,60,0.4)); }
  50%{ filter:drop-shadow(0 0 14px rgba(201,151,60,0.9)); }
}

/* ---- pulsing stats numbers ---- */
.stat-num {
  text-shadow:0 0 20px rgba(232,201,122,0.4);
  animation:numGlow 3s ease-in-out infinite;
}
@keyframes numGlow {
  0%,100%{ text-shadow:0 0 20px rgba(232,201,122,0.4); }
  50%{ text-shadow:0 0 40px rgba(232,201,122,0.8); }
}

/* ---- floating CTA pulse ---- */
.btn-primary {
  animation:ctaPulse 3s ease-in-out infinite;
}
.btn-primary:hover { animation:none; }
@keyframes ctaPulse {
  0%,100%{ box-shadow:0 6px 28px rgba(201,151,60,0.4); }
  50%{ box-shadow:0 6px 40px rgba(201,151,60,0.7), 0 0 0 6px rgba(201,151,60,0.1); }
}

/* ---- about image golden border glow ---- */
.about-img-wrap img {
  border:3px solid rgba(201,151,60,0.3);
  animation:imgGlow 4s ease-in-out infinite;
}
@keyframes imgGlow {
  0%,100%{ box-shadow:var(--shadow-dark); border-color:rgba(201,151,60,0.3); }
  50%{ box-shadow:var(--shadow-dark), 0 0 40px rgba(201,151,60,0.25); border-color:rgba(201,151,60,0.6); }
}

/* ---- hero title character reveal ---- */
.hero-title {
  animation:heroTitleIn 1s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
@keyframes heroTitleIn {
  from{ opacity:0; transform:translateY(40px) scale(0.95); }
  to  { opacity:1; transform:translateY(0) scale(1); }
}

/* ---- loader divine ring ---- */
.loader-ring {
  width:80px; height:80px;
  border-radius:50%;
  border:3px solid transparent;
  border-top-color:var(--gold);
  border-right-color:var(--gold-light);
  animation:loaderSpin 1s linear infinite;
  margin-bottom:20px;
}
@keyframes loaderSpin { to{ transform:rotate(360deg); } }

/* ---- gallery item divine border on hover ---- */
.gallery-item:hover {
  box-shadow:0 0 0 3px var(--gold), 0 20px 60px rgba(107,15,26,0.4);
  border-radius:12px;
}

/* ---- wavy section separator ---- */
.wave-sep {
  width:100%; overflow:hidden;
  line-height:0; display:block;
}
.wave-sep svg { display:block; width:100%; }

/* ---- testimonial card enter ---- */
.testi-card {
  animation:testiIn 0.5s ease both;
}
@keyframes testiIn {
  from{ opacity:0; transform:translateY(20px); }
  to  { opacity:1; transform:translateY(0); }
}

/* ---- contact section gold pattern bg ---- */
#contact {
  background:linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  position:relative;
}
#contact::after {
  content:'';
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(201,151,60,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(107,15,26,0.05) 0%, transparent 50%);
}
#contact > * { position:relative; z-index:1; }

/* ---- navbar logo spin on hover ---- */
.nav-logo-icon:hover {
  animation:logoSpin 0.6s ease;
}
@keyframes logoSpin {
  0%{ transform:rotate(0); }
  50%{ transform:rotate(20deg) scale(1.15); }
  100%{ transform:rotate(0) scale(1); }
}

/* ---------- KEYFRAMES ---------- */
@keyframes fadeInUp {
  from{ opacity:0; transform:translateY(25px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from{ opacity:0; transform:translateY(-20px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ---------- MOBILE NAV MENU ---------- */
.nav-mobile-menu {
  display:none; position:fixed;
  top:0; left:0; width:100%; height:100%;
  background:rgba(74,8,16,0.98);
  backdrop-filter:blur(16px);
  z-index:999; flex-direction:column;
  align-items:center; justify-content:center; gap:28px;
  opacity:0; pointer-events:none; transition:opacity 0.4s;
}
.nav-mobile-menu.open { opacity:1; pointer-events:all; }
.nav-mobile-menu a {
  color:var(--white); font-size:1.5rem;
  font-family:'Playfair Display',serif;
  font-weight:600; transition:color 0.3s;
}
.nav-mobile-menu a:hover { color:var(--gold-light); }
.mobile-close {
  position:absolute; top:20px; right:24px;
  background:none; border:none; color:var(--gold-light);
  font-size:1.8rem; cursor:pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px) {
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .menu-split { grid-template-columns:1fr; gap:40px; }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .testi-card { min-width:calc(50% - 14px); width:calc(50% - 14px); max-width:calc(50% - 14px); }
  .stats-inner { grid-template-columns:repeat(2,1fr); gap:28px; }
}
@media (max-width:768px) {
  section { padding:70px 5%; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-mobile-menu { display:flex; }
  .gallery-grid { columns:2; }
  .testi-card { min-width:100%; width:100%; max-width:100%; padding: 24px 14px; }
  .about-features { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .about-badge { bottom:-10px; right:10px; }
}
@media (max-width:480px) {
  .hero-title { font-size:2rem; }
  .hero-btns { flex-direction:column; align-items:center; }
  .gallery-grid { columns:1; }
  .services-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .whatsapp-float { bottom:20px; right:20px; width:52px; height:52px; font-size: 1.4rem; z-index: 1001; }
}
