/* ============================================================
   S K PACKAGING — MAIN STYLESHEET
   Modern Industrial Design | Bilingual (English & Marathi)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Tiro+Devanagari+Marathi:ital@0;1&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --primary:        #D84315;   /* Deep Saffron/Burnt Orange  */
  --primary-dark:   #BF360C;
  --primary-light:  #FF7043;
  --secondary:      #1A237E;   /* Deep Navy Blue             */
  --secondary-dark: #0D1B8E;
  --accent:         #F9A825;   /* Gold                       */
  --accent-light:   #FFD54F;
  --success:        #2E7D32;
  --white:          #FFFFFF;
  --off-white:      #FFF8F5;
  --light-bg:       #FFF3E0;
  --text-dark:      #1C1C1E;
  --text-mid:       #3D3D3D;
  --text-light:     #6B6B6B;
  --border:         #E0D5CC;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.18);
  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --transition:     all .35s cubic-bezier(.4,0,.2,1);
  --font-en:        'Poppins', sans-serif;
  --font-mr:        'Tiro Devanagari Marathi', 'Poppins', serif;
  --header-h:       80px;
}

/* ── Base Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-en);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.lang-mr { font-family: var(--font-mr); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }

/* ── Section Labels & Headings ────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(216,67,21,.1);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 50px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(216,67,21,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(216,67,21,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.45);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
/* Top Bar */
.header-topbar {
  background: var(--secondary);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contact a {
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 6px;
  transition: color .25s;
}
.topbar-contact a:hover { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .8rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); transform: scale(1.15); }

/* Main Nav */
.header-main {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(216,67,21,.3);
  flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; fill: white; }
