/* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* =========================
   RESET DASAR
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =========================
   SECTION PHOTO
========================= */
.photo-1 {
  padding: clamp(50px, 8vw, 90px) 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

/* =========================
   CARD
========================= */
.photo-card {
  max-width: 920px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

/* =========================
   IMAGE
========================= */
.photo-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   CONTENT
========================= */
.photo-content {
  padding: clamp(24px, 4vw, 36px);
}

/* =========================
   TEXT
========================= */
.photo-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.photo-content h3 {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 16px;
}

.photo-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 700px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #0F172A;
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
}

.footer-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1EA0FF;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-section a {
  display: block;
  color: #cfe8ff;
  margin: 6px 0;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 25px;
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom .brand {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-bottom strong {
  color: #fff;
}

.footer-bottom p {
  margin: 0;
}

/* =========================
   WHATSAPP ICON
========================= */
.wa-icon {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.wa-icon:hover {
  transform: scale(1.1);
}

.logo-wa {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(70px + 10vh);
  }
}