/* ═══════════════════════════════════════════
   FUNKY PRINTS — BRAND STYLES
   ═══════════════════════════════════════════ */

:root {
  --black: #000000;
  --white: #ffffff;
  --pink: #ff00ff;
  --pink-dim: rgba(255, 0, 255, 0.15);
  --pink-glow: 0 0 20px rgba(255, 0, 255, 0.4);
  --radius: 12px;
  --max-w: 1200px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

/* ─── Utils ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0 80px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pink {
  color: var(--pink);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all 0.25s ease;
  border: 2px solid var(--pink);
  white-space: nowrap;
}
.btn-primary:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: var(--pink-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: var(--pink-glow);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--pink);
  backdrop-filter: blur(2px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.nav-logo img{
  height:40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links button {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.nav-links button:hover {
  color: var(--pink);
  background: var(--pink-dim);
}

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.25s;
  border: 2px solid var(--pink);
}
.btn-whatsapp-nav:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: var(--pink-glow);
}

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

.nav-hamburger {
  display: none;
  padding: 4px;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  padding: 80px 24px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--pink-dim);
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.whatsapp-btn img, 
.hero-btns a img{
  height: 25px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Hero Visual Grid ─── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-grid {
  display: grid;
  grid-template-columns: 120px 120px;
  grid-template-rows: 130px 100px 100px;
  gap: 12px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  text-align: center;
  padding: 12px 8px;
  position: relative;
  overflow: hidden;
}
.visual-card:hover {
  border-color: var(--pink);
  box-shadow: var(--pink-glow);
  background: rgba(255, 0, 255, 0.06);
}

.vc-tall {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.vc-square {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.vc-wide {
  grid-row: 2 / 4;
  grid-column: 2 / 3;
}
.vc-small {
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}

/* ═══════════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════════ */

.catalog {
  background: rgba(255, 255, 255, 0.015);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.catalog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--pink);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.catalog-card:hover {
  box-shadow: var(--pink-glow), inset 0 0 30px rgba(255, 0, 255, 0.03);
}

.catalog-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-dim);
  margin: 0 auto 20px;
  color: var(--pink);
}

.catalog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.catalog-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.catalog-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.25s;
  border: 2px solid var(--pink);
}
.btn-catalog:hover {
  background: transparent;
  color: var(--pink);
  box-shadow: var(--pink-glow);
}

.btn-catalog-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: all 0.25s;
}
.btn-catalog-dl:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: var(--pink-glow);
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 44px 28px 36px;
  text-align: center;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--pink);
  box-shadow: var(--pink-glow), inset 0 0 30px rgba(255, 0, 255, 0.03);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */

.timeline-section {
  background: rgba(255, 255, 255, 0.015);
}

.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.timeline-step {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  position: relative;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

.tl-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-dim);
  border: 2px solid var(--pink);
  color: var(--pink);
  box-shadow: 0 0 16px rgba(255, 0, 255, 0.35);
  position: relative;
  z-index: 2;
}

.tl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--pink), rgba(255, 255, 255, 0.15));
  min-height: 40px;
  margin: 4px 0;
}

.tl-content {
  padding-top: 10px;
}

.tl-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  display: block;
}

.tl-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tl-content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--pink);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  color: var(--white);
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--pink);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════════
   Contact Us
   ═══════════════════════════════════════════ */
.contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 0.75rem;
  text-decoration: none;
  color: inherit;

  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;

  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item span {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;

  transition: color 0.3s ease;
}

/* Hover effects */
.contact-item:hover a {
  transform: translateY(-8px);
}

.contact-item:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(255, 73, 167, 0.6));
}

.contact-item:hover span {
  color: var(--pink);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  border-top: 2px solid var(--pink);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--pink);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  margin-top: 8px;
}

.footer-brand img{
  height:40px;
}

.footer .contact-item img{
  width: 40px;
  height: 40px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    order: -1;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 3px solid var(--pink);
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links button {
    padding: 14px 16px;
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }
  .nav-actions {
      gap: 6px;
    }
    .nav-hamburger {
      display: block;
    }
    .whatsapp-btn {
      padding: 8px 10px !important;
      min-width: unset !important;
      gap: 0 !important;
      font-size: 0 !important;
    }
    .whatsapp-btn img {
      height: 22px;
      margin: 0;
    }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .hero-stats {
    gap: 28px;
  }

  .visual-grid {
    grid-template-columns: 100px 100px;
    grid-template-rows: 110px 85px 85px;
    gap: 10px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 60px 0 50px;
  }

  .hero {
    padding: 50px 20px 40px;
  }
}

@media (max-width: 420px) {
  .visual-grid {
    grid-template-columns: 80px 80px;
    grid-template-rows: 90px 70px 70px;
    gap: 8px;
  }
  .visual-card {
    font-size: 0.65rem;
    gap: 6px;
    padding: 8px 4px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}