/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --page-bg: #FAF5F0;
  --text-main: #2D1B0E;
  --text-muted: #5D3A24;
  --gold-light: #F4E3A6;
  --gold: #D4A843;
  --gold-dark: #A57E29;
  --brand-maroon: #5E1218;
  --brand-green: #113A1C;
  --brand-purple: #3A1158;
  --whatsapp-green: #25D366;
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--page-bg) url('new_orange_bg.jpg') top center/cover repeat-y;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-title-wrap {
  text-align: center;
  margin-bottom: 12px;
  padding-top: 8px;
}

.section-subtitle {
  font-family: var(--font-heading);
  text-transform: capitalize;
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-subtitle .line {
  height: 1px;
  width: 35px;
  background: var(--gold);
}

/* ============================================================
   HEADER + MOBILE NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 10px;
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

/* Animated state */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — CSS slide animation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  padding: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  z-index: 199;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.22s ease;
  pointer-events: none;
}

.mobile-nav.open {
  max-height: 500px;
  padding: 8px 0;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.14s ease, color 0.14s ease;
}

.mobile-nav a:hover {
  background: var(--page-bg);
  color: var(--gold-dark);
}

/* Header save-contact button */
.header-save-btn {
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  font-size: 0.9rem;
  font-family: var(--font-body);
  will-change: transform;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.05s;
}

.btn-brown {
  background: var(--brand-maroon);
  color: white;
  box-shadow: 0 4px 15px rgba(94, 18, 24, 0.3);
}

.btn-brown:hover {
  background: #4a0e13;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(94, 18, 24, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212, 168, 67, 0.3);
}

/* ============================================================
   FLOATING ACTIONS (right-side pill)
   ============================================================ */
.floating-actions {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 180;
}

/* Mobile-only bottom bar — hidden on desktop (shown via the ≤768px media query) */
.fab-bar {
  display: none;
}

.float-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease, color 0.2s ease;
  will-change: transform;
}

.float-btn:hover {
  transform: translateY(-2px) scale(1.12);
  color: var(--gold-dark);
  box-shadow: 0 10px 22px rgba(165, 126, 41, 0.28);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(115% 130% at 100% 50%, rgba(212, 168, 67, 0.20) 0%, rgba(212, 168, 67, 0.06) 38%, rgba(250, 245, 240, 0) 60%),
    linear-gradient(180deg, #faf5f0 0%, #f7efe2 100%);
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Breathing room below the hero buttons; the stats bar still laps
     40px up into this (see .stats-bar margin-top) so the zodiac
     background keeps ending partway through the KPI rectangle. */
  padding-bottom: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #faf5f0 0%, rgba(250, 245, 240, 0.7) 42%, transparent 68%);
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.08;
  color: #111;
  margin-bottom: 14px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.hero-subtitle .line {
  height: 1px;
  width: 50px;
  flex-shrink: 0;
  background: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* Cap at the original framing width so the wheel keeps its size (no zoom),
     while staying pinned flush to the screen's right edge. */
  width: min(54%, 650px);
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.88;
  /* Dissolve the left edge into the hero's warm glow so it reads as light, not a pasted panel */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 30%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 30%, #000 62%);
}

.hero-person {
  max-height: 75vh;
  object-fit: contain;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: white;
  border-radius: 18px;
  padding: 28px 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  border-right: 1px solid #eee;
  padding: 0 8px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--gold-dark);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-maroon);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 56px 0 20px;
}

.about-inner {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image-inner {
  width: 100%;
  aspect-ratio: 4/5;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 5px solid white;
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── Animated Achievement Stats Card ── */
.about-stats-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 16px;
  background: linear-gradient(135deg, #fff7f0 0%, #fff 60%, #fff8f0 100%);
  border: 1.5px solid rgba(180,130,50,0.18);
  border-radius: 18px;
  padding: 18px 12px;
  box-shadow: 0 8px 32px rgba(94,18,24,0.10), 0 1.5px 6px rgba(180,130,50,0.10);
  position: relative;
  overflow: hidden;
}
.about-stats-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,130,50,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.about-stat .stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--brand-maroon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-stat .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--brand-maroon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 1px;
  vertical-align: super;
}
.about-stat .stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 600;
  margin-top: 2px;
}
.about-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(180,130,50,0.3), transparent);
  flex-shrink: 0;
}
@keyframes statPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.about-content {
  flex: 1.5;
}

