/* ═══════════════════════════════════════════════════════════════
   XOXO Prints Muzi — Main Stylesheet
   Brand: Leaflets-n-Letterheads (XOXO Prints Muzi Pvt. Ltd.)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --red:       #E91E8C;
  --red-dark:  #C2157A;
  --green:     #25D366;
  --green-dark:#128C7E;
  --dark:      #2D3178;
  --dark2:     #232660;
  --text:      #333333;
  --text-light:#666666;
  --bg-light:  #f4f6f8;
  --white:     #ffffff;
  --border:    #e0e0e0;
  --hero-bg:   #fef0f9;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --radius:    10px;
  --nav-h:     72px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

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

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary   { background: var(--red);   color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-whatsapp  { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-dark      { background: var(--dark);  color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-1px); }
.btn-sm  { padding: 9px 18px; font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }

/* ── Section Headings ───────────────────────────────────────── */
.section-heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 10px auto 0;
}
.section-heading.left { text-align: left; }
.section-heading.left::after { margin-left: 0; }


/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.logo-link { display: flex; align-items: center; }
.logo-img  { height: 52px; width: auto; display: block; object-fit: contain; }

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 10px 18px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-cta { margin-top: 16px; justify-content: center; }


/* ══════════════════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════════════════ */
.hero-section {
  margin-top: var(--nav-h);
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-swiper { width: 100%; }

.swiper-slide {
  background: linear-gradient(135deg, #eaf1fb 0%, #dce8f8 100%);
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 480px;
}

.slide-text { flex: 1; max-width: 55%; }

.slide-heading {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.slide-heading span { color: var(--red); }

.slide-subheading {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.slide-desc {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 28px;
}

.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-image-wrap {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
}
.slide-img { max-height: 360px; width: auto; object-fit: contain; border-radius: var(--radius); }
.slide-img-placeholder {
  width: 300px; height: 280px;
  background: rgba(204,0,0,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--red);
}

/* Swiper Controls */
/* Swiper controls — hidden (single slide) */
.swiper-button-prev,
.swiper-button-next { display: none !important; }
.swiper-pagination   { display: none !important; }


/* ══════════════════════════════════════════════════════════════
   SERVICES + WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.services-section {
  padding: 70px 0;
  background: var(--white);
}

.services-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Service Cards */
.services-col { display: flex; flex-direction: column; gap: 20px; }

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border);
}
.service-card-header i {
  font-size: 1.8rem;
  color: var(--red);
  width: 44px;
  text-align: center;
}
.service-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.service-subtitle { font-size: 0.8rem; color: var(--text-light); }

.service-features {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.service-features li i { color: var(--red); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }

/* Why Choose Cards */
.why-col { padding-left: 8px; display: flex; flex-direction: column; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 20px;
  flex: 1;
}

.why-card {
  text-align: center;
  padding: 24px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon-char { font-size: 1.4rem; font-weight: 800; color: var(--red); line-height: 1; }

.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #fff0f0, #ffe0e0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.why-icon i { font-size: 1.4rem; color: var(--red); }
.why-title  { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.why-subtitle { font-size: 0.78rem; color: var(--text-light); margin-top: 3px; }


/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing-section { padding: 20px 0; background: var(--white); }
.pricing-banner-img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }

.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  min-width: 220px;
  max-width: 260px;
  flex: 1;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.pricing-product {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-subtitle { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.pricing-price  {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.pricing-qty { font-size: 0.88rem; color: var(--text-light); margin-bottom: 6px; }
.pricing-spec {
  display: inline-block;
  background: var(--bg-light);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
  font-style: italic;
}


/* ══════════════════════════════════════════════════════════════
   NEED A DESIGN?
══════════════════════════════════════════════════════════════ */
.design-section {
  padding: 70px 0;
  background: var(--white);
}

.design-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.design-text { flex: 1; }
.design-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.design-text p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.7;
}

.design-image-wrap { flex: 1; text-align: center; }
.design-img { max-height: 320px; border-radius: var(--radius); margin: 0 auto; object-fit: cover; }
.design-img-placeholder {
  height: 280px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--text-light);
}


/* ══════════════════════════════════════════════════════════════
   OUR PROCESS
══════════════════════════════════════════════════════════════ */
.process-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.process-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  position: relative;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--border);
}

.step-circle {
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  position: relative;
  box-shadow: 0 4px 12px rgba(204,0,0,0.25);
}
.step-circle i { font-size: 1.3rem; color: var(--white); }
.step-number {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--dark);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}

.step-title   { font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 4px; }
.step-subtitle { font-size: 0.78rem; color: var(--text-light); }


/* ══════════════════════════════════════════════════════════════
   OUR WORK GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 70px 0;
  background: var(--white);
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-caption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--bg-light);
}
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  padding: 40px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
}


/* ══════════════════════════════════════════════════════════════
   CTA BAR
══════════════════════════════════════════════════════════════ */
.cta-bar {
  background: var(--dark);
  padding: 36px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-heading {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  flex: 1;
}

.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* Footer Brand */
.footer-logo-img { height: 48px; width: auto; object-fit: contain; }
.footer-company-full {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  line-height: 1.5;
}
.footer-company-full small { opacity: 0.75; }

/* Footer Contact */
.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.footer-info-row i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-info-row:hover { color: var(--white); }

/* Footer Social */
.social-label { font-size: 0.85rem; margin-bottom: 14px; color: rgba(255,255,255,0.7); }
.social-icons  { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.social-icons a:hover { background: var(--red); transform: scale(1.1); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}


/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background 0.2s, transform 0.2s;
}
.wa-float:hover { background: var(--green-dark); transform: scale(1.08); }


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

/* Tablets (≤900px) */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .slide-inner {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .slide-text { max-width: 100%; }
  .slide-image-wrap { max-width: 100%; }
  .slide-btns { justify-content: center; }

  .services-why-grid { grid-template-columns: 1fr; }
  .why-col { padding-left: 0; }
  .section-heading.left { text-align: center; }
  .section-heading.left::after { margin: 10px auto 0; }

  .design-inner { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns  { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }

  .process-grid { flex-direction: column; align-items: center; }
  .process-step::after { display: none; }

  .slide-heading { font-size: 1.5rem; }

  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 100%; width: 100%; }
}
