/* =========================================
   INTEZAR'S CHOCOLATE CREATIONS
   Premium Luxury CSS — style.css
   ========================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --red: #8B0000;
  --red-light: #a80000;
  --red-dark: #5c0000;
  --gold: #D4AF37;
  --gold-light: #e8cc6a;
  --gold-dark: #a88b1e;
  --cream: #fdf6ec;
  --cream-2: #f5e6d3;
  --brown: #3d1c02;
  --brown-light: #5c2d0a;
  --text-dark: #1a0a00;
  --text-mid: #4a2810;
  --text-light: #8a6040;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(212, 175, 55, 0.25);
  --glass-shadow: 0 8px 40px rgba(139, 0, 0, 0.18);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 80px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

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

/* ---- HEARTS CANVAS ---- */
#heartsCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
  padding: 0 2rem;
}
.navbar.scrolled {
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(139,0,0,0.12);
  height: 65px;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-icon { font-size: 2rem; filter: drop-shadow(0 2px 8px rgba(212,175,55,0.5)); }
.logo-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 99px;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: rgba(212,175,55,0.1);
}
.nav-link:hover::after, .nav-link.active::after { left: 18%; right: 18%; }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(139,0,0,0.3);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,0,0,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--red);
  border-radius: 99px;
  transition: var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 1.5rem 3rem;
  background: linear-gradient(135deg,
    #1a0000 0%,
    #3d0000 20%,
    #5c0000 40%,
    #3d1c02 60%,
    #2a0a00 80%,
    #1a0000 100%
  );
  background-size: 400% 400%;
  animation: heroGradient 10s ease infinite;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(139,0,0,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212,175,55,0.5);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-title .line3 {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 2rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span:not(.stat-num):not(.stat-label) {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,175,55,0.3);
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-dot {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 99px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 99px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 99px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(212,175,55,0.4);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(212,175,55,0.55);
}
.btn-large { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 99px;
  border: 1.5px solid rgba(212,175,55,0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-secondary:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 99px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  overflow: hidden;
  position: relative;
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* Ripple */
.ripple { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ---- SECTION SHARED ---- */
.section { padding: 6rem 1.5rem; position: relative; z-index: 1; }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: linear-gradient(135deg, rgba(139,0,0,0.08), rgba(212,175,55,0.1));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-header h2 em { color: var(--red); font-style: italic; }
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.section-divider span { color: var(--gold); font-size: 1rem; }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ---- GLASS CARD ---- */
.glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(139,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
}

/* ---- ABOUT ---- */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.feat-item:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.3);
  transform: translateX(6px);
}
.feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.feat-item strong { display: block; color: var(--text-dark); font-weight: 600; margin-bottom: 0.2rem; font-size: 0.95rem; }
.feat-item span { color: var(--text-light); font-size: 0.85rem; line-height: 1.5; }

.about-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(139,0,0,0.2);
  transition: var(--transition);
}
.about-img-card:hover img { transform: scale(1.02); }
.about-img-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 28px;
  z-index: -1;
}
.img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}

/* ---- SERVICES ---- */
.services {
  background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #5c1800 100%);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(212,175,55,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139,0,0,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.services .section-header h2, .services .section-header { color: white; }
.services .section-header h2 { color: white; }
.services .section-badge { color: var(--gold); border-color: rgba(212,175,55,0.4); background: rgba(212,175,55,0.08); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.service-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(212,175,55,0.18) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
  padding: 2rem;
  transition: var(--transition);
  animation-delay: var(--delay);
}
.service-card:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(212,175,55,0.4) !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.1) !important;
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.3));
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

.why-choose {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.why-item { text-align: center; padding: 1.5rem; }
.why-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.3);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-item h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.why-item p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; }

