/* ===== DESIGN TOKENS ===== */
:root {
  --yellow-50: #fff9e6;
  --yellow-100: #fff3cc;
  --yellow-200: #ffe799;
  --yellow-400: #ffd633;
  --yellow-500: #FFC107;
  --yellow-600: #e6ac00;
  --yellow-700: #cc9900;
  --black: #0a0a0a;
  --dark: #0d0d0d;
  --dark-card: #161616;
  --dark-light: #1e1e1e;
  --dark-border: rgba(255, 255, 255, .08);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, .65);
  --text-muted: rgba(255, 255, 255, .4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 24px rgba(0, 0, 0, .35);
  --shadow-glow: 0 0 40px rgba(255, 193, 7, .1);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --container: 1200px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--dark-border);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — crops the flyer to show only the V Care brand mark */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  display: block;
  border-radius: 6px;
  transition: height var(--transition);
}


/* Navbar Logo */
.logo-crop {
  width: 280px;
  height: 80px;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
}

.logo-crop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.navbar.scrolled .logo-crop {
  width: 200px;
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--yellow-500);
  background: rgba(255, 193, 7, .06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-400);
  box-shadow: 0 4px 20px rgba(255, 193, 7, .3);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--yellow-500);
  color: var(--yellow-500);
  background: rgba(255, 193, 7, .06);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: .8rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: .95rem;
}

.btn-full {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.shape-1 {
  width: 700px;
  height: 700px;
  background: rgba(255, 193, 7, .07);
  top: -250px;
  right: -200px;
  animation: glowDrift 8s ease-in-out infinite alternate;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 193, 7, .04);
  bottom: -150px;
  left: -100px;
  animation: glowDrift 10s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 193, 7, .03);
  top: 45%;
  left: 35%;
  animation: glowDrift 12s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(25px, -15px) scale(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--yellow-500);
  background: rgba(255, 193, 7, .08);
  border: 1px solid rgba(255, 193, 7, .2);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow-500);
}

.stat span {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(255, 193, 7, .12);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .5), 0 0 60px rgba(255, 193, 7, .05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow-500);
  background: rgba(255, 193, 7, .1);
  margin-bottom: 12px;
}

.tag-light {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: .95rem;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.category-card:hover {
  border-color: rgba(255, 193, 7, .2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.category-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: var(--yellow-500);
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.category-card p {
  font-size: .82rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--yellow-500);
  transition: color var(--transition);
}

.card-link:hover {
  color: var(--yellow-200);
}

/* ===== GALLERY ===== */
.gallery {
  background: linear-gradient(180deg, var(--dark), var(--dark-light), var(--dark));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--dark-border);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, transparent 100%);
}

.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

/* Brand Ticker */
.brand-ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.brand-item {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all var(--transition);
}

.brand-item:hover {
  border-color: rgba(255, 193, 7, .25);
  color: var(--yellow-500);
  background: rgba(255, 193, 7, .06);
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--dark) 0%, rgba(255, 193, 7, .02) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: .95rem;
}

.about-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.highlight svg {
  color: var(--yellow-500);
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 193, 7, .12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
}

/* ===== BULK ===== */
.bulk {
  background: linear-gradient(135deg, #1a1500 0%, var(--black) 40%, #1a1500 100%);
}

.bulk-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.bulk-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.bulk-content p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 24px;
}

.bulk-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bulk-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: #fff;
}

.bulk-list svg {
  color: var(--yellow-500);
  flex-shrink: 0;
}

.bulk-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bstat {
  background: rgba(255, 193, 7, .06);
  border: 1px solid rgba(255, 193, 7, .12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.bstat:hover {
  background: rgba(255, 193, 7, .12);
  transform: translateY(-2px);
}

.bstat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow-500);
  margin-bottom: 4px;
}

.bstat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(255, 193, 7, .2);
  transform: translateY(-3px);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--yellow-500);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .87rem;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, var(--dark), rgba(255, 193, 7, .02));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(255, 193, 7, .15);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 193, 7, .1);
  color: var(--yellow-500);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-card p {
  font-size: .85rem;
}

.contact-card a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--yellow-500);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--dark-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-logo-crop {
  width: 180px;
  height: 56px;
}

.footer-brand p {
  font-size: .85rem;
}

.footer-links h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--yellow-500);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links li {
  font-size: .85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--yellow-500);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-grid,
  .bulk-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .bulk-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, .6);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat strong {
    font-size: 1.2rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 24px 16px;
  }

  .category-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bulk-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}