/* ============================================================
   ABHIRAM CATERERS — UNDER CONSTRUCTION PAGE
   Premium CSS Design System
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --clr-maroon:       #7B1E3A;
  --clr-maroon-dark:  #5A1429;
  --clr-maroon-light: #9E2749;
  --clr-gold:         #D4AF37;
  --clr-gold-light:   #E8CB6A;
  --clr-gold-dark:    #B8942A;
  --clr-warm-white:   #FAF8F5;
  --clr-charcoal:     #2D2D2D;
  --clr-charcoal-lt:  #4A4A4A;
  --clr-text:         #3A3A3A;
  --clr-text-muted:   #6B6B6B;
  --clr-whatsapp:     #25D366;
  --clr-whatsapp-dk:  #1DA851;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(123, 30, 58, 0.08);
  --shadow-md:  0 8px 32px rgba(123, 30, 58, 0.14);
  --shadow-lg:  0 20px 60px rgba(123, 30, 58, 0.20);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.30);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --section-gap: 100px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--clr-warm-white);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Focus styles for accessibility */
:focus-visible {
  outline: 3px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.2; }
h4, h5, h6 { font-family: var(--ff-sans); }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ── BACKGROUND ORBS ────────────────────────────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--clr-maroon), transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--clr-gold), transparent 70%);
  bottom: 10%; left: -150px;
  animation-delay: -6s;
  opacity: 0.10;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--clr-maroon-light), transparent 70%);
  top: 45%; left: 50%;
  animation-delay: -12s;
  opacity: 0.08;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── PARTICLES ──────────────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--clr-gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ── SITE HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.20);
  box-shadow: 0 2px 20px rgba(123, 30, 58, 0.06);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 14px; }
.brand-emblem {
  width: 54px; height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  flex-shrink: 0;
  background: var(--clr-maroon);
  display: flex; align-items: center; justify-content: center;
}
.brand-emblem img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--clr-maroon);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--clr-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Header Nav CTAs */
.header-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-cta--outline {
  border: 1.5px solid var(--clr-maroon);
  color: var(--clr-maroon);
}
.nav-cta--outline:hover {
  background: var(--clr-maroon);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-cta--whatsapp {
  background: var(--clr-whatsapp);
  color: white;
}
.nav-cta--whatsapp:hover {
  background: var(--clr-whatsapp-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--clr-maroon) 0%, var(--clr-maroon-light) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(123, 30, 58, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--clr-maroon-dark) 0%, var(--clr-maroon) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(123, 30, 58, 0.45);
}
.btn--primary:active { transform: translateY(-1px); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--clr-whatsapp) 0%, var(--clr-whatsapp-dk) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
}
.btn--full { width: 100%; justify-content: center; }

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-gold-dark);
}
.label-line {
  flex: 1; max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.label-line--light {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-charcoal);
  text-align: center;
  margin-bottom: 16px;
}
.section-title--light { color: var(--clr-warm-white); }

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: var(--clr-text-muted);
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 60px;
  line-height: 1.8;
}
.section-subtitle--light { color: rgba(250, 248, 245, 0.80); }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(60px, 8vw, 120px);
  overflow: hidden;
  z-index: 1;
}

/* Decorative top border */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--clr-maroon) 0%,
    var(--clr-gold) 40%,
    var(--clr-maroon-light) 70%,
    var(--clr-gold-dark) 100%
  );
}

/* Subtle mandala-like background pattern */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  width: min(700px, 80vw);
  height: min(700px, 80vw);
  background-image:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(123,30,58,0.04) 31%, transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(212,175,55,0.05) 46%, transparent 47%),
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(123,30,58,0.03) 61%, transparent 62%),
    radial-gradient(circle at 50% 50%, transparent 74%, rgba(212,175,55,0.04) 75%, transparent 76%);
  pointer-events: none;
  z-index: 0;
  animation: slowSpin 60s linear infinite;
}
@keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeSlideUp 0.9s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(123,30,58,0.08), rgba(212,175,55,0.10));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-maroon);
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
  50%       { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--clr-charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.headline-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-maroon) 0%, var(--clr-gold) 60%, var(--clr-maroon-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.headline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-maroon), var(--clr-gold));
  border-radius: 2px;
  opacity: 0.6;
}

