/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* ==========================================================
   🌐 SOCIAL ICONS (PERFECT CIRCLE - CONSISTENT ICON SIZE)
========================================================== */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

/* Tombol dasar */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; /* 🔹 Sedikit disesuaikan agar semua ikon muat sempurna */
  height: 42px;
  border: 1px solid #000;
  border-radius: 50%; /* ✅ Lingkaran sempurna */
  color: #2d2d2d;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  aspect-ratio: 1 / 1;
  overflow: hidden; /* ✅ Mencegah gambar keluar dari batas */
}

/* Hover efek */
.social-btn:hover {
  background: #6d6d6d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Ikon gambar */
.social-btn img {
  width: 20px; /* ✅ Ukuran seragam seperti Fiverr */
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover: ikon membesar & jadi putih */
.social-btn:hover img {
  transform: scale(1.15);
  filter: brightness(0) invert(1);
}

/* Outline warna tetap hitam */
.instagram,
.fiverr,
.behance {
  border-color: #686868;
}

.instagram:hover,
.fiverr:hover,
.behance:hover {
  background: #000000;
}

/* Responsif agar tetap rapi di HP */
@media (max-width: 600px) {
  .social-icons {
    gap: 0.8rem;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }

  .social-btn img {
    width: 18px;
    height: 18px;
  }
}



/* ========== HERO SECTION ========== */
.hero {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  object-position: center;
}

.profile {
  position: relative;
  margin-top: -70px;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: px solid #fff;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.intro {
  max-width: 700px;
  margin: 1rem auto;
  padding: 0 1rem;
}

.intro p:first-child {
  font-weight: 600;
}

.intro h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.intro h1 span {
  color: #a71a1a;
}

.intro .desc {
  margin: 1rem 0;
  text-align: justify;
  font-size: 1rem;
}

/* ==========================================================
   🧭 BUTTON GROUP (agar sejajar & responsif)
========================================================== */
.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ==========================================================
   ⚫ CONTACT ME BUTTON (warna hitam elegan + ikon pesawat)
========================================================== */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 34px;
  border: none;
  border-radius: 10px;
  background: #313131;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
}

.btn-contact:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-contact i {
  color: #fff; /* memastikan ikon tetap putih */
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-contact:hover i {
  transform: translateX(3px);
}

/* ==========================================================
   💛 SUPPORT BUTTON (warna oranye muda, lembut)
========================================================== */
.btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 34px;
  border: none;
  border-radius: 10px;
  background: #a71a1a;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
}

.btn-support:hover {
  background: #ff1e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-support i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-support:hover i {
  transform: scale(1.2);
}

/* ==========================================================
   🟧 VISIT BUTTON (khusus bagian komik)
========================================================== */
.btn-visit {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #a71a1a;
  border-radius: 10px;
  color: #a71a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  min-width: 120px;
}

.btn-visit:hover {
  background: #a71a1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255,102,0,0.25);
}

.btn-visit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ==========================================================
   📱 RESPONSIVE BUTTON (semua tombol mobile-friendly)
========================================================== */
@media (max-width: 600px) {
  .btn-contact,
  .btn-support,
  .btn-visit {
    width: 100%;
    padding: 14px 0;
    font-size: 0.9rem;
  }
}






/* ========== ILLUSTRATION SECTION (IMAGE LEFT, TEXT RIGHT) ========== */
.illustration-section {
  padding: 6rem 1rem;
  margin-top: 4rem;
  text-align: left;
  padding-bottom: 5rem;
}

.illustration-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem); /* ✅ fleksibel */
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
}

.illustration-section p.section-desc {
  font-size: clamp(0.9rem, 1.8vw, 1rem); /* ✅ fleksibel */
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-align: center;
}

/* Grid tiap card */
.illustration-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;                  /* Jarak card */
}

/* Card wrapper */
.illustration-card {
  width: 100%;
  max-width: 1100px;
  background: transparent;
  transition: all 0.8s ease;
  opacity: 0;
  transform: translateY(40px);
}

.illustration-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Layout: gambar kiri, teks kanan */
.illustration-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-direction: row;
}

/* Bagian teks di kanan */
.illustration-text {
  width: 45%;
  text-align: left;
}

