@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ff0000;
  --text-color: #333;
  --light-text-color: #000000;
  --card-background: rgba(255, 255, 255);
  --color-bar: linear-gradient(to right, #ff4e50, #c31432);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================
    AWAL STYLE NAVBAR
   ========================================== */

body {
  font-family: "Montserrat", sans-serif;
  background-image: url("../assets/banner/DST\ CONCEPT.jpg"); /* Desktop background */
  background-size: cover;
  background-position: center top 80px;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: var(--text-color);
  overflow-x: hidden;
  z-index: 999;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

/* Navbar */
.navbar {
  background-color: var(--card-background);
  padding: 15px 0;
  box-shadow: 0 2px 4px var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--text-color);
}

.navbar .logo img {
  height: 50px;
  margin-right: 10px;
}

.navbar .nav-links ul {
  display: flex;
}

.navbar .nav-links ul li {
  margin-left: 30px;
}

.navbar .nav-links ul li a {
  color: var(--light-text-color);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.navbar .nav-links ul li a:hover {
  color: var(--primary-color);
}

.navbar .nav-auth {
  display: flex;
  align-items: center;
}

.navbar .nav-auth .sign-in {
  margin-right: 20px;
  color: var(--light-text-color);
}

.navbar .nav-auth .get-demo {
  background-color: #eee;
  color: var(--text-color);
  padding: 8px 15px;
}

.navbar .nav-auth .get-demo:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.hamburger-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-color);
}

.nav-links a i {
  margin-right: 6px;
  color: #e60000;
}

.nav-links a {
  font-size: 20px !important;
}

/* ==========================================
    MOBILE STYLE
   ========================================== */
@media (max-width: 1024px) {
  .navbar .nav-links,
  .navbar .nav-auth {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .navbar .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--card-background);
    box-shadow: 0 4px 8px var(--shadow-medium);
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
  }

  .navbar .nav-links.active ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .navbar .nav-links.active ul li {
    margin: -5px 0;
  }

  .navbar .nav-links.active ul li a {
    font-size: 1.5rem;
    padding: 10px 0;
    display: block;
  }
}

/* Mobile background (max-width: 768px) */
@media (max-width: 768px) {
  body {
    background-image: url("../assets/banner/DST_20250707_113601_0000.jpg"); /* Mobile background */
    background-size: cover;
    background-position: center top 40px;
    background-repeat: no-repeat;
  }

  .nav-links a i {
    margin-right: 6px;
    color: #e60000;
  }

  .nav-links a {
    font-size: 18px !important;
    margin-bottom: 10px;
  }
}

/* ==========================================
    AKHIR STYLE NAVBAR
   ========================================== */

.recap-bar {
  position: fixed;
  top: 80px; /* di bawah navbar */
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(80deg, #ffffff, #ff000091);
  box-shadow: 0 2px 4px var(--shadow-light);
  height: 45px;
  overflow: hidden;
  z-index: 998; /* di bawah navbar yang z-index 999 */
}

.recap-label {
  background-color: var(--primary-color);
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-style: italic;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.recap-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 15px;
}

.recap-slider p {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  animation: slide-left 20s linear infinite;
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .recap-label {
    font-size: 0.85rem;
    padding: 0 15px;
  }

  .recap-slider p {
    font-size: 0.85rem;
  }
}

/* ==========================================
    AKHIR RECAP TEXT SLIDER STYLE
   ========================================== */

/* Container for Centering Content */
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

main {
  padding-top: 150px;
  background-color: transparent;
}

/* --- Hero Section --- */
.hero-section {
  display: flex;
  flex-direction: column; /* Stacks content on small screens */
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin-bottom: 40px; /* Space between content and image on mobile */
}

.hero-section h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #000;
}

.hero-section .highlight {
  color: #d40000; /* Mitsubishi red or similar accent */
}

.hero-section p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #d40000;
  color: #fff;
  border: 1px solid #d40000;
}

.btn-primary:hover {
  background-color: #a00000;
}

.btn-secondary {
  background-color: transparent;
  color: #d40000;
  border: 1px solid #d40000;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* --- Featured Cars Section --- */
.featured-cars-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.featured-cars-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #000;
}

.car-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.car-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.car-card:hover {
  transform: translateY(-5px);
}

.car-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.car-card h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #000;
}

.car-card p {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #555;
}

.btn-tertiary {
  background-color: #ff0000; /* Example color, adjust as needed */
  color: #fff;
  border: 1px solid #ff0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-tertiary:hover {
  background-color: #b30000;
}

.car-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.car-img,
.bg-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.bg-hover-img {
  z-index: 0;
  opacity: 0;
}

.car-img {
  z-index: 1;
}

/* Saat hover: gambar background muncul */
.car-card:hover .bg-hover-img {
  opacity: 1;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
  padding: 60px 20px;
  background-color: #f2f7fc; /* Light blue background */
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #000;
}

.features-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-item i {
  font-size: 3em;
  color: #d40000; /* Accent color */
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000;
}