.hero-subheadline {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--clr-text-muted);
  line-height: 1.85;
  max-width: 520px;
}
.hero-subheadline strong { color: var(--clr-maroon); font-weight: 600; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Service highlights strip */
.highlights-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(212,175,55,0.20);
}
.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(123,30,58,0.06);
  border: 1px solid rgba(123,30,58,0.12);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-maroon);
  transition: all var(--transition);
}
.highlight-chip:hover {
  background: rgba(123,30,58,0.10);
  border-color: var(--clr-gold);
  transform: translateY(-1px);
}
.chip-icon { font-size: 0.9rem; }

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideUp 0.9s ease 0.25s both;
}
.visual-frame {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.visual-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1.5px solid;
  pointer-events: none;
}
.visual-ring--outer {
  border-color: rgba(212,175,55,0.25);
  transform: rotate(3deg);
  animation: ringRot 20s linear infinite;
}
.visual-ring--inner {
  inset: 12px;
  border-color: rgba(123,30,58,0.15);
  transform: rotate(-3deg);
  animation: ringRot 20s linear infinite reverse;
}
@keyframes ringRot { to { transform: rotate(363deg); } }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(212,175,55,0.20);
  animation: badgeFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.fb-1 { top: -12px; left: -12px; animation-delay: 0s; }
.fb-2 { bottom: 30px; right: -16px; animation-delay: -1.5s; }
.fb-3 { bottom: -14px; left: 20px; animation-delay: -3s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.fb-icon { font-size: 1.4rem; }
.fb-text { display: flex; flex-direction: column; gap: 1px; }
.fb-text strong { font-size: 0.85rem; font-weight: 700; color: var(--clr-charcoal); line-height: 1; }
.fb-text small  { font-size: 0.68rem; color: var(--clr-text-muted); line-height: 1; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-indicator::before {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); transform-origin: top; }
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
}



/* ── SERVICES SECTION ───────────────────────────────────────── */
.services-section {
  padding-block: var(--section-gap);
  background: var(--clr-warm-white);
  position: relative;
  z-index: 1;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    max-width: 1400px;         /* Controls overall width */
    margin: var(--section-gap) auto; /* Balanced top & bottom spacing */
    padding: 0 40px;           /* Left & right spacing */
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 992px){
    .services-grid{
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }
}

/* Mobile */
@media (max-width: 576px){
    .services-grid{
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Tablet */
@media (max-width: 992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width: 576px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

.service-card {
  background: white;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-maroon), var(--clr-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.35);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 68px; height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(123,30,58,0.08), rgba(212,175,55,0.12));
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--clr-maroon);
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--clr-maroon), var(--clr-maroon-light));
  color: white;
  transform: rotate(-5deg) scale(1.05);
}

.service-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.90rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-check-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.service-check-list span {
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--clr-maroon);
}

/* ── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
  position: relative;
  padding-block: var(--section-gap);
  overflow: hidden;
  z-index: 1;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
    var(--clr-charcoal) 0%,
    #1a1a1a 40%,
    #2a0f1e 100%
  );
}
.stats-section .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-gold-light);
  margin-top: 4px;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,248,245,0.55);
  margin-top: 10px;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.pillar:hover {
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-3px);
}
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.pillar:hover .pillar-icon { filter: grayscale(0%); }
.pillar-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-warm-white);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 0.83rem;
  color: rgba(250,248,245,0.55);
  line-height: 1.7;
}

/* ── FORM SECTION ───────────────────────────────────────────── */
.form-section {
  padding-block: var(--section-gap);
  background: var(--clr-warm-white);
  position: relative;
  z-index: 1;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
}
.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Form info left side */
.form-info { display: flex; flex-direction: column; gap: 10px; }
.form-info .section-label, .form-info .section-title, .form-info .section-subtitle {
  text-align: left;
  margin-inline: 0;
}
.form-info .label-line { max-width: 50px; }

/* Contact items */
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-item:hover {
  border-color: var(--clr-gold);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}
.contact-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(123,30,58,0.08), rgba(212,175,55,0.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-maroon);
  flex-shrink: 0;
}
.contact-text { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 0.70rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--clr-text-muted); font-weight: 600; }
.contact-value { font-size: 0.92rem; font-weight: 600; color: var(--clr-charcoal); }