/* ---- GALLERY ---- */
.gallery { background: var(--cream); }
.masonry-grid {
  columns: 4;
  column-gap: 1.2rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.masonry-item.tall { margin-bottom: 1.2rem; }
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.masonry-item:hover img { transform: scale(1.08); }
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,0,0,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.masonry-item:hover .img-overlay { opacity: 1; }
.img-overlay span {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ---- ORDER SECTION ---- */
.order-section {
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.order-wrap { max-width: 860px; margin: 0 auto; }
.order-card {
  padding: 3rem;
  background: rgba(255,255,255,0.8) !important;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.req { color: var(--red); }
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 1rem;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.textarea-wrap .msg-icon { top: 1.1rem; transform: none; }
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  background: rgba(253,246,236,0.8);
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  color: var(--gold-dark);
  pointer-events: none;
  font-size: 0.9rem;
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.input-wrap textarea { padding-top: 0.9rem; resize: vertical; }
.form-submit { text-align: center; margin-top: 2rem; }
.form-note { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-light); }

/* ---- PAYMENT SECTION ---- */
.payment-section {
  background: linear-gradient(135deg, #1a0000 0%, #2a0000 50%, #3d1c02 100%);
  position: relative;
  overflow: hidden;
}
.payment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.payment-section .section-header h2 { color: white; }
.payment-section .section-badge { color: var(--gold); border-color: rgba(212,175,55,0.4); background: rgba(212,175,55,0.08); }
.payment-section .section-desc { color: rgba(255,255,255,0.6); }
.payment-wrap { max-width: 600px; margin: 0 auto; }
.payment-card {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4) !important;
  padding: 3rem 2.5rem;
  text-align: center;
}
.payment-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.pay-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.pay-step-num {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--red-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pay-arrow { color: rgba(212,175,55,0.5); font-size: 1.2rem; }

.qr-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto 2rem;
}
.qr-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(212,175,55,0.25);
  animation: glowPulse 3s ease-in-out infinite;
}
.qr-glow-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.12);
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.15), 0 0 60px rgba(212,175,55,0.05); border-color: rgba(212,175,55,0.25); }
  50% { box-shadow: 0 0 30px rgba(212,175,55,0.35), 0 0 80px rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.5); }
}
.qr-container {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  display: inline-block;
  position: relative;
}
.qr-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  justify-content: center;
}
.upi-badge {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.qr-label span:last-child { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.qr-img-wrap {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}
.qr-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.qr-upi-apps {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-light);
}
.upi-app {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-mid);
}
.payment-instruction {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.instruction-icon { font-size: 1.5rem; flex-shrink: 0; }
.payment-instruction p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; }
.payment-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.payment-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E) !important; color: white; box-shadow: 0 6px 25px rgba(37,211,102,0.35) !important; }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37,211,102,0.5) !important; }

/* ---- CTA ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
  text-align: center;
  padding: 7rem 1.5rem;
}
.cta-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139,0,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-emoji { font-size: 4rem; margin-bottom: 1.5rem; display: block; animation: sway 3s ease-in-out infinite; }
@keyframes sway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.cta-content p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(180deg, #0f0000 0%, #1a0000 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 2rem;
}
.footer-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 42px; height: 42px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition-fast);
}
.social-btn:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  transition: var(--transition-fast);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  transition: var(--transition-fast);
}
a.contact-item:hover { color: var(--gold-light); }
.contact-item span:first-child { font-size: 1rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-left p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-bottom-left strong { color: var(--gold); }
.dev-credit {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  transition: var(--transition-fast);
  padding: 0.4rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 99px;
}
.dev-credit:hover {
  color: var(--gold);
  border-color: rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.05);
}
.dev-credit strong { color: var(--gold-light); }

/* ---- VISITOR COUNTER ---- */
.footer-visitor-count {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  letter-spacing: 0.02em;
}
.visitor-icon { font-size: 0.78rem; opacity: 0.6; }
.visitor-label { font-weight: 400; }
.visitor-num {
  font-weight: 600;
  color: rgba(212,175,55,0.55);
  font-variant-numeric: tabular-nums;
  min-width: 2.5ch;
}
@media (max-width: 700px) {
  .footer-visitor-count { order: 3; }
}

/* ---- STICKY WA ---- */
.sticky-wa {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.sticky-wa:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: var(--transition-fast);
}
.sticky-wa:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-fast);
  cursor: pointer;
}
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- MOBILE ---- */
@media (max-width: 1100px) {
  .masonry-grid { columns: 3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap { order: -1; }
  .about-img-card img { height: 380px; }
  .masonry-grid { columns: 2; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,0,0,0.97);
    backdrop-filter: blur(30px);
    z-index: 9998;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  .nav-links.mobile-open .nav-link {
    color: white;
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
  .nav-links.mobile-open .nav-link:hover { color: var(--gold); }
  .hamburger { z-index: 9999; }
}
@media (max-width: 700px) {
  .section { padding: 4.5rem 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .masonry-grid { columns: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 0; padding: 1rem 1.2rem; }
  .stat { padding: 0 1rem; }
  .stat-num { font-size: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payment-steps { flex-direction: column; }
  .pay-arrow { transform: rotate(90deg); }
  .order-card { padding: 2rem 1.5rem; }
  .payment-card { padding: 2rem 1.5rem; }
  .qr-img-wrap { width: 180px; height: 180px; }
  .why-choose { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 2; column-gap: 0.6rem; }
  .masonry-item { margin-bottom: 0.6rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .stat { width: 50%; }
  .why-grid { grid-template-columns: 1fr; }
}
