/* =============================================
   DONASIKU — styles.css
   Design Direction: Clean Blue Civic
   Fonts: Playfair Display (display) + DM Sans (body)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ─── CSS Variables ─── */
:root {
  --cream:      #F0F4FF;
  --warm-white: #F8FAFF;
  --charcoal:   #0F172A;
  --charcoal2:  #1E293B;
  --muted:      #64748B;
  --accent:     #2563EB;       /* primary blue */
  --accent-light: #DBEAFE;
  --teal:       #0EA5E9;       /* sky blue secondary */
  --teal-light: #E0F2FE;
  --border:     rgba(15,23,42,0.09);
  --shadow-sm:  0 2px 12px rgba(37,99,235,0.07);
  --shadow-md:  0 8px 32px rgba(37,99,235,0.10);
  --shadow-lg:  0 20px 60px rgba(37,99,235,0.13);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ─── Navbar ─── */
.navbar-custom {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background: rgba(255,253,249,0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.navbar-custom.scrolled .navbar-brand-name,
.navbar-custom.scrolled .nav-link-custom {
  color: var(--charcoal) !important;
}

.navbar-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.nav-link-custom {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85) !important;
  padding: 6px 16px !important;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-link-custom:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.12);
}

.nav-link-custom.active {
  color: #fff !important;
}

.nav-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
}

.navbar-custom.scrolled .nav-btn-outline {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.nav-btn-filled {
  background: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  color: #fff !important;
}

.nav-btn-filled:hover {
  background: #32605c !important;
  border-color: #fff !important;
  transform: translateY(-1px);
}

.navbar-toggler-custom {
  border: none;
  background: transparent;
  padding: 4px;
}

.navbar-toggler-custom span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(14,165,233,0.2) 0%, transparent 55%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0C1A3A 100%);
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.7s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s infinite;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero.jpeg') center/cover no-repeat;
    z-index: 1;
}

/* OVERLAY GELAP */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* NOISE (kalau ada efek tambahan) */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* CONTENT DI ATAS */
.hero-content {
    position: relative;
    z-index: 3;
}

/* TEXT BIAR KELIHATAN */
.hero-title {
    color: #fff;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  line-height: 1.8;
  margin: 0 auto 40px auto; 
  text-align: center; 
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(224,92,46,0.35);
}

.btn-hero-primary:hover {
  background: #32605c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,92,46,0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeSlideUp 0.7s 0.4s ease both;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-top: 4px;
  font-weight: 400;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-card-float {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  color: #fff;
  animation: float 4s ease-in-out infinite;
}

.hero-card-float + .hero-card-float {
  margin-top: 20px;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* ─── Section Commons ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}

/* ─── About Section ─── */
.about-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-image-wrap {
  position: relative;
}

.about-image-box {
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.15);
  position: relative;
}

.about-image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(37,99,235,0.4), transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(14,165,233,0.3), transparent 60%);
}

.about-image-box .about-icon {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.6);
}

.about-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-tag span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.about-image-box {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-box:hover .about-img {
    transform: scale(1.08);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 10.5L8 14L15.5 6.5' stroke='%232A7A6F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Features Section ─── */
.features-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.feature-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
}

.feature-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── How It Works ─── */
.how-section {
  padding: 100px 0;
  background: var(--cream);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--teal-light), var(--accent-light));
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.how-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  position: relative;
  transition: all var(--transition);
}

.how-step:hover .how-num {
  transform: scale(1.1);
}

.how-step h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.how-step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ─── Stats Section ─── */
.stats-section {
  padding: 80px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.18), transparent 70%);
}

.stat-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-num sup {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.stat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* ─── Testimonial / Trust Section ─── */
.trust-section {
  padding: 80px 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.trust-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: box-shadow var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
}

.trust-quote {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.trust-text {
  font-size: 0.92rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.trust-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

.trust-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.trust-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: var(--charcoal);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 70%);
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.22), transparent 70%);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(224,92,46,0.4);
  position: relative;
  z-index: 1;
}

.btn-cta:hover {
  background: #32605c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(224,92,46,0.5);
}

.cta-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* OVERLAY (gradient modern) */
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0) 70%
    );
    opacity: 0.8;
    transition: 0.4s ease;
}

/* CAPTION */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.gallery-card:hover img {
    transform: scale(1.12);
    filter: brightness(0.85);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* CARD HOVER LIFT */
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-card img {
        height: 200px;
    }
}


/* ─── Footer ─── */
.footer-custom {
  background: var(--charcoal2);
  padding: 60px 0 32px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-divider {
  border-color: rgba(255,255,255,0.07);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Animations ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Misc Utilities ─── */
.text-accent { color: var(--accent); }
.text-teal   { color: var(--teal); }
.bg-accent   { background: var(--accent); }
.bg-teal     { background: var(--teal); }

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .hero-stats { gap: 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid::before { display: none; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .cta-inner { padding: 48px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .about-tag { right: 0; }
  .cta-inner { padding: 40px 24px; }
}

/* ================= LOGIN PAGE ================= */

body {
    background: linear-gradient(135deg, var(--cream), var(--accent-light));
    min-height: 100vh;
}

/* Card Login */
.card {
    border-radius: var(--radius);
    background: var(--warm-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* Judul */
h1 {
    color: var(--charcoal);
}

/* Subtitle */
.text-gray-600 {
    color: var(--muted) !important;
}

/* Input */
.form-control-user {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.form-control-user:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--teal));
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Checkbox */
.custom-control-label {
    color: var(--muted);
}

/* Link */
a {
    text-decoration: none;
    transition: var(--transition);
}

a.text-primary {
    color: var(--accent) !important;
}

a.text-primary:hover {
    opacity: 0.8;
}

/* Logo */
.text-center img {
    filter: drop-shadow(0 4px 12px rgba(37,99,235,0.2));
}

/* Responsive spacing */
.my-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

@media (max-width: 576px) {
    .card {
        margin: 10px;
    }

    h1 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
    }
}

