/* ------------------- */
/* --- Color Palette & Global Styles --- */
/* ------------------- */
:root {
  --electric-blue: #007bff;
  --cyan-gradient-start: #c4e8ff;
  --cyan-gradient-end: #f5fbff;
  --dark-navy: #1c1f2e;
  --soft-gray: #f8f9fa;
  --whatsapp-green: #25d266;
  --white: #ffffff;
  --text-dark: #1c1f2e;
  --text-light: #f8f9fa;

  /* NEW HERO COLORS */
  --teal-dark: #006064; /* Warna hijau/teal gelap utama */
  --highlight-yellow: #ffc107; /* Warna kuning highlight */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--electric-blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* ------------------- */
/* --- Header & Navbar (PERBAIKAN FINAL) --- */
/* ------------------- */
header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}

.navbar {
  /* Default: space-between untuk Desktop/Layar Besar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  gap: 20px; /* Jarak default antar elemen */
}

.logo {
  text-decoration: none;
  margin-right: 0;
  display: flex;
  align-items: center;
  z-index: 21;
}

.logo img {
  height: 75px;
  width: auto;
}

.nav-links {
  list-style: none;
  background-color: var(--white);
  padding: 10px;
  margin: 0;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 10px;
  z-index: 21;
  margin-right: 260px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-navy);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #367588;
  color: var(--white);
}

/* Penyesuaian: Navbar Logo di kiri dan Menu di kanan, di dalam container. */
/* Tidak perlu penyesuaian khusus di min-width, karena justify-content: space-between dan container max-width sudah bekerja */

/* ------------------- */
/* --- Hero Section --- */
/* ------------------- */
.hero,
.hero-text,
.action-hero-btn {
  display: none;
}

.hero-new-design {
  background-image: url("../asset/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: var(--teal-dark);
  padding-top: 140px; /* Default Desktop Padding */
  padding-bottom: 80px;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content-new {
  flex: 1;
  max-width: 55%;
  z-index: 10;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tagline i {
  color: var(--highlight-yellow);
}

.hero-content-new h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
}

.highlight {
  color: var(--highlight-yellow);
  font-style: italic;
}

.hero-content-new p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.btn-contact-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--highlight-yellow);
  color: var(--dark-navy);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-contact-new:hover {
  background-color: #ffd740;
  transform: translateY(-2px);
}

/* --- VISUALS (KANAN) --- */
.hero-visuals {
  flex: 1;
  max-width: 450px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- POP-UP DI GAMBAR --- */
.image-popup {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 350px;
}

.popup-icon-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: yellow;
  padding: 6px 15px;
  border-radius: 50px;
  color: var(--dark-navy);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-left: -10px;
}

.popup-icon-bubble i {
  color: var(--dark-navy);
  font-size: 1rem;
}

.popup-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 15px;
  flex-wrap: nowrap;
}

.popup-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-grow: 1;
}

.popup-text strong {
  display: none;
}

.popup-text h3 {
  margin: 5px 0 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.popup-thumbnail {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.popup-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learn-more {
  font-size: 0.9rem;
  color: yellow;
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
}
/* ------------------- */
/* --- Hero Section END --- */
/* ------------------- */

/* ------------------- */
/* --- Pricing Section --- */
/* ------------------- */
.pricing-section {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  background-color: var(--soft-gray);
  overflow: hidden;
}

.pricing-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d2c4a;
  margin-bottom: 50px;
}

.pricing-section h2 {
  display: inline-block;
  padding: 12px 28px;
  margin: 20px;
  background-color: var(--electric-blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
  margin-bottom: 20px;
  margin-left: 110px;
}
.card-icon img {
  width: 10vw;
  height: 20vh;
  margin-left: -90px;
  margin-top: 10px;
}
.card-icon-ac img {
  height: 30vh;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d2c4a;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 25px;
  display: none;
}

.pricing-card .price .old-price {
  text-decoration: line-through;
  color: #888;
  font-weight: normal;
  margin-right: 10px;
  font-size: 1.25rem;
}

.pricing-card .price .new-price {
  color: #e74c3c;
}

.pricing-card ul {
  list-style-type: none;
}

.pricing-card ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.pricing-card ul li::before {
  content: "✓";
  color: #3498db;
  font-weight: bold;
  margin-right: 10px;
}

.promo-badge {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 100px;
  height: 100px;
  z-index: 2;
}

.promo-badge img {
  width: 100%;
}

.pricing-card.best-seller {
  border: 3px solid #ffc107;
  transform: scale(1.05);
}

.bestseller-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
}

.bestseller-ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 8px 0;
  background-color: #ffc107;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  left: -55px;
  top: 35px;
  transform: rotate(-45deg);
}