/* Social section */
.social-section { margin-top: 10px; }
.social-title {
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: white;
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: var(--radius-full);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-link:hover {
  background: var(--clr-maroon);
  color: white;
  border-color: var(--clr-maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Form card */
.form-card {
  background: white;
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-card-header {
  background: linear-gradient(135deg, var(--clr-maroon-dark), var(--clr-maroon));
  padding: 30px 36px;
  border-bottom: 2px solid rgba(212,175,55,0.25);
}
.form-card-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.form-card-subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.inquiry-form { padding: 36px; display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-charcoal-lt);
  letter-spacing: 0.03em;
}
.required { color: var(--clr-maroon); }

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--clr-charcoal);
  background: rgba(250,248,245,0.50);
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder { color: #B0A8A0; }
.form-input:hover { border-color: rgba(212,175,55,0.50); }
.form-input:focus {
  border-color: var(--clr-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-input.error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.10); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 110px; }

.form-success, .form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.90rem;
  font-weight: 600;
  animation: fadeSlideUp 0.4s ease;
}
.form-success { background: rgba(37,211,102,0.10); border: 1px solid rgba(37,211,102,0.30); color: #1a7a42; }
.form-error   { background: rgba(231,76,60,0.10);  border: 1px solid rgba(231,76,60,0.30);  color: #c0392b; }
[hidden] { display: none !important; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-charcoal);
  padding-block: 32px;
  position: relative;
  z-index: 1;
}
.footer-divider {
  height: 3px;
  background: linear-gradient(90deg,
    var(--clr-maroon),
    var(--clr-gold),
    var(--clr-maroon-light),
    var(--clr-gold-dark)
  );
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.35);
  background: var(--clr-maroon);
  object-fit: cover;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-warm-white);
  line-height: 1;
}
.footer-brand-loc { font-size: 0.72rem; color: rgba(250,248,245,0.45); margin-top: 4px; }
.footer-copy {
  font-size: 0.80rem;
  color: rgba(250,248,245,0.50);
  text-align: center;
  line-height: 1.7;
}
.footer-copy small { font-size: 0.72rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,245,0.65);
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-charcoal);
  transform: translateY(-3px);
}

/* ── ANIMATIONS / INTERSECTION OBSERVER ────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }
.fade-up-d6 { transition-delay: 0.6s; }

/* ── SCROLL BAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-warm-white); }
::-webkit-scrollbar-thumb { background: var(--clr-maroon); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold-dark); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 70px; }

  .header-inner { padding-block: 12px; }
  .brand-emblem { width: 44px; height: 44px; }
  .nav-cta { padding: 8px 14px; font-size: 0.76rem; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-subheadline { text-align: center; }
  .highlights-strip { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .hero::after { display: none; }

  .fb-1 { top: -10px; left: 0; }
  .fb-2 { bottom: 20px; right: -10px; }
  .fb-3 { display: none; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .form-container { grid-template-columns: 1fr; }
  .form-info .section-label,
  .form-info .section-title,
  .form-info .section-subtitle { text-align: center; margin-inline: auto; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 24px 20px; }
  .form-card-header { padding: 24px 20px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .social-links { justify-content: center; }
  .header-nav { display: none; }
}

/* ── HERO IMAGE FALLBACK (CSS Art) ──────────────────────────── */
.hero-img-fallback {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--clr-maroon-dark) 0%, #4a0e20 50%, #2a0a14 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-img-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(212,175,55,0.03) 0px, rgba(212,175,55,0.03) 1px, transparent 1px, transparent 30px);
}
.hif-inner {
  position: relative;
  width: 85%;
  height: 78%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
/* Table cloth */
.hif-cloth {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(135deg, #f0e8d0, #e8d8b0);
  border-radius: 4px 4px 0 0;
  border-top: 3px solid var(--clr-gold);
}
.hif-cloth::before {
  content: '';
  position: absolute;
  top: 6px; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-gold-dark) 0px, var(--clr-gold-dark) 8px, transparent 8px, transparent 14px);
  opacity: 0.4;
}
/* Table top */
.hif-table {
  position: absolute;
  bottom: 33%;
  width: 96%;
  height: 6px;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold), var(--clr-gold-dark));
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
/* Serving dome */
.hif-dome {
  position: absolute;
  bottom: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hif-dome-top {
  width: 110px;
  height: 60px;
  background: linear-gradient(135deg, #e8e0c8, #c8b880, #a89850);
  border-radius: 55px 55px 0 0;
  box-shadow: inset 0 -4px 12px rgba(0,0,0,0.2), 0 -2px 15px rgba(212,175,55,0.3);
  position: relative;
}
.hif-dome-top::after {
  content: '';
  position: absolute;
  top: 6px; left: 20px;
  width: 25px; height: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.hif-dome-plate {
  width: 130px;
  height: 10px;
  background: linear-gradient(90deg, #b8a040, #d4af37, #e8cb6a, #d4af37, #b8a040);
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
/* Candles & flowers */
.hif-items {
  position: absolute;
  bottom: 38%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 14%;
  align-items: flex-end;
}
.hif-candle {
  width: 10px;
  height: 45px;
  background: linear-gradient(135deg, #f5f0e8, #e8dcc0);
  border-radius: 5px 5px 2px 2px;
  position: relative;
}
.hif-candle::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 14px solid #FF8C00;
  filter: blur(1px);
  animation: flicker 1.5s ease-in-out infinite;
}
.hif-candle::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: #333;
  border-radius: 1px;
}
.hif-flower {
  width: 30px;
  height: 30px;
  position: relative;
}
.hif-flower::before {
  content: '🌸';
  font-size: 26px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scaleY(1) scaleX(1); opacity: 1; }
  25%       { transform: translateX(-48%) scaleY(0.95) scaleX(1.05); opacity: 0.9; }
  75%       { transform: translateX(-52%) scaleY(1.05) scaleX(0.95); opacity: 0.95; }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  .bg-orbs, .particles, .scroll-indicator, .floating-badge { display: none; }
  body { background: white; color: black; }
}

/* ── PREFERS REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── SUCCESS POPUP ──────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(60px, 12vh, 140px);
  background: rgba(45, 45, 45, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
  pointer-events: none;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgba(45, 45, 45, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: all;
}
.popup-overlay.closing {
  opacity: 0;
  background: rgba(45, 45, 45, 0.0);
  backdrop-filter: blur(0px);
}

.popup-card {
  position: relative;
  background: white;
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 80px rgba(123, 30, 58, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(212, 175, 55, 0.10);
  padding: 48px 44px 36px;
  max-width: 480px;
  width: calc(100% - 40px);
  text-align: center;
  transform: translateY(-40px) scale(0.92);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.popup-overlay.closing .popup-card {
  transform: translateY(-30px) scale(0.95);
  opacity: 0;
}

/* Decorative top gradient bar */
.popup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--clr-maroon) 0%,
    var(--clr-gold) 40%,
    var(--clr-maroon-light) 70%,
    var(--clr-gold-dark) 100%
  );
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Shimmer effect on card */
.popup-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.05) 45%,
    rgba(212, 175, 55, 0.12) 50%,
    rgba(212, 175, 55, 0.05) 55%,
    transparent 100%
  );
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.popup-overlay.active .popup-card::after {
  animation: popupShimmer 1.8s ease 0.6s forwards;
}
@keyframes popupShimmer {
  to { left: 100%; }
}