.feature-item p {
  font-size: 1em;
  line-height: 1.5;
  color: #555;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.testimonials-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #000;
}

.testimonial-slider {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-card h4 {
  font-size: 1em;
  color: #000;
  margin: 0;
}

/* Adjust for larger screens */
@media (min-width: 768px) {
  .hero-section {
    flex-direction: row;
    text-align: left;
    padding: 80px 40px;
  }

  .hero-content {
    margin-right: 50px;
    margin-bottom: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-section h1 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: row;
    text-align: left;
    padding: 80px 40px;
  }

  .hero-content {
    margin-right: 50px;
    margin-bottom: 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons a {
    font-size: 1em;
  }

  .hero-section h1 {
    font-size: 1.5em;
  }

  .hero-section p {
    font-size: 1em;
  }

  .featured-cars-section h2 {
    font-size: 1.5em;
  }

  .featured-cars-section h3 {
    font-size: 1.5em;
  }

  .featured-cars-section p {
    font-size: 1em;
  }

  .why-choose-us-section h2 {
    font-size: 1.5em;
  }

  .why-choose-us-section h3 {
    font-size: 1.3em;
  }

  .testimonials-section h2 {
    font-size: 1.5em;
  }

  .testimonials-section p {
    font-size: 1em;
  }
}

/* ==========================================
    AWAL STYLE BANNER
   ========================================== */
/* --- Banner Slider Section --- */
.banner-slider-container {
  position: relative;
  width: 100%;
  height: calc(
    100vh - 125px
  ); /* Full viewport height minus navbar + recap-bar */
  margin-top: 125px; /* Push content below fixed navbar and recap-bar */
  overflow: hidden;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* Adjust margin-top for mobile */
@media (max-width: 768px) {
  .banner-slider-container {
    height: calc(
      100vh - 125px
    ); /* Adjust if mobile navbar/recap-bar height differs */
    margin-top: 125px; /* Match mobile's combined fixed element height */
  }

  .desktop-banner {
    display: none;
  }
  .mobile-banner {
    display: block;
  }
}

.banner-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex; /* Use flexbox for overlay positioning */
  align-items: center; /* Center overlay vertically */
  justify-content: center; /* Center overlay horizontally */
  text-align: center;
  color: #fff;
}

.banner-slide.active {
  opacity: 1;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire area */
  object-position: center;
}

/* Hide mobile banner by default for desktop */
.banner-img.mobile-banner {
  display: none;
}

/* Overlay for text content on banner */
.banner-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  box-sizing: border-box;
}

.banner-overlay h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-overlay p {
  font-size: 1.2em;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-overlay .btn {
  padding: 12px 30px;
  font-size: 1.1em;
}

/* Slider navigation buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Dots navigation */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #d40000; /* Mitsubishi Red for active dot */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .banner-overlay h2 {
    font-size: 2em;
  }
  .banner-overlay p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .banner-img.desktop-banner {
    display: none; /* Hide desktop banner on mobile */
  }
  .banner-img.mobile-banner {
    display: block; /* Show mobile banner on mobile */
  }

  .banner-overlay {
    padding: 20px;
    max-width: 90%;
  }

  .banner-overlay h2 {
    font-size: 1.1em;
  }

  .banner-overlay p {
    font-size: 0.9em;
  }

  .banner-overlay .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .slider-btn {
    padding: 10px;
    font-size: 1.2em;
    width: 40px;
    height: 40px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }
}

/* Adjust padding-top for main to account for the banner slider */
main {
  padding-top: 40px; /* Small top padding for general spacing from banner */
}

/* ==========================================
    AWAL FOOTER
   ========================================== */
/* --- Footer Section --- */
footer {
  background-color: #ffffff; /* Warna putih untuk background footer */
  color: #555; /* Warna teks utama yang lebih gelap agar terbaca di background putih */
  padding: 60px 20px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  border-top: 1px solid #eee; /* Tambahkan sedikit border atas untuk pemisah */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.footer-about .footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 25px;
  color: #666; /* Warna paragraf agar lebih gelap dari warna teks utama */
}

.footer-about .social-links {
  display: flex;
  justify-content: flex-start;
}

.footer-about .social-links a {
  color: #777; /* Warna ikon sosial yang sedikit abu-abu */
  font-size: 1.5em;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-about .social-links a:hover {
  color: var(--primary-color); /* Warna merah Mitsubishi untuk hover */
}

.footer-links h3,
.footer-contact h3,
.footer-map h3 {
  font-size: 1.4em;
  margin-bottom: 25px;
  color: #333; /* Warna judul yang lebih gelap agar kontras */
  position: relative;
  padding-bottom: 10px;
  text-align: left;
}

/* Underline effect for headings */
.footer-links h3::after,
.footer-contact h3::after,
.footer-map h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color); /* Tetap merah untuk accent */
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #666; /* Warna link yang lebih gelap */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #666; /* Warna teks kontak */
  text-align: left;
  justify-content: flex-start;
}