.about-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about-points {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.point {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding-top: 20px;
  padding-bottom: 12px;
}

.services-carousel {
  position: relative;
  margin-top: 4px;
  /* reserve side gutters for the arrows so they never overlap card content */
  padding: 0 48px;
}

.services-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* generous vertical padding so the lifted card's shadow isn't clipped
     (overflow-x:auto forces overflow-y to clip too) */
  padding: 24px 12px 34px;
  scrollbar-width: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.services-track .service-card {
  flex: 0 0 calc((100% - 54px) / 4); /* 4 cards per view */
  scroll-snap-align: start;
}

/* ============================================================
   PERFUMERY GALLERY CAROUSEL
   ============================================================ */
.gallery-section {
  padding-top: 20px;
  padding-bottom: 12px;
}

.gallery-carousel {
  position: relative;
  margin-top: 4px;
  padding: 0 48px; /* arrow gutters */
}

/* Clipping viewport; the track slides inside it by transform */
.gallery-viewport {
  overflow: hidden;
  padding: 24px 0 34px; /* vertical room for the lifted card's shadow */
}

.gallery-track {
  --visible: 3; /* cards per view — overridden per breakpoint */
  display: flex;
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y; /* let the page scroll vertically; we handle horizontal */
  cursor: grab;
}

.gallery-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.gallery-item {
  flex: 0 0 calc(100% / var(--visible));
  box-sizing: border-box;
  padding: 0 9px; /* 18px gutter between cards */
}

.gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.gallery-card img {
  -webkit-user-drag: none;
  user-select: none;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.22);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(to top, rgba(94, 18, 24, 0.62) 0%, rgba(94, 18, 24, 0.05) 42%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-maroon);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-spring);
}

.gallery-card:hover .gallery-cta,
.gallery-card:focus-visible .gallery-cta {
  transform: translateY(0);
}

/* Arrows reveal on hover (desktop); swipe + dots carry mobile */
.gallery-carousel .carousel-btn {
  opacity: 0;
}

.gallery-carousel:hover .carousel-btn {
  opacity: 1;
}

.gallery-carousel:hover .carousel-btn:disabled {
  opacity: 0.35;
}

@media (max-width: 1024px) {
  .gallery-track { --visible: 2; }
}

@media (max-width: 768px) {
  .gallery-track { --visible: 1; }
}

@media (max-width: 480px) {
  .gallery-carousel { padding: 0; }
  .gallery-item { padding: 0 6px; }
}

.carousel-btn {
  position: absolute;
  top: calc(50% - 11px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.5);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-maroon);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 3;
  transition: background 0.2s ease, opacity 0.2s ease, border-color 0.2s ease,
    box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-spring);
}

