/* ===== RESET & BASE ===== */
* {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: #CCF32F;
  color: #000;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d4d4d4;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #171717;
}

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

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,243,47,0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(204,243,47,0.1); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== STICKER / BADGE ===== */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(204,243,47,0.15);
  color: #404040;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f5f5f5;
  transition: box-shadow 0.3s ease;
}

.navbar.shadow {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #CCF32F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.navbar-brand-muted {
  color: #a3a3a3;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-link {
  font-size: 14px;
  color: #737373;
  transition: color 0.15s ease;
}

.navbar-link:hover {
  color: #171717;
}

.navbar-cta {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 9999px;
  transition: transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.navbar-cta:hover {
  transform: scale(1.05);
}

.navbar-toggle {
  display: block;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #171717;
  transition: background 0.15s ease;
}

.navbar-toggle:hover {
  background: #f5f5f5;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-mobile {
  display: none;
  padding: 0 24px 16px;
}

.navbar-mobile.open {
  display: block;
}

.navbar-mobile a {
  display: block;
  font-size: 14px;
  color: #737373;
  padding: 8px 0;
  transition: color 0.15s ease;
}

.navbar-mobile a:hover {
  color: #171717;
}

.navbar-mobile-cta {
  display: block;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 9999px;
  text-align: center;
  margin-top: 8px;
  transition: transform 0.15s ease;
}

.navbar-mobile-cta:hover {
  transform: scale(1.05);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-blob-left {
  position: absolute;
  top: 80px;
  left: -128px;
  width: 384px;
  height: 384px;
  background: #CCF32F;
  border-radius: 9999px;
  opacity: 0.1;
  filter: blur(64px);
  animation: float 6s ease-in-out infinite;
}

.hero-blob-right {
  position: absolute;
  bottom: 40px;
  right: -128px;
  width: 320px;
  height: 320px;
  background: #CCF32F;
  border-radius: 9999px;
  opacity: 0.1;
  filter: blur(64px);
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 96px 24px 128px;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.hero-text {
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .hero-text {
    margin-bottom: 0;
  }
}

.hero-text .sticker {
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

.hero-title-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
}

.hero-desc {
  font-size: 1.125rem;
  color: #737373;
  line-height: 1.625;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-desc-bold {
  color: #171717;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 1rem;
  transition: transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e5e5;
  color: #404040;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 1rem;
  background: transparent;
  transition: background 0.15s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #fafafa;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 600;
}

.hero-stat-label {
  font-size: 14px;
  color: #a3a3a3;
}

/* Hero Image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    justify-content: flex-end;
  }
}

.hero-image-container {
  position: relative;
}

.hero-image-frame {
  width: 288px;
  height: 288px;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 4px solid #CCF32F;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  animation: pulse-glow 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-image-frame {
    width: 384px;
    height: 384px;
  }
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  border-radius: 1rem;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card-dark {
  top: -16px;
  left: -32px;
  background: #000;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  animation-delay: 2s;
}

.hero-floating-card-light {
  bottom: -16px;
  right: -24px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.floating-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-icon-circle-accent {
  background: rgba(204,243,47,0.2);
}

.floating-icon-circle-lime {
  background: #CCF32F;
}

.floating-label {
  font-size: 12px;
  color: #a3a3a3;
}

.floating-value {
  font-size: 14px;
  font-weight: 600;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 80px 24px;
  margin-bottom: 80px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .sticker {
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: #737373;
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BIODATA ===== */
.biodata-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .biodata-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.biodata-photo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.biodata-photo-wrapper {
  position: relative;
}

.biodata-photo {
  width: 288px;
  height: 288px;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.biodata-photo {
  width: 288px;
  height: 288px;
  border-radius: 50%; /* Diubah dari 2.5rem menjadi 50% */
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.biodata-photo-dashed {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 288px;
  height: 288px;
  border-radius: 50%; /* Diubah dari 2.5rem menjadi 50% */
  border: 2px dashed #CCF32F;
  z-index: -1;
}
.biodata-motto {
  padding: 24px;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, #000, #171717);
  color: #fff;
  width: 100%;
  max-width: 320px;
}

.biodata-motto-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #a3a3a3;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.biodata-motto-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
}

.biodata-intro {
  font-size: 1.125rem;
  color: #737373;
  line-height: 1.625;
  margin-bottom: 8px;
}

.biodata-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biodata-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 1rem;
  background: #fafafa;
  transition: background 0.15s ease;
}

.biodata-info-item:hover {
  background: #f5f5f5;
}

.biodata-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(204,243,47,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.biodata-info-label {
  font-size: 12px;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.biodata-info-value {
  font-size: 1rem;
  font-weight: 500;
}

.biodata-section-label {
  font-size: 14px;
  font-weight: 700;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.biodata-skills {
  margin-top: 8px;
}

.skill-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(204,243,47,0.2);
  font-size: 14px;
  font-weight: 500;
  color: #404040;
  margin: 4px 4px 4px 0;
}

.biodata-organisasi {
  margin-top: 8px;
}

.org-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 0.75rem;
  background: rgba(204,243,47,0.1);
  margin-bottom: 8px;
}

.org-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #CCF32F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.org-name {
  font-size: 14px;
  font-weight: 600;
}

.org-year {
  font-size: 12px;
  color: #a3a3a3;
  margin-left: 8px;
}

/* ===== KARYA ===== */
.karya-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn-inactive {
  background: #f5f5f5;
  color: #525252;
}

.filter-btn-inactive:hover {
  background: #e5e5e5;
}

.filter-btn-active {
  background: #000;
  color: #fff;
}

.karya-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .karya-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .karya-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.karya-card {
  padding: 24px;
  border-radius: 2rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.karya-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.karya-card-image {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 20px;
}

.karya-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.karya-card:hover .karya-card-image img {
  transform: scale(1.05);
}

.karya-card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-accent {
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(204,243,47,0.2);
  font-size: 12px;
  font-weight: 700;
  color: #525252;
}

.tag-neutral {
  padding: 4px 12px;
  border-radius: 9999px;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
  color: #737373;
}

.karya-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.karya-card-desc {
  color: #737373;
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 16px;
}

.karya-card-tech {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #a3a3a3;
}

/* ===== PENDIDIKAN ===== */
.timeline {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.timeline-item-left .timeline-dot-col {
  display: none;
}

@media (min-width: 768px) {
  .timeline-item-left .timeline-dot-col {
    display: flex;
    width: 50%;
    justify-content: flex-end;
  }

  .timeline-item-right .timeline-dot-col {
    display: flex;
    width: 50%;
    justify-content: flex-start;
  }

  .timeline-item-left .timeline-card-col {
    width: 50%;
  }

  .timeline-item-right .timeline-card-col {
    width: 50%;
    order: -1;
  }
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.timeline-dot-accent {
  background: #CCF32F;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.timeline-dot-neutral {
  background: #e5e5e5;
}

.timeline-item:hover .timeline-dot-neutral {
  background: #CCF32F;
  color: #000 !important;
}

.timeline-card {
  padding: 24px;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  width: 100%;
}

.timeline-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border-color: #CCF32F;
}

.timeline-card-highlight {
  border: 2px solid #CCF32F;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.timeline-card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tag-now {
  padding: 4px 12px;
  border-radius: 9999px;
  background: #CCF32F;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.timeline-card-school {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.timeline-card-major {
  font-size: 14px;
  font-weight: 600;
  color: #CCF32F;
  margin-bottom: 8px;
}

.timeline-card-desc {
  font-size: 14px;
  color: #737373;
  line-height: 1.625;
}

.timeline-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge-neutral {
  font-size: 12px;
  padding: 4px 8px;
  background: #fafafa;
  border-radius: 6px;
  color: #525252;
}

/* Prestasi Card */
.prestasi-card {
  margin-top: 48px;
  padding: 32px;
  border-radius: 2.5rem;
  background: linear-gradient(to bottom right, #000, #171717);
  color: #fff;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .prestasi-card {
    padding: 40px;
  }
}

.prestasi-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prestasi-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .prestasi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.prestasi-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  transition: background 0.15s ease;
}

.prestasi-item:hover {
  background: rgba(255,255,255,0.1);
}

.prestasi-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #CCF32F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.prestasi-item-title {
  font-size: 14px;
  font-weight: 500;
}

.prestasi-item-year {
  font-size: 12px;
  color: #a3a3a3;
}

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid;
  gap: 32px;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .kontak-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.kontak-card {
  padding: 32px;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, #000, #171717);
  color: #fff;
  display: block;
  transition: all 0.3s ease;
}

.kontak-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: scale(1.02);
}

.kontak-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.15s ease;
}

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

.kontak-icon-email {
  background: #CCF32F;
}

.kontak-icon-wa {
  background: #25D366;
}

.kontak-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.kontak-card-desc {
  color: #a3a3a3;
  font-size: 14px;
  margin-bottom: 16px;
}

.kontak-card-value {
  font-size: 1.125rem;
  font-weight: 500;
  word-break: break-all;
}

.kontak-card-value-email {
  color: #CCF32F;
}

.kontak-card-value-wa {
  color: #25D366;
}

.kontak-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #a3a3a3;
  margin-top: 24px;
  transition: all 0.15s ease;
}

.kontak-card:hover .kontak-card-link-email {
  color: #CCF32F;
}

.kontak-card:hover .kontak-card-link-wa {
  color: #25D366;
}

.kontak-card-link-arrow {
  transition: transform 0.15s ease;
}

.kontak-card:hover .kontak-card-link-arrow {
  transform: translateX(4px);
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 672px;
  margin: 64px auto 0;
  padding: 32px;
  border-radius: 2.5rem;
  background: #fafafa;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 40px;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  color: #737373;
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #404040;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 0.75rem;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #CCF32F;
  box-shadow: 0 0 0 3px rgba(204,243,47,0.3);
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: #000;
  color: #fff;
  font-weight: 500;
  padding: 14px;
  border-radius: 0.75rem;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-submit:hover {
  transform: scale(1.02);
}

.form-toast {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border-radius: 0.75rem;
  background: rgba(204,243,47,0.2);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #404040;
}

.form-toast.show {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: #fff;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #CCF32F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.footer-brand-muted {
  color: #737373;
}

.footer-desc {
  color: #a3a3a3;
  font-size: 14px;
  line-height: 1.625;
}

.footer-label {
  font-size: 14px;
  font-weight: 700;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #a3a3a3;
  padding: 4px 0;
  transition: color 0.15s ease;
}

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

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

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.footer-social-icon:hover {
  background: #CCF32F;
  color: #000;
}

.footer-social-icon-wa:hover {
  background: #25D366;
  color: #fff;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-divider {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-social-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1f1f1f;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
    text-decoration: none;
}

.footer-copy {
  font-size: 14px;
  color: #737373;
}

.footer-copy-heart {
  color: #CCF32F;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  color: #fff;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}

.wa-float-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #ef4444;
  border: 2px solid #fff;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}


/* ===== SCROLL ANIMATION ===== */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Wrapper icon: lingkaran dengan border */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  text-decoration: none;
  transform: none !important;
  rotate: none !important;
}

.social-icon svg {
  transform: skew(0deg) !important;
  rotate: none !important;
  

  width: 18px !important;
  height: 18px !important;

  display: block !important;
  flex-shrink: 0;
  
  stroke: #a3a3a3;
  stroke-width: 1.5;
  fill: none;

  transition: stroke 0.3s ease, fill 0.3s ease;
}

.social-icon:hover svg {
  stroke: #ffffff;
}

.social-ig:hover svg {
  fill: #E1306C;
  stroke: #E1306C;
}

.social-yt:hover svg {
  fill: #FF0000;
  stroke: #FF0000;
}


.social-wa:hover svg {
  fill: #25D366;
  stroke: #25D366;
}

.glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.05);
  }
}