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

:root {
  --purple: #6B21C8;
  --purple-dark: #4C1799;
  --purple-light: #8B5CF6;
  --purple-xlight: #EDE9FE;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --green: #10B981;
  --green-light: #D1FAE5;
  --blue: #3B82F6;
  --blue-light: #EFF6FF;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(107,33,200,.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --nav-h: 90px;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section { padding: 100px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 4px 18px rgba(107,33,200,.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,33,200,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.btn-promo {
  display: inline-block; margin-top: 16px;
  padding: 12px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem;
  background: var(--gold); color: var(--gray-900);
  transition: all var(--transition);
}
.btn-promo:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.4); }
.btn-promo-outline {
  background: transparent; color: var(--purple); border: 2px solid var(--purple);
}
.btn-promo-outline:hover { background: var(--purple); color: white; }
.btn-promo-green { background: var(--green); color: white; }
.btn-promo-green:hover { background: #059669; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: var(--purple-xlight);
  color: var(--purple);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; }
.section-sub { font-size: 1.1rem; color: var(--gray-600); max-width: 540px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
  height: var(--nav-h);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--purple);
}
.logo-text { display: none; }
.logo-img {
  width: auto; height: 72px; border-radius: 0; object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--gray-600); padding: 8px 14px; border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-xlight); }
.nav-cta { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--gray-900); border-radius: 3px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #3D0099 0%, #6B21C8 45%, #9333EA 80%, #C084FC 100%);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  max-width: 1200px; margin: 0 auto;
  gap: 60px; position: relative;
  overflow: hidden;
}

/* Full-width purple bg behind hero */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: linear-gradient(135deg, #3D0099 0%, #6B21C8 45%, #9333EA 80%, #C084FC 100%);
  z-index: -1;
}

.hero-paws { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.paw {
  position: absolute; font-size: 2rem; opacity: .08;
  animation: floatPaw 8s ease-in-out infinite;
}
.paw-1 { top: 15%; left: 8%; animation-delay: 0s; }
.paw-2 { top: 70%; left: 4%; animation-delay: 1.5s; }
.paw-3 { top: 30%; right: 12%; animation-delay: 3s; font-size: 2.8rem; }
.paw-4 { bottom: 20%; right: 6%; animation-delay: 4.5s; }
.paw-5 { top: 55%; left: 50%; animation-delay: 2s; }
.paw-6 { top: 10%; left: 40%; animation-delay: 6s; font-size: 1.5rem; }
@keyframes floatPaw {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-18px) rotate(10deg); }
}

.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-size: .85rem; font-weight: 700;
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.85);
  margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: white;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 600; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.25); }

.hero-image-wrap { flex-shrink: 0; }
.hero-img-card {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  width: min(460px, 100%);
}
.hero-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: white; border-radius: 14px; padding: 12px 20px;
  box-shadow: var(--shadow-md);
}
.hero-img-badge span { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--gray-900); display: block; }
.hero-img-badge small { color: var(--gray-600); font-size: .8rem; }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-icon {
  font-size: 2.8rem; margin-bottom: 20px;
  width: 72px; height: 72px;
  background: var(--purple-xlight);
  border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-900);
}
.service-card p { color: var(--gray-600); font-size: .95rem; line-height: 1.65; margin-bottom: 20px; }
.card-link {
  color: var(--purple); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem;
  transition: gap var(--transition);
}
.card-link:hover { text-decoration: underline; }