.carousel-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-dark);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 10px 24px rgba(165, 126, 41, 0.3);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(1.02);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(165, 126, 41, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 5px;
  background: var(--gold-dark);
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 28px 16px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(94, 18, 24, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(94, 18, 24, 0.16);
}

.service-icon {
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
  transition: transform 0.4s var(--ease-spring), color 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.18) translateY(-3px);
  color: var(--brand-maroon);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.service-link {
  display: inline-block;
  color: var(--brand-maroon);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.service-card:hover .service-link {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.service-link:hover {
  color: var(--gold-dark);
}

/* ============================================================
   DIVISIONS
   ============================================================ */
.divisions-section {
  padding-bottom: 12px;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.div-card {
  border-radius: 15px;
  padding: 36px 18px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}

.div-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 48px rgba(0,0,0,0.24);
}

.div-card.gold {
  background: linear-gradient(135deg, #e3c473, #D4A843);
  color: var(--text-main);
}

.div-card.maroon {
  background: linear-gradient(135deg, #7a171f, var(--brand-maroon));
}

.div-card.green {
  background: linear-gradient(135deg, #1b5c2d, var(--brand-green));
}

.div-card.purple {
  background: linear-gradient(135deg, #571985, var(--brand-purple));
}

.div-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.45s var(--ease-spring), background 0.3s ease;
}

.div-card:hover .div-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(255, 255, 255, 0.32);
}

/* Circular portrait avatar (gold card) */
.div-avatar {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.3s ease;
}

.div-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.div-card:hover .div-avatar {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

/* Uniform brand-logo badge — every division logo fills an identical box
   (each artwork carries its own background), so all three match in size. */
.div-logo {
  width: clamp(116px, 40%, 136px);
  aspect-ratio: 5 / 3;
  margin: 0 auto 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.3s ease;
}

.div-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.div-card:hover .div-logo {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.div-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.div-desc {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 22px;
  line-height: 1.7;
}

.div-card.gold .btn {
  background: var(--text-main);
  color: white;
  border: none;
}

.div-card .btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.div-card .btn:hover {
  background: white;
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Fixed-size icon buttons in relevant platform colors (no animation) */
.div-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.icon-btn:hover {
  filter: brightness(1.08);
}

/* relevant per-platform colors */
.icon-btn.ib-web { background: #2563eb; }   /* Website — blue */
.icon-btn.ib-mail { background: #ea6a1e; }  /* Email — orange */
.icon-btn.ib-yt { background: #ff0000; }    /* YouTube — red */
.icon-btn.ib-insta {                        /* Instagram — brand gradient */
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  padding-bottom: 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.prod-card {
  background: white;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(212, 168, 67, 0.2);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    border-color 0.3s ease;
  will-change: transform;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 168, 67, 0.55);
}

.prod-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.4s var(--ease-out);
}

.prod-card:hover .prod-img {
  transform: scale(1.07);
}

.prod-title {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 5px;
}

.prod-price {
  color: var(--brand-maroon);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.prod-btn {
  display: block;
  width: 100%;
  padding: 8px;
  background: var(--page-bg);
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.82rem;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.prod-btn:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 14px rgba(165, 126, 41, 0.3);
}

/* ============================================================
   YOUTUBE
   ============================================================ */
.youtube-section {
  padding-bottom: 12px;
}

.yt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.yt-card {
  background: white;
  border-radius: 15px;
  padding: 24px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    border-color 0.3s ease;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 168, 67, 0.5);
}

.yt-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.yt-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.25);
}

.yt-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.yt-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.yt-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vid-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #ddd;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid-play {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  transition: background 0.25s ease;
}

.vid-play i {
  transition: transform 0.35s var(--ease-spring);
}

.vid-thumb:hover .vid-play {
  background: rgba(0, 0, 0, 0.52);
}

.vid-thumb:hover .vid-play i {
  transform: scale(1.28);
}

.yt-btn {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 10px;
  background: var(--brand-maroon);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.yt-btn:hover {
  background: #4a0e13;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(94, 18, 24, 0.35);
}

/* ============================================================
   FOOTER ACTIONS
   ============================================================ */
.footer-actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px 24px;
  background: white;
  border-radius: 14px;
  margin: 50px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.f-act {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 130px;
  justify-content: center;
  border-right: 1px solid #eee;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.22s ease, transform 0.28s var(--ease-out), box-shadow 0.28s ease;
  will-change: transform;
}

.f-act:last-child {
  border-right: none;
}

.f-act:hover {
  background: var(--page-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.f-icon {
  font-size: 1.6rem;
  color: var(--gold-dark);
  transition: transform 0.4s var(--ease-spring), color 0.3s ease;
}

.f-act:hover .f-icon {
  transform: scale(1.15) translateY(-2px);
  color: var(--brand-maroon);
}

.f-text h4 {
  font-size: 0.9rem;
  color: var(--text-main);
}

.f-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.main-footer {
  background: white;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 1.1rem;
  color: var(--gold-dark);
}

.contact-text h5 {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-text p {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Need help bubble */
.help-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--whatsapp-green);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 300;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}

.help-bubble:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.help-bubble-text {
  text-align: right;
  font-size: 0.78rem;
  line-height: 1.3;
}

.help-bubble-icon {
  font-size: 1.4rem;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.app-toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--brand-maroon);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  z-index: 10000;
  box-shadow: 0 4px 18px rgba(94,18,24,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.app-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   QR MODAL — smooth scale + fade
   ============================================================ */
#qr-modal {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0);
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.22s ease;
}

#qr-modal.qr-modal--open {
  background: rgba(0,0,0,0.68);
  pointer-events: auto;
}

#qr-modal > div {
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.24s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease;
}

#qr-modal.qr-modal--open > div {
  transform: scale(1);
  opacity: 1;
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .header-save-btn {
    display: none;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .services-track .service-card {
    flex-basis: calc((100% - 36px) / 3); /* 3 per view */
  }

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

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-actions {
    padding: 24px 16px;
  }

  .f-act {
    min-width: 100px;
  }
}

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Header */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
  }

  .logo-img {
    height: 40px;
  }

  /* Hide floating sidebar actions — they eat too much screen space */
  .floating-actions {
    display: none;
  }

  /* Bottom FAB bar (mobile-only) */
  .fab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 190;
    border-top: 1px solid rgba(212, 168, 67, 0.15);
  }

  .fab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.2rem;
    flex: 1;
  }

  .fab-item span {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  /* Push main content up from FAB bar */
  body {
    padding-bottom: 60px;
  }

  /* Move help bubble above FAB */
  .help-bubble {
    bottom: 76px;
    right: 14px;
    padding: 8px 14px;
  }

  .help-bubble-text {
    display: none;
  }

  /* Hero — single column */
  .hero {
    min-height: auto;
    padding: 32px 0 16px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(250, 245, 240, 0.88) 0%, rgba(250, 245, 240, 0.72) 55%, rgba(250, 245, 240, 0.9) 100%);
  }

  .hero .container {
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
    padding: 20px 0 0;
    text-align: center;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    justify-content: center;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .hero-actions .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  /* Mobile: keep the zodiac as a soft ambient accent on the right */
  .hero-image {
    width: min(72%, 380px);
  }

  .hero-image img {
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 40%, #000 72%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 40%, #000 72%);
  }

  /* Hide portrait on very small screens */

  /* Stats — 2×2 grid (4 KPIs) */
  .stats-bar {
    margin-top: 20px;
    border-radius: 14px;
    padding: 16px 12px;
    column-gap: 22px;
    row-gap: 0;
  }

  .stat-item {
    flex: none;
    width: calc(50% - 11px);
    min-width: 0;
    padding: 18px 8px;
    border-right: none;
    border-bottom: none;
  }

  /* Only a horizontal divider under the top row; the column gap leaves
     a small break at its centre. No vertical divider between columns. */
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid #eee;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* About — stacked */
  .about {
    padding: 50px 0 20px;
  }

  .about-inner {
    flex-direction: column;
    gap: 28px;
  }

  .about-image {
    width: 60%;
    margin: 0 auto;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-content {
    text-align: center;
  }

  .about-points {
    justify-content: center;
  }

  /* Services — 2 per view */
  .services-track {
    gap: 14px;
  }

  .services-track .service-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  /* Divisions — 1 col */
  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .div-card {
    min-height: auto;
    padding: 28px 20px;
  }

  /* Products — 2 col */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* YouTube — stacked */
  .yt-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Section title */
  .section-title-wrap {
    padding-top: 40px;
    margin-bottom: 24px;
  }

  /* Footer actions — 3 col */
  .footer-actions {
    padding: 20px 12px;
    margin: 30px 0;
    gap: 12px;
  }

  .f-act {
    min-width: calc(33.33% - 8px);
    border-right: none;
    flex: none;
  }

  /* Footer contacts — 2 col */
  .footer-contact {
    gap: 12px;
  }

  .contact-item {
    flex: 0 0 calc(50% - 8px);
  }
}

/* ============================================================
   SMALL MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    gap: 12px;
  }

  .services-track .service-card {
    flex-basis: 85%; /* 1 per view with a peek of the next */
  }

  .carousel-btn {
    display: none; /* mobile: rely on swipe + dots */
  }

  .services-carousel {
    padding: 0; /* no arrows on mobile, reclaim the gutter */
  }

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

  /* Stats — compact 2×2 on phones (layout inherited from ≤768) */
  .stats-bar {
    padding: 8px 10px;
  }

  .stat-item {
    padding: 14px 6px;
  }

  .stat-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .about-image {
    width: 80%;
  }

  .f-act {
    min-width: calc(50% - 8px);
    flex: none;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   REDUCED MOTION — honor the user's OS accessibility setting
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}