.illustration-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); /* ✅ fleksibel */
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
}

.illustration-text h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #a71a1a;
  margin-top: 0.4rem;
  border-radius: 3px;
}

.illustration-text p {
  font-size: clamp(0.9rem, 1.8vw, 1rem); /* ✅ fleksibel */
  color: #555;
  line-height: 1.7;
  margin-top: 0.8rem;
}

/* Gambar di kiri */
.illustration-content img {
  width: 50%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.illustration-content img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Variasi arah zigzag (bisa dipakai kalau ingin selang-seling) */
.illustration-card.right .illustration-content {
  flex-direction: row-reverse;
}

/* Responsive untuk layar kecil */
@media (max-width: 900px) {
  .illustration-content {
    flex-direction: column;
    text-align: left;
    gap: 1.5rem;
  }

  .illustration-content img,
  .illustration-text {
    width: 100%;
  }

  .illustration-text h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* ✅ fleksibel juga di mobile */
  }
}



/* ==========================================================
   🌟 CLIENT REVIEWS — Clean, Modern, Professional
========================================================== */

.reviews-section {
  padding: 4rem 1rem;
  background: #862727;
  text-align: center;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.reviews-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

/* Slider container */
.reviews-slider {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
}

/* Track (horizontal scroll) */
.review-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

/* Each review item */
.review-item {
  flex: 0 0 100%;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #ff660015;
  padding-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* Image (testimonial screenshot / photo) */
.review-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: transform 0.35s ease;
}

.review-item:hover img {
  transform: scale(1.03);
}

/* Review text */
.review-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  padding: 1.2rem 1.5rem 0;
  line-height: 1.55rem;
  letter-spacing: 0.2px;
  text-align: left;
}

/* Soft gradient fade on left & right */
.reviews-slider::before,
.reviews-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .reviews-section {
    padding: 3.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .reviews-section h2 {
    font-size: 1.8rem;
  }

  .review-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .reviews-section h2 {
    font-size: 1.5rem;
  }

  .reviews-slider::before,
  .reviews-slider::after {
    width: 35px;
  }

  .review-item p {
    font-size: 0.9rem;
    padding: 1rem;
  }
}





/* ========== MY KOMIK SECTION (CENTERED TITLE & TEXT, ORANGE THEME) ========== */
.comic-section {
  padding: 6rem 1rem;
  margin-top: 0%;
  text-align: center;
  background: #252525; /* 🔸 Warna oranye konsisten */
}

.comic-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff; /* 🔸 Teks putih */
  margin-bottom: 0.8rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.comic-section p {
  font-size: 1rem;
  color: #ffffff; /* 🔸 Teks putih */
  margin-bottom: 2.5rem;
  text-align: center;
}

.comic-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* ========== CARD KOMIK INTERAKTIF ========== */
.comic-card {
  position: relative;
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 320px;
   background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comic-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.comic-card:hover {
  transform: translateY(-5px);
}

/* Overlay gradasi hitam lembut di bawah */
.comic-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0,0,0,0.2));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Saat card di klik, overlay muncul */
.comic-card.active .comic-body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Teks & tombol di bawah, rapi */
.comic-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.comic-body p {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 1rem;
  line-height: 1.4;
  max-width: 90%;
}

/* Tombol visit */
.comic-body .btn-outline {
  border: 2px solid #ff4848;
  color: #ff4848;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 22px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.comic-body .btn-outline:hover {
  background: #ff4848;
  color: #fff;
}

/* Animasi gambar saat overlay muncul */
.comic-card.active img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Badge "Collaboration" di atas card */
.comic-card.collaboration {
  position: relative;
  overflow: hidden;
}

.collab-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #a71a1a;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
}

/* Efek saat hover card */
.comic-card.collaboration:hover .collab-badge {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}




/* ========== FOOTER (FINAL RESPONSIVE & CONSISTENT STYLE) ========== */
footer {
  background: #ffffff;
  padding: 4rem 1.5rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid #e0e0e0;
  text-align: left;
}

.footer-container {
  display: grid;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  text-align: left;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #c01f1f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a71a1a;
}