/* ===== PROMOS ===== */
.promos { background: var(--gray-50); }
.promos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.promo-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.promo-star { border-color: var(--gold); }
.promo-star::before { background: linear-gradient(90deg, var(--gold), #FCD34D); }
.promo-green { border-color: var(--green); }
.promo-green::before { background: linear-gradient(90deg, var(--green), #34D399); }
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--gray-900);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .75rem;
  padding: 4px 12px; border-radius: 50px; letter-spacing: .04em;
}
.promo-badge-blue { background: var(--blue); color: white; }
.promo-badge-green { background: var(--green); color: white; }
.promo-icon { font-size: 2.5rem; margin-bottom: 16px; }
.promo-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.promo-card p { color: var(--gray-600); font-size: .95rem; margin-bottom: 4px; }
.promo-price { margin: 20px 0 4px; }
.price-main {
  font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; color: var(--purple);
}
.promo-star .price-main { color: var(--gold); }
.promo-green .price-main { color: var(--green); }
.price-old {
  display: inline-block; margin-left: 8px;
  font-size: 1rem; color: var(--gray-400); text-decoration: line-through;
}

/* ===== PRODUCTS ===== */
.products { background: var(--white); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
  margin-bottom: 60px;
}
.product-cat {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  border: 1.5px solid var(--gray-200);
}
.product-cat:hover {
  background: var(--purple-xlight);
  border-color: var(--purple-light);
  transform: translateY(-4px);
}
.product-cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.product-cat h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.product-cat p { font-size: .85rem; color: var(--gray-600); }

.brands-wrap {
  background: linear-gradient(135deg, var(--purple-xlight), #F5F3FF);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
.brands-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 32px; color: var(--gray-900); }
.brands-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.brand-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 36px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  min-width: 160px;
}
.brand-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.brand-icon { font-size: 2rem; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; }
.brand-pedigree .brand-name { color: #C8102E; }
.brand-royal .brand-name { color: #002147; }
.brand-more .brand-name { color: var(--purple); }
.brand-sub { font-size: .75rem; color: var(--gray-400); font-weight: 600; }

/* ===== ABOUT ===== */
.about { background: var(--gray-50); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text .section-title { text-align: left; }
.about-text .section-tag { display: inline-block; }
.about-desc { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 18px; line-height: 1.8; }
.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border-radius: var(--radius-sm); padding: 16px 20px;
  border: 1.5px solid var(--gray-200);
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.pillar small { color: var(--gray-600); font-size: .85rem; }
.about-img-wrap { position: relative; }
.about-img { border-radius: 24px; width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-img-tag {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--purple); color: white;
  border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-md);
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,33,200,.7) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 18px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem;
}
.gallery-cta { text-align: center; margin-top: 48px; }
.gallery-cta p { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 20px; font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-light); }
.stars { font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--gray-600); font-size: 1rem; line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author small { color: var(--gray-400); font-size: .8rem; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-block { margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--gray-600); font-size: .95rem; }
.contact-item a:hover { color: var(--purple); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

.contact-form-wrap { background: var(--gray-50); border-radius: var(--radius); padding: 40px; }
.contact-form h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; color: var(--gray-900);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .85rem;
  color: var(--gray-900); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: .95rem; color: var(--gray-900);
  background: white; transition: border-color var(--transition);
  outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(107,33,200,.1); }
.form-note { text-align: center; font-size: .82rem; color: var(--gray-400); margin-top: 12px; }
.form-success {
  display: none; text-align: center; padding: 48px 20px;
}
.form-success.show { display: block; }
.contact-form.hide { display: none; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-900); }
.form-success p { color: var(--gray-600); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 60px;
}
.footer-logo { width: auto; height: 80px; border-radius: 0; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-size: .9rem; color: var(--gray-400); margin-bottom: 20px; line-height: 1.6; }
.footer-social {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #f09433,#dc2743,#bc1888);
  color: white; padding: 10px 20px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .85rem;
  transition: all var(--transition);
}
.footer-social:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.footer-links h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--purple-light); }
.footer-contact h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-contact p { font-size: .9rem; margin-bottom: 12px; line-height: 1.65; }
.footer-contact a { color: var(--purple-light); font-weight: 600; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
  font-size: .85rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--purple); color: white; font-size: 1.2rem;
  border: none; cursor: pointer; box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  opacity: 0; pointer-events: none; transform: translateY(16px);
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--purple-dark); transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp .9s ease forwards;
}
.fade-in-right {
  opacity: 0; transform: translateX(40px);
  animation: fadeInRight .9s ease .3s forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column; text-align: center; min-height: auto;
    padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px;
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { order: -1; }
  .about-img { height: 320px; }
  .about-img-tag { bottom: -12px; left: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: white; flex-direction: column; align-items: stretch;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
    gap: 4px;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; border-radius: 10px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .promos-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }
  .brands-grid { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px 20px; }
  .section-header { margin-bottom: 40px; }
}
