:root {
  --black: #14345c;
  --dark: #0d5e9b;
  --white: #ffffff;
  --muted: rgba(20, 52, 92, 0.65);
  --green: #e31d2a;
  --green-dark: #b91523;
  --wa-green: #25d366;
  --wa-green-dark: #1ebe57;
  --card: #5bb0e5;
  --shadow: 0 20px 50px rgba(13, 94, 155, 0.25);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 9999;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--green);
  animation: spin 1s linear infinite;
}

.loader-text {
  font-size: 0.9rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(91, 176, 229, 0.25);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--black);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
}

.logo-text {
  font-size: 0.95rem;
  letter-spacing: 0.08rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: rgba(20, 52, 92, 0.8);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(20, 52, 92, 0.7), rgba(13, 94, 155, 0.85)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13, 94, 155, 0.75),
    rgba(91, 176, 229, 0.35)
  );
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 140px 20px 120px;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(20, 52, 92, 0.2);
  color: var(--black);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--wa-green-dark);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 16px 34px;
  font-size: 1rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.meta-value {
  display: block;
  font-weight: 600;
  color: var(--white);
}

.hero-card {
  background: rgba(13, 94, 155, 0.78);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.hero-card-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.chip,
.chip-outline {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
}

.chip {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  margin-right: 6px;
}

.chip-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 90px 0;
}

.section-head {
  margin-bottom: 36px;
  text-align: center;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  margin-bottom: 10px;
}

.section-head p {
  color: rgba(20, 52, 92, 0.7);
}

.section-head.light {
  color: var(--white);
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.75);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.lead {
  font-size: 1.05rem;
  color: rgba(20, 52, 92, 0.8);
  margin-bottom: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 18px;
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-card {
  background: rgba(91, 176, 229, 0.12);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li::before {
  content: "-";
  margin-right: 10px;
  color: var(--green-dark);
  font-weight: 700;
}

.card-grid,
.adv-grid,
.price-grid,
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card,
.adv-card,
.price-card,
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 45px rgba(13, 94, 155, 0.12);
  border: 1px solid rgba(20, 52, 92, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.adv-card:hover,
.price-card:hover,
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 94, 155, 0.2);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(91, 176, 229, 0.16);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.icon svg {
  width: 26px;
  height: 26px;
}

.adv-card {
  background: var(--black);
  color: var(--white);
}

.adv-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.gallery {
  background: rgba(91, 176, 229, 0.12);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px 48px;
  box-shadow: var(--shadow);
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  background: rgba(91, 176, 229, 0.12);
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
}

.slide-media {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.slide-body {
  padding: 16px;
}

.slide-media.outdoor {
  background-image: url("assets/print%20dokumen.jpg");
}

.slide-media.print {
  background-image: url("assets/undangan%20pernikahan.jpg");
}

.slide-media.outdoor-two {
  background-image: url("assets/buku%20yasin.jpg");
}

.slide-media.print-two {
  background-image: url("assets/banner1.jpg");
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--green-dark);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.pricing {
  background: rgba(91, 176, 229, 0.08);
}

.price-card {
  text-align: left;
}

.price-card.highlight {
  background: var(--black);
  color: var(--white);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 6px 0;
}

.price-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.parallax {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(20, 52, 92, 0.85), rgba(13, 94, 155, 0.65)),
    url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  background-attachment: fixed;
}

.testi-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.rating {
  color: var(--green);
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(91, 176, 229, 0.1);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(20, 52, 92, 0.08);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-item p {
  margin-top: 10px;
  color: rgba(20, 52, 92, 0.7);
}

.cta {
  background: var(--black);
  color: var(--white);
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(20, 52, 92, 0.95);
  padding: 40px;
  border-radius: var(--radius);
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 60;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.35);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-card {
    order: 2;
  }

  .hero-content {
    padding-top: 120px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 110px 20px 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .slider {
    padding: 20px;
  }

  .slider-btn {
    display: none;
  }

  .cta-box {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .logo-text {
    font-size: 0.8rem;
  }
}