/* ========== SOCIAL ICONS ========== */
.socials {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #555;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Pastikan semua icon image (jika pakai <img>) ukurannya sama */
.socials a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

/* Hover effects per platform */
.socials a:hover {
  transform: translateY(-3px);
  color: #fff;
}

.socials a.instagram:hover { background: #c72c5d; }
.socials a.webtoon:hover { background: #00b255; }
.socials a.behance:hover { background: #0d4ecf; }
.socials a.fiverr:hover { background: #1DBF73; }

/* ========== COPYRIGHT TEXT ========== */
footer p:last-child {
  text-align: left;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #d4d4d4;
  padding-top: 1.5rem;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  footer {
    padding: 2.5rem 1rem;
    margin-top: 4rem;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }

  .socials {
    justify-content: flex-start;
  }

  .socials a {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  footer p:last-child {
    font-size: 0.85rem;
    margin-top: 2rem;
  }
}


/* ========== MOBILE ADJUSTMENTS ========== */
@media (max-width: 767px) {

  /* ===== HERO SECTION ===== */
  .hero-bg {
    height: 30vh;
    border-radius: 0 0 14px 14px;
  }

  .profile {
    margin-top: -50px;
  }

  .profile-img {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }

  .intro {
    max-width: 90%;
    padding: 0 1rem;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .intro .desc {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icons .icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  /* ===== BUTTON ===== */
  .btn-outline {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 0;
  }

/* ===== ILLUSTRATION SECTION ===== */
.illustration-section {
  padding: 4rem 1rem;
  margin-top: 3rem;
}

/* Judul besar section */
.illustration-section h2 {
  font-size: 0.6rem;
  text-align: center;
}

/* Deskripsi section */
.illustration-section p.section-desc {
  font-size: 0.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Tata letak tiap card */
.illustration-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: left;
}

/* Gambar */
.illustration-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

/* Bagian teks */
.illustration-text {
  width: 100%;
  text-align: left; /* Rata kiri sesuai permintaan */
}

/* Judul di atas gambar */
.illustration-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Deskripsi di bawah gambar */
.illustration-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-top: 0.5rem;
}


/* ======== MOBILE INTERACTIVE TEXT ANIMATION (ON IMAGE) ======== */
@media (max-width: 900px) {

  /* Struktur dasar */
  .illustration-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }

  /* Pastikan gambar tetap tampil penuh */
  .illustration-content img {
    width: 100%;
    display: block;
    border-radius: 12px;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1; /* Gambar di bawah teks */
  }

  /* Teks overlay di atas gambar */
  .illustration-text {
    position: absolute;
    inset: 0; /* menutupi seluruh area gambar */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
    border-radius: 12px;
    z-index: 2; /* Pastikan teks di atas gambar */
    pointer-events: none; /* Supaya klik tetap mengenai gambar */
  }

  /* Saat disentuh (atau hover di PC), teks muncul */
  .illustration-card:active .illustration-text,
  .illustration-card:hover .illustration-text {
    opacity: 1;
    transform: translateY(0);
  }

  /* Judul */
  .illustration-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
  }

  /* Deskripsi */
  .illustration-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #f0f0f0;
  }

  /* Efek redup gambar saat teks muncul */
  .illustration-card:hover img,
  .illustration-card:active img {
    filter: brightness(0.6);
  }
}




  /* ===== COMIC SECTION ===== */
  .comic-section {
    padding: 4rem 1rem;
  }

  .comic-section h2 {
    font-size: 1.6rem;
  }

  .comic-section p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .comic-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .comic-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  /* Badge "Collaboration" di atas card */
.comic-card.collaboration {
  position: relative;
  overflow: hidden;
}

.collab-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #ff6600;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
}

/* Efek saat hover card */
.comic-card.collaboration:hover .collab-badge {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


  .comic-body {
    padding: 1rem;
  }

  .comic-body h3 {
    font-size: 1.2rem;
  }

  .comic-body p {
    font-size: 0.9rem;
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 3rem 1rem 1.5rem;
    margin-top: 4rem;
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-col p,
  .footer-col ul li {
    font-size: 0.9rem;
  }

  .socials {
    justify-content: center;
  }

  .socials a {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  footer p:last-child {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1.5rem;
  }
}