.card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 20px 0;
}

.pricing-card .action-book-now-btn {
  display: inline-block;
  padding: 5px 30px;
  margin-top: 40px;
  background-color: var(--whatsapp-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.action-book-now-btn:hover {
  background-color: #1eaf53;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Price Slider */
.pricing-toggle-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.pricing-toggle-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 25px;
  border: 2px solid var(--electric-blue);
  border-radius: 50px;
  background-color: var(--white);
  color: var(--electric-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle-btn:hover {
  background-color: #f0f7ff;
}

.pricing-toggle-btn.active {
  background-color: var(--electric-blue);
  color: var(--white);
}

.pricing-slider-wrapper {
  display: flex;
  width: 200%;
  transition: transform 0.5s ease-in-out;
}

.pricing-content {
  width: 50%;
  flex-shrink: 0;
  padding: 0 15px;
  box-sizing: border-box;
}

.pricing-slider-wrapper.show-sidoarjo {
  transform: translateX(-50%);
}

/* ------------------- */
/* --- Projects Section --- */
/* ------------------- */
#projects {
  background-color: var(--soft-gray);
  padding-bottom: 80px;
  overflow: hidden;
}

#projects .container {
  max-width: 100%;
}

.scrolling-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scrolling-row {
  display: flex;
  gap: 40px;
  padding: 40px;
  flex-wrap: nowrap;
}

.scrolling-row[data-animated="true"]:hover {
  animation-play-state: paused;
}

.scrolling-row[data-animated="true"] {
  --card-width: 400px;
  --animation-duration: 18s;
  animation: scroll var(--animation-duration) linear infinite;
}

.scrolling-row[data-direction="right"] {
  animation-direction: reverse;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 10px));
  }
}

.project-card {
  flex-shrink: 0;
  width: var(--card-width);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .project-info {
  padding: 20px;
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.project-card p {
  color: #777;
  font-size: 0.9rem;
}

/* ------------------- */
/* --- Testimonials Section --- */
/* ------------------- */
#testimonials {
  background-color: var(--dark-navy);
  color: var(--text-light);
  overflow: hidden;
}

#testimonials h2 {
  color: var(--text-light);
}

.testimonial-slider {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  background-color: #2a3042;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 calc((100% / 3) - (20px * 2 / 3));
  margin-right: 20px;
}

.testimonials-grid .testimonial-card:last-child {
  margin-right: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  background-color: var(--soft-gray);
}

.testimonial-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.testimonial-header p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-style: italic;
  border-left: 3px solid var(--electric-blue);
  padding-left: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  flex-grow: 1;
}

.testimonial-dots {
  text-align: center;
  padding-top: 25px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--electric-blue);
}

/* ------------------- */
/* --- Floating Action Button --- */
/* ------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-fab img {
  width: 32px;
  height: 32px;
}

/* ------------------- */
/* --- Footer Revised (Final Positioning) --- */
/* ------------------- */

.site-footer {
  background-color: var(--dark-navy);
  color: #b0b8c4;
  padding-top: 80px;
  padding-bottom: 30px;
  font-size: 0.95rem;
  margin-top: auto;
}

.footer-container {
  display: grid;
  /* (KE KANAN): Kolom pertama diperlebar jadi 2fr */
  grid-template-columns: 2fr 1fr 2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Kolom 1: Logo & Deskripsi --- */
.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 25px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #a0aab8;
  text-align: justify;
  max-width: 90%;
}

/* --- Kolom 2, 3, 4: Quick Link, Contact, Follow --- */

/* (KE BAWAH): Menambah jarak atas agar posisi judul turun (55px) */
.footer-col:nth-child(n + 2) {
  padding-top: 55px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

/* Garis kuning kecil di bawah judul */
.footer-col h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--highlight-yellow);
  margin-top: 8px;
  border-radius: 2px;
}

/* Styling List Menu */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #b0b8c4;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--highlight-yellow);
  transform: translateX(5px);
}
.footer-col3 {
  display: none;
}

/* Email Styling */
.email-link {
  color: var(--white) !important;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background-color: var(--highlight-yellow);
  color: var(--dark-navy);
  transform: translateY(-3px);
  border-color: var(--highlight-yellow);
}

