/* ===========================
   Car Detailing AS - Main Styles
   =========================== */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #00d9ff;
  --secondary-color: #1a1a1a;
  --accent-color: #ff6b00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light: #f5f5f5;
  --success: #00ff88;
  --warning: #ffd700;
  --error: #ff4444;
  --shadow: rgba(0, 217, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   Custom Modal Dialog
   =========================== */

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.custom-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.custom-modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 50px rgba(0, 217, 255, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.custom-modal-overlay.show .custom-modal-content {
  transform: scale(1) translateY(0);
}

.custom-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
}

.custom-modal-header h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.custom-modal-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.custom-modal-close:hover {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

.custom-modal-body {
  padding: 1.5rem;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.custom-modal-body p {
  margin: 0;
}

.custom-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.custom-modal-footer button {
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
}

.custom-modal-footer .btn-secondary {
  background: transparent;
  border: 2px solid #666;
  color: #cccccc;
}

.custom-modal-footer .btn-secondary:hover {
  background: #666;
  color: var(--text-light);
  transform: translateY(-2px);
}

.custom-modal-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0099cc);
  color: var(--bg-dark);
  border: none;
}

.custom-modal-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

/* ===========================
   Navigation - Modern Design
   =========================== */

.navbar {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 217, 255, 0.1);
}

.navbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 20%, 
    var(--accent-color) 50%, 
    var(--primary-color) 80%, 
    transparent 100%);
  opacity: 0.6;
}

.navbar .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  transition: all 0.3s;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  height: 2.5rem;
  width: auto;
  filter: drop-shadow(0 0 8px var(--primary-color));
  animation: iconPulse 2s ease-in-out infinite;
  object-fit: contain;
}

@keyframes iconPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 8px var(--primary-color));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 15px var(--primary-color));
    transform: scale(1.05);
  }
}

.logo span {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
  padding-right: 2rem;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Ensure auth links have same styling */
.auth-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.auth-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
  transition: left 0.5s;
}

.auth-links a:hover::before {
  left: 100%;
}

.auth-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s;
  border-radius: 2px;
}

.auth-links a:hover {
  color: var(--primary-color);
  background: rgba(0, 217, 255, 0.05);
  transform: translateY(-2px);
}

.auth-links a:hover::after {
  width: 80%;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary-color);
  background: rgba(0, 217, 255, 0.05);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 80%;
}

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(0, 217, 255, 0.3);
}

.lang-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 217, 255, 0.3);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--primary-color), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  border-radius: 50%;
  opacity: 0.3;
}

.lang-btn:hover::before {
  width: 300px;
  height: 300px;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary-color), #00a8cc);
  color: var(--bg-dark);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.lang-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.lang-btn.active:hover {
  color: var(--bg-dark);
}

.mobile-menu-btn {
  display: none;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  transition: all 0.3s;
}

.mobile-menu-btn:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: rotate(90deg);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%),
    url('../background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero-logo {
  width: 300px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px var(--primary-color));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.hero h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0099cc);
  color: var(--bg-dark);
  box-shadow: 0 5px 20px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* ===========================
   Hero Carousel (Inside Hero Section)
   =========================== */

.hero-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 2rem;
  padding: 0 60px;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: var(--text-light);
  border-radius: 0 0 15px 15px;
}

.carousel-caption h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 217, 255, 0.9);
  border: none;
  color: var(--bg-dark);
  font-size: 2.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.carousel-btn:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.3);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
}

.carousel-loading {
  min-width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.carousel-empty {
  min-width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed rgba(0, 217, 255, 0.5);
  border-radius: 15px;
  text-align: center;
  padding: 2rem;
}

.carousel-empty h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.carousel-empty p {
  color: #999;
  font-size: 0.9rem;
}

/* ===========================
   Services Section
   =========================== */

.services-section {
  padding: 5rem 2rem;
  background: var(--bg-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), var(--primary-color), transparent);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.service-card.bronze {
  border-color: #CD7F32;
}

.service-card.silver {
  border-color: #C0C0C0;
}

.service-card.gold {
  border-color: #FFD700;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card.bronze .service-icon {
  color: #CD7F32;
}

.service-card.silver .service-icon {
  color: #C0C0C0;
}

.service-card.gold .service-icon {
  color: #FFD700;
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.service-list {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.service-list li {
  padding: 0.5rem 0;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===========================
   Contact Section
   =========================== */

.contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-card p {
  color: #cccccc;
  font-size: 1.1rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--accent-color);
}

/* ===========================
   Footer
   =========================== */

footer {
  background: #0a0a0a;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid var(--primary-color);
}

footer p {
  color: #cccccc;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    margin-right: 1rem;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 1.5px;
    padding: 0.5rem 0 0.5rem 1rem;
    gap: 0.5rem;
    white-space: nowrap;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 2px solid var(--primary-color);
  }

  .nav-links.active {
    display: flex;
  }

  .lang-switcher {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 200px;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel-container {
    padding: 0 40px;
  }

  .carousel-item img {
    height: 300px;
  }

  .carousel-loading,
  .carousel-empty {
    height: 300px;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 0.4rem 0 0.4rem 0.8rem;
    gap: 0.4rem;
  }

  .logo-icon {
    font-size: 1.3rem;
  }

  .mobile-menu-btn {
    margin-right: 0.8rem;
    padding: 0.4rem 0.6rem;
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-carousel-container {
    padding: 0 30px;
    margin: 2rem auto 1.5rem;
  }

  .carousel-item img {
    height: 250px;
  }

  .carousel-loading,
  .carousel-empty {
    height: 250px;
  }

  .carousel-caption h3 {
    font-size: 1rem;
  }

  .carousel-caption {
    padding: 1.5rem 1rem 1rem;
  }

  .carousel-btn {
    width: 33px;
    height: 33px;
    font-size: 1.5rem;
  }

  .carousel-dots {
    gap: 0.6rem;
    margin-top: 1rem;
  }
}