.footer-contact p i {
  margin-right: 10px;
  font-size: 1.1em;
  color: var(--primary-color); /* Tetap merah untuk ikon kontak */
  flex-shrink: 0;
  padding-top: 2px;
}

.footer-map iframe {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sesuaikan shadow untuk background terang */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ff0000; /* Warna border pemisah yang lebih terang */
  padding-top: 25px;
  margin-top: 25px;
  color: #000000; /* Warna teks copyright yang sedikit lebih terang */
  font-size: 0.9em;
}

.limapx {
  margin-top: -15px;
}

.cw {
  margin-top: -35px;
  font-weight: 600;
}

.area {
  margin-top: -35px;
  font-weight: 600;
}

/* Responsive adjustments for footer for screens up to 768px */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-map {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-about p {
    text-align: center;
  }

  .footer-about .social-links {
    justify-content: center;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-map h3 {
    text-align: center;
  }

  .footer-links h3::after,
  .footer-contact h3::after,
  .footer-map h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-links ul li {
    display: inline-block;
    margin: 0 10px 12px;
  }

  .footer-contact p {
    justify-content: center;
    text-align: center;
  }

  .limapx {
    margin-top: -15px;
  }

  .cw {
    margin-top: -40px;
    font-weight: 600;
  }

  .area {
    margin-top: -40px;
    font-weight: 600;
  }
}

/* Responsive adjustments for footer specifically for screens up to 480px */
@media (max-width: 480px) {
  footer {
    padding: 40px 15px 15px;
    font-size: 0.85em;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-about .footer-logo {
    height: 50px;
  }

  .footer-about p,
  .footer-links ul li a,
  .footer-contact p,
  .footer-bottom p {
    font-size: 0.9em;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-map h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
  }

  .footer-about .social-links a {
    font-size: 1.3em;
    color: red;
    margin: 0 8px;
  }

  .footer-contact p i {
    font-size: 1em;
  }

  .footer-links ul li {
    margin: 0 8px 10px;
  }

  .strong {
    margin-top: -15px;
  }

  .footer-bottom {
    padding-bottom: 10px;
  }

  .limapx {
    margin-top: -15px;
  }

  .cw {
    margin-top: -40px;
    font-weight: 600;
  }

  .area {
    margin-top: -40px;
    font-weight: 600;
  }
}

/* ==========================================
    AWAL GALERY
   ========================================== */
.gallery-carousel {
  padding: 40px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.gallery-carousel h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #000;
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  background-color: #ddd;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}

.caption {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.9);
}

.caption h3 {
  margin: 10px 0 5px;
}

.caption p {
  margin: 0;
  color: #333;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots .dot {
  height: 8px;
  width: 24px;
  margin: 5px 4px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.carousel-dots .dot.active {
  background-color: #ff0000;
  width: 28px;
}

.view-all-link {
  text-align: center;
  margin-top: 20px;
}

.view-all-link a {
  text-decoration: none;
  font-weight: bold;
  color: #e60000; /* warna merah khas Mitsubishi */
  border: 2px solid #e60000;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-all-link a:hover {
  background-color: #e60000;
  color: #fff;
}

/* Tablet */
@media (max-width: 768px) {
  .caption h3 {
    font-size: 1.2rem;
  }

  .caption p {
    font-size: 0.9rem;
  }

  .view-all-link a {
    font-size: 0.9rem;
  }

  .carousel-btn {
    font-size: 1.5rem;
    padding: 8px 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .caption h3 {
    font-size: 1rem;
  }

  .caption p {
    font-size: 0.8rem;
  }

  .view-all-link a {
    font-size: 0.8rem;
  }

  .carousel-btn {
    font-size: 1.2rem;
    padding: 6px 8px;
  }

  .gallery-carousel h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}

/* ==========================================
    FLOATING WHATSAPP
   ========================================== */

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: Arial, sans-serif;
}

.chat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff0000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.chat-bubble {
  background-color: #e60000;
  color: #fff;
  padding: 12px 15px;
  border-radius: 15px 15px 15px 0;
  max-width: 250px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.chat-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #fff;
  font-size: 10px;
}

span.farah {
  font-size: 12px;
}

.chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .whatsapp-chat {
    bottom: 15px;
    right: 15px;
  }

  .chat-bubble {
    max-width: 220px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .chat-avatar {
    width: 35px;
    height: 35px;
  }

  .chat-icon {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 480px) {
  .chat-bubble {
    max-width: 180px;
    font-size: 13px;
    padding: 8px 10px;
  }

  .chat-close {
    pointer-events: auto;
    display: block;
  }

  .chat-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-close {
    font-size: 25px;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 999;
  }

  .chat-avatar {
    width: 30px;
    height: 30px;
  }

  .chat-icon {
    width: 70px;
    height: 70px;
  }

  span.farah {
    font-size: 11px;
  }
}