.logo-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.logo-text span {
  font-size: .72rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(216,67,21,.07);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 16px; right: 16px;
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid var(--border);
  gap: 2px;
}
.lang-btn {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-light);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(216,67,21,.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scrolled Header */
#site-header.scrolled .header-topbar { display: none; }
#site-header.scrolled .header-main {
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A237E 0%, #283593 40%, #1565C0 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero_banner.png');
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(26,35,126,.85) 0%,
    rgba(216,67,21,.4) 100%);
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(249,168,37,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(216,67,21,.15) 0%, transparent 50%);
  animation: particleFloat 8s ease-in-out infinite alternate;
}
@keyframes particleFloat {
  from { transform: scale(1) rotate(0deg); }
  to   { transform: scale(1.08) rotate(2deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,.2);
  border: 1px solid rgba(249,168,37,.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown .8s ease both;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp .9s ease .2s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp .9s ease .35s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp .9s ease .5s both;
}
.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .65s both;
}
.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-mouse::after {
  content: '';
  width: 3px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%  { opacity: 1; transform: translateY(0); }
  100%{ opacity: 0; transform: translateY(12px); }
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   MARQUEE / TICKER
══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  padding: 0 40px;
}
.marquee-item::after {
  content: '●';
  color: var(--accent);
  font-size: .7rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   FEATURES / WHY US
══════════════════════════════════════════════════════════ */
.features-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(216,67,21,.1), rgba(249,168,37,.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════════════ */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-thumb {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #f0e8e0;
}
.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.product-body { padding: 24px; }
.product-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.product-body p { font-size: .88rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.7; }
.product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-features span {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(216,67,21,.08);
  color: var(--primary);
  border: 1px solid rgba(216,67,21,.2);
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--primary);
}
.product-img-placeholder .icon-big { font-size: 5rem; opacity: .5; }
.product-img-placeholder p { font-size: .85rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #0D47A1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::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='%23ffffff' 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");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-5px);
}
.stat-item .stat-icon { font-size: 2.4rem; margin-bottom: 12px; }
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS / RATINGS
══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 6rem;
  color: rgba(216,67,21,.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { color: var(--accent); font-size: 1.1rem; }
.review-text {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.author-info .role { font-size: .8rem; color: var(--text-light); }
.rating-summary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.rating-summary .big-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.rating-summary .stars-row { display: flex; gap: 6px; justify-content: center; }
.rating-summary .stars-row .star { font-size: 1.5rem; color: var(--accent-light); }
.rating-summary .total { font-size: 1rem; opacity: .8; }

/* ══════════════════════════════════════════════════════════
   APPOINTMENT SECTION (HOME)
══════════════════════════════════════════════════════════ */
.appointment-home {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  position: relative;
}
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.appt-info h2 {
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 18px;
}
.appt-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; font-size: .95rem; }
.contact-chips { display: flex; flex-direction: column; gap: 14px; }
.contact-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-chip:hover { transform: translateX(6px); border-color: var(--primary); }
.chip-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chip-icon.phone  { background: rgba(216,67,21,.12); }
.chip-icon.email  { background: rgba(26,35,126,.1); }
.chip-icon.whatsapp { background: rgba(37,211,102,.12); }
.chip-details .label { font-size: .72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.chip-details .value { font-size: .95rem; font-weight: 600; color: var(--text-dark); }

/* ── Form Card ────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}
.form-card .sub { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group label .req { color: var(--primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  font-size: .93rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(216,67,21,.1);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #E53935; }
.field-error {
  font-size: .78rem;
  color: #E53935;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.captcha-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  flex: 1;
}
.captcha-input {
  width: 80px !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.captcha-refresh {
  background: none;
  font-size: 1.2rem;
  opacity: .6;
  transition: var(--transition);
}
.captcha-refresh:hover { opacity: 1; transform: rotate(180deg); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  text-align: center;
  padding: 32px;
  display: none;
}
.form-success .checkmark {
  font-size: 4rem;
  margin-bottom: 16px;
}
.form-success h4 { font-size: 1.3rem; font-weight: 700; color: var(--success); margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION (HOME PREVIEW)
══════════════════════════════════════════════════════════ */
.about-home {
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-imgs {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: 42%;
  left: 58%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 3px solid var(--white);
}
.about-badge-float .year { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-float .since { font-size: .72rem; opacity: .8; text-transform: uppercase; letter-spacing: 1px; }
.about-text .list-items { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border-left: 3px solid var(--primary);
}
.list-item .check {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.list-item p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   MAP SECTION
══════════════════════════════════════════════════════════ */
.map-section { padding: 0; }
.map-wrapper { position: relative; height: 400px; overflow: hidden; border-radius: 0; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.map-card {
  position: absolute;
  top: 40px; left: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  z-index: 2;
}
.map-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.map-card address {
  font-style: normal;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.map-card .map-links { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.map-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.map-link:hover { background: var(--primary); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #0D1B4E 0%, #0A1235 100%);
  color: rgba(255,255,255,.75);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text h1 { color: var(--white); font-size: 1.4rem; }
.footer-brand p { margin-top: 18px; font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1rem;
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}
.footer-col h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-weight: bold;
}
.footer-links a:hover { color: var(--white); transform: translateX(5px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .88rem;
}
.footer-contact-item .icon { font-size: 1rem; color: var(--primary); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color .25s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .25s; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13,27,78,.97);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 22px;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid rgba(255,255,255,.1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-icon { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.cookie-text strong { color: var(--white); }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
}
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(216,67,21,.4); }
.cookie-decline {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.cookie-decline:hover { background: rgba(255,255,255,.18); }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 9000;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 26px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }
.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: var(--text-dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 26px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1565C0 100%);
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v0h-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .25s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════════════════════ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-img .placeholder-art {
  font-size: 8rem;
  opacity: .35;
  filter: sepia(0.5);
}
.spec-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 10px 14px; font-size: .88rem; }
.spec-table td:first-child { font-weight: 600; color: var(--text-mid); width: 140px; }
.spec-table td:last-child { color: var(--text-dark); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 14px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(216,67,21,.3);
}
.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.timeline-year { font-size: .78rem; color: var(--primary); font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.timeline-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.timeline-content p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 18px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-card-icon.c-phone   { background: rgba(216,67,21,.1); }
.contact-card-icon.c-email   { background: rgba(26,35,126,.1); }
.contact-card-icon.c-whatsapp { background: rgba(37,211,102,.12); }
.contact-card-icon.c-address { background: rgba(249,168,37,.12); }
.contact-card-body .title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 5px; }
.contact-card-body .value { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.contact-card-body a { color: var(--text-dark); transition: color .25s; }
.contact-card-body a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════════
   PRIVACY POLICY
══════════════════════════════════════════════════════════ */
.policy-content {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-bg);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { font-size: .93rem; color: var(--text-mid); line-height: 1.9; }
.policy-content ul { padding-left: 22px; margin: 14px 0; }
.policy-content ul li { list-style: disc; margin-bottom: 6px; }
.policy-content a { color: var(--primary); }
.policy-meta {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-top: 40px;
  font-size: .82rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--secondary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo { font-size: 2rem; font-weight: 900; color: var(--white); }
.preloader-logo span { color: var(--accent); }
.preloader-bar {
  width: 220px; height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: preloaderFill 1.8s ease forwards;
}
@keyframes preloaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 44px; }
}

@media (max-width: 900px) {
  .appointment-inner,
  .about-inner,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-detail.reverse { direction: ltr; }
  .about-imgs { height: 320px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Nav Base */
.mobile-nav { display: none; }

@media (max-width: 900px) {
  /* Mobile Nav */
  .mobile-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px 32px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }
  .mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:hover { color: var(--primary); }
  .topbar-contact .email-hide { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .section-pad { padding: 60px 0; }
  .hero-stats { gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .map-card { position: static; max-width: 100%; border-radius: 0; box-shadow: none; border-top: 1px solid var(--border); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .policy-content { padding: 30px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; }
}

/* ── Scroll-to-top button ─────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 110px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 8999;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── Misc ─────────────────────────────────────────────── */
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider.center { margin: 16px auto 28px; }
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
}
.tag-primary { background: rgba(216,67,21,.1); color: var(--primary); }
.tag-secondary { background: rgba(26,35,126,.08); color: var(--secondary); }
.tag-accent { background: rgba(249,168,37,.15); color: #B8860B; }

/* ── Image Placeholder Styles ─────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f5ede8, #ffe5d0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--primary);
}
.img-placeholder .icon { font-size: 4rem; opacity: .5; }
.img-placeholder .caption { font-size: .8rem; color: var(--text-light); text-align: center; padding: 0 20px; }

/* ── Animation Delays ─────────────────────────────────── */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