/* Copyright Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #6c757d;
}

/* ------------------- */
/* --- Responsive Design (PERBAIKAN FINAL) --- */
/* ------------------- */

@media (max-width: 1440px) {
  .card-icon-ac img {
    width: 50%;
    height: 25vh;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  /* Tablet Horizontal / Layar Besar */
  .navbar {
    /* Menggunakan space-between untuk memisahkan Logo dan Menu di dalam container */
    justify-content: space-between;
    gap: 20px;
  }
  .nav-links {
    padding: 10px 20px;
  }

  .card-icon-ac img {
    width: 50%;
    height: 20vh;
    text-align: center;
  }
  .pricing-container .pricing-card .action-book-now-btn {
    text-align: center;
  }

  /* Footer Tablet Adjustment */
  .footer-container {
    gap: 40px;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 0 30px;
  }

  .footer-col:nth-child(n + 2) {
    padding-top: 30px;
  }
}

@media (max-width: 992px) {
  /* Tablet Vertikal (termasuk iPad portrait) */
  .hero-new-design {
    /* Padding Top dinaikkan untuk memberi jarak antara Navbar (yang kini menjadi kolom) dan Tagline */
    padding-top: 200px; /* Ditingkatkan dari 160px/180px */
  }
  .navbar {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-left: 0;
  }
  .logo {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .nav-links {
    margin: 0 auto;
    padding: 10px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content-new {
    max-width: 90%;
    margin: 0 auto 30px auto;
  }

  .hero-content-new h1,
  .hero-content-new p,
  .tagline {
    text-align: center;
  }

  .btn-contact-new {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .hero-visuals {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .main-image-container {
    max-width: 90%;
    width: 550px;
    padding-bottom: 110%;
    display: block;
    margin: 0 auto;
  }

  .image-popup {
    width: 95%;
    max-width: 500px;
  }
  /* --- HERO SECTION END --- */

  .pricing-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .pricing-card.best-seller {
    transform: scale(1);
  }
  .pricing-container .pricing-card .action-book-now-btn {
    margin-right: -20px;
  }
  .card-icon img,
  .card-icon-ac img {
    width: 50%;
    height: 20vh;
    text-align: center;
  }
  .testimonial-slider {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Mobile / Smartphone */
  h2 {
    font-size: 2rem;
  }

  .hero-new-design {
    /* Padding Top dinaikkan sedikit lagi untuk menjaga jarak */
    padding-top: 220px; /* Ditingkatkan dari 180px */
  }

  .navbar {
    gap: 5px;
  }

  .nav-links {
    margin: 0 auto;
  }
  .nav-links a {
    padding: 6px 7px;
    font-size: 0.9rem;
  }
  .tagline {
    font-size: 0.75rem;
  }

  .hero-content-new h1 {
    font-size: 2.2rem;
  }

  .hero-content-new p {
    font-size: 0.95rem;
  }

  .btn-contact-new {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
  }

  .popup-icon-bubble span {
    font-size: 0.75rem;
  }

  /* Projects */
  .scrolling-row[data-animated="true"] {
    --card-width: 290px;
    --animation-duration: 15s;
  }

  .scrolling-row {
    gap: 30px;
    padding: 20px 0;
  }

  .project-card h3 {
    font-size: 1.1rem;
  }

  /* Pricing Slider Buttons */
  .pricing-toggle-btn {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  .pricing-content {
    padding: 0 5px;
  }

  /* Testimonials */
  #testimonials {
    padding: 60px 0;
  }

  .testimonial-slider {
    padding: 0 24px;
    box-sizing: border-box;
    max-width: 100%;
  }

  .testimonials-grid {
    display: flex;
    overflow: visible;
    padding: 0;
    gap: 25px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: unset;
    margin: 0;
    padding: 25px;
  }

  .testimonial-header img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .testimonial-header h3 {
    font-size: 0.98rem;
    text-align: left;
  }
  .testimonial-header p {
    font-size: 0.8rem;
    text-align: left;
  }
  .testimonial-card blockquote {
    font-size: 0.85rem;
    text-align: left;
  }
  .testimonial-dots {
    padding-top: 30px;
  }

  /* WhatsApp */
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-fab img {
    width: 28px;
    height: 28px;
  }

  /* Footer Mobile Reset */
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-col:nth-child(n + 2) {
    padding-top: 0;
  }

  .footer-col p {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px auto;
  }

  .footer-col h4::after {
    margin: 8px auto 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-col a:hover {
    transform: none;
  }
}
