/* =========================================
   Vla - Luxury Personal Shopping
   Static HTML clone
   ========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  background-color: #000000;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* Accent rose color used by Vla */
.accent {
  color: #f7c7c7;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.btn-contact {
  background: #ffffff;
  color: #1a1a1a;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-contact:hover {
  background: #f7c7c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 199, 199, 0.25);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(247, 199, 199, 0.06) 0%, rgba(247, 199, 199, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
}

.brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(96px, 14vw, 200px);
  color: #f7c7c7;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 4px 30px rgba(247, 199, 199, 0.25);
  animation: fadeUp 1.1s ease both;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 4.2vw, 56px);
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 24px 0 28px;
  line-height: 1.2;
  animation: fadeUp 1.2s 0.15s ease both;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 48px;
  animation: fadeUp 1.2s 0.3s ease both;
}

.btn-discover {
  display: inline-block;
  background: #4a3030;
  color: #f7c7c7;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  padding: 16px 44px;
  border-radius: 999px;
  border: 1px solid rgba(247, 199, 199, 0.2);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 1.2s 0.45s ease both;
}

.btn-discover:hover {
  background: #f7c7c7;
  color: #2a1818;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247, 199, 199, 0.2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  padding: 120px 0;
  background: #000000;
  position: relative;
}

.section-alt {
  background: #0a0a0a;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.5px;
  margin: 0 0 18px;
  line-height: 1.1;
}

.divider {
  display: inline-block;
  width: 70px;
  height: 1px;
  background: rgba(247, 199, 199, 0.6);
  margin-bottom: 28px;
}

.section-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin: 0;
}

/* =========================================
   ABOUT - feature grid
   ========================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(247, 199, 199, 0.03);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid rgba(247, 199, 199, 0.35);
  background: rgba(247, 199, 199, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7c7c7;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover .feature-icon {
  border-color: rgba(247, 199, 199, 0.7);
  transform: scale(1.06);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
  color: #ffffff;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 199, 199, 0.3);
  background: rgba(247, 199, 199, 0.03);
}

.service-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(247, 199, 199, 0.08);
  border: 1px solid rgba(247, 199, 199, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7c7c7;
  transition: background-color 0.35s ease;
}

.service-card:hover .service-icon {
  background: rgba(247, 199, 199, 0.18);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 10px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.7;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0 0 36px;
  max-width: 440px;
  line-height: 1.7;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 199, 199, 0.06);
  border: 1px solid rgba(247, 199, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7c7c7;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-list li > div {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  letter-spacing: 0.4px;
}

.contact-list a {
  color: #ffffff;
  font-size: 15px;
  transition: color 0.25s ease;
}

.contact-list a:hover {
  color: #f7c7c7;
}

.contact-list span {
  color: #ffffff;
  font-size: 15px;
}

/* === AREA GAMBAR 1:1 (pengganti form) === */
    .contact-visual {
      flex: 1;
      max-width: 480px;
    }

    .square-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
      display: block;
    }
/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

/* =========================================
   REVEAL ON SCROLL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section {
    padding: 80px 0;
  }
  .section-head {
    margin-bottom: 56px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  .btn-contact {
    padding: 10px 20px;
    font-size: 11px;
  }
  .logo img {
    height: 38px;
  }
  .service-card {
    padding: 24px;
    gap: 16px;
    flex-direction: column;
  }
  .hero-content {
    padding-top: 120px;
  }
}