/* Close button */
.popup-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(123, 30, 58, 0.06);
  border: 1px solid rgba(123, 30, 58, 0.10);
  color: var(--clr-maroon);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.popup-close:hover {
  background: var(--clr-maroon);
  color: white;
  border-color: var(--clr-maroon);
  transform: rotate(90deg);
}

/* Animated checkmark */
.popup-icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
}
.popup-checkmark {
  width: 80px; height: 80px;
}
.popup-checkmark-circle {
  stroke: var(--clr-gold);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-linecap: round;
  fill: none;
}
.popup-overlay.active .popup-checkmark-circle {
  animation: popupCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.2s forwards;
}
@keyframes popupCircle {
  to { stroke-dashoffset: 0; }
}

.popup-checkmark-check {
  stroke: var(--clr-maroon);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.popup-overlay.active .popup-checkmark-check {
  animation: popupCheck 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.7s forwards;
}
@keyframes popupCheck {
  to { stroke-dashoffset: 0; }
}

/* Title */
.popup-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Message */
.popup-message {
  font-size: 0.94rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.popup-message strong {
  color: var(--clr-maroon);
  font-weight: 600;
}

/* Divider */
.popup-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  margin-bottom: 18px;
}

/* Footer */
.popup-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.popup-footer a {
  color: var(--clr-maroon);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(123, 30, 58, 0.25);
  text-underline-offset: 3px;
  transition: all var(--transition);
}
.popup-footer a:hover {
  color: var(--clr-gold-dark);
  text-decoration-color: var(--clr-gold-dark);
}
.popup-footer-icon {
  font-size: 1.1rem;
}

/* Popup responsive */
@media (max-width: 480px) {
  .popup-card {
    padding: 36px 24px 28px;
  }
  .popup-title { font-size: 1.25rem; }
  .popup-icon-wrap { width: 64px; height: 64px; margin-bottom: 18px; }
  .popup-checkmark { width: 64px; height: 64px; }
}
