  /* Reset i podstawa */
:root {
  --primary: #ff9a3c;  /* Jasny pomarańcz */
  --primary-dark: #e07e2e;  /* Ciemniejszy pomarańcz */
  --primary-light: #ffb366;  /* Jaśniejszy pomarańcz */
  --dark: #121417;
  --dark-light: #1f222a;
  --gray: #e0e0e0;
  --gray-dark: #bbb;
}

    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }
    body {
      background: var(--dark);
      color: var(--gray);
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 0;
      overflow-x: hidden;
    }
    a {
      color: var(--primary);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    a:hover {
      color: #ffd966;
    }
    header {
      width: 100%;
      max-width: 1400px;
      padding: 30px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      z-index: 1000;
      background: rgba(18, 20, 23, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--primary);
      animation: fadeInDown 0.8s both;
    }
    header h1 {
      font-weight: 900;
      font-size: 2.5rem;
      color: var(--primary);
      letter-spacing: 1px;
      text-shadow: 0 2px 5px rgba(249, 211, 66, 0.3);
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }
    nav ul li a {
      font-weight: 600;
      font-size: 1.1rem;
      padding: 8px 15px;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    nav ul li a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }
    nav ul li a:hover::before {
      width: 100%;
    }
    nav ul li a:hover {
      color: var(--primary);
    }
    main {
      max-width: 1400px;
      width: 100%;
      margin-top: 100px;
    }
    
    /* Hero Banner */
    .hero-banner {
      width: 100%;
      height: 80vh;
      min-height: 600px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                  url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      overflow: hidden;
    }
    .hero-banner::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: 0;
      width: 100%;
      height: 100px;
      background: var(--dark);
      transform: skewY(-3deg);
      z-index: 1;
    }
    .hero-content {
      max-width: 800px;
      animation: fadeInUp 1s both 0.3s;
    }
    .hero-content h2 {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
      line-height: 1.2;
    }
    .hero-content p {
      font-size: 1.5rem;
      color: white;
      margin-bottom: 30px;
    }
    .cta-button {
      display: inline-block;
      background: var(--primary);
      color: var(--dark);
      padding: 18px 45px;
      font-weight: 700;
      font-size: 1.2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(249, 211, 66, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      animation: pulse 2s infinite 1.5s;
    }
    .cta-button:hover {
      background: #ffd966;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(249, 211, 66, 0.6);
    }
    
    /* Sekcja Dlaczego my */
    .about-us {
      background: var(--dark);
      padding: 100px 40px;
      text-align: center;
      position: relative;
    }
    .about-us h2 {
      color: var(--primary);
      margin-bottom: 60px;
      font-size: 3rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }
    .about-us h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-card {
      background: var(--dark-light);
      border-radius: 15px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(249, 211, 66, 0.2);
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--primary);
    }
    .about-icon {
      font-size: 60px;
      color: var(--primary);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    .about-card:hover .about-icon {
      transform: scale(1.1) rotate(5deg);
    }
    .about-card h3 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.8rem;
      font-weight: 700;
    }
    .about-card p {
      font-size: 1.1rem;
      color: var(--gray-dark);
    }
    
    /* Counter Section */
    .stats-section {
      background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
      padding: 80px 20px;
      text-align: center;
    }
    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }
    .stat-item {
      padding: 30px;
    }
    .stat-number {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 10px;
      line-height: 1;
    }
    .stat-text {
      font-size: 1.2rem;
      color: white;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    /* Usługi i Pakiety */
    .services-section {
      padding: 100px 40px;
      background: var(--dark);
    }
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-title h2 {
      color: var(--primary);
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    .section-title p {
      color: var(--gray-dark);
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .service-card {
      background: var(--dark-light);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      user-select: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(249,211,66,0.1) 0%, rgba(249,211,66,0) 100%);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .service-card:hover::before {
      opacity: 1;
    }
    .service-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 40px rgba(249, 211, 66, 0.3);
    }
    .service-icon {
      font-size: 60px;
      color: var(--primary);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    .service-card:hover .service-icon {
      transform: rotate(10deg) scale(1.1);
    }
    .service-title {
      font-weight: 700;
      font-size: 1.5rem;
      color: white;
      margin-bottom: 15px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .service-card:hover .service-title {
      color: var(--primary);
    }
    .service-desc {
      font-size: 1.1rem;
      color: var(--gray-dark);
      text-align: center;
      margin-bottom: 20px;
    }
    .service-price {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      margin-top: auto;
    }
    .service-time {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--gray-dark);
      margin-top: 10px;
    }
    
/* CSS */
/* Before/After Section - Universal Carousel */
.ba-section {
  padding: 80px 15px;
  background: var(--dark-light);
  position: relative;
  overflow: hidden;
}

.ba-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ba-title {
  text-align: center;
  margin-bottom: 50px;
}

.ba-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.ba-title p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.ba-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ba-carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.ba-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ba-item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ba-item:hover {
  transform: translateY(-5px);
}

.ba-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ba-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}

.ba-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 25px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ba-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.ba-carousel-prev,
.ba-carousel-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 154, 60, 0.2);
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ba-carousel-prev:hover,
.ba-carousel-next:hover {
  background: var(--primary);
  color: white;
}

.ba-carousel-dots {
  display: flex;
  gap: 8px;
}

.ba-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ba-carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Touch improvements */
.ba-carousel-track {
  touch-action: pan-y;
}

/* Image Modal Styles */
.ba-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
}

.ba-modal.active {
  opacity: 1;
  visibility: visible;
}

.ba-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  background: var(--dark-light);
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ba-modal.active .ba-modal-content {
  transform: scale(1);
}

.ba-modal-image {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  margin: 0 auto;
}

.ba-modal-details {
  padding: 25px;
  text-align: center;
  background: var(--dark);
}

.ba-modal-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ba-modal-description {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ba-modal-close {
  padding: 12px 30px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 154, 60, 0.3);
}

.ba-modal-close:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 60, 0.4);
}

/* Animation for modal items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ba-modal-image {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.ba-modal-title {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.ba-modal-description {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.ba-modal-close {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .ba-section {
    padding: 60px 10px;
  }
  
  .ba-title h2 {
    font-size: 2rem;
  }
  
  .ba-title p {
    font-size: 1rem;
  }
  
  .ba-item {
    height: 220px;
  }
  
  .ba-label {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .ba-carousel-prev,
  .ba-carousel-next {
    width: 40px;
    height: 40px;
  }
  
  .ba-modal-content {
    max-width: 95%;
  }
  
  .ba-modal-details {
    padding: 15px;
  }
  
  .ba-modal-title {
    font-size: 1.3rem;
  }
  
  .ba-modal-description {
    font-size: 1rem;
  }
  
  .ba-modal-close {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .ba-item {
    height: 350px;
  }
  
  .ba-grid {
    gap: 20px;
  }
}
    
    /* Opinie */
    .testimonials {
      padding: 100px 20px;
      background: var(--dark);
    }
    .testimonials-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: var(--dark-light);
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      margin: 20px;
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(249, 211, 66, 0.1);
      font-family: serif;
      line-height: 1;
    }
    .testimonial-text {
      font-size: 1.1rem;
      color: var(--gray);
      margin-bottom: 20px;
      font-style: italic;
      position: relative;
      z-index: 1;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--primary);
    }
    .author-info h4 {
      color: white;
      margin-bottom: 5px;
    }
    .author-info p {
      color: var(--gray-dark);
      font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
      padding: 100px 20px;
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                  url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
      text-align: center;
    }
    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .cta-container h2 {
      color: white;
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .cta-container p {
      color: var(--gray);
      font-size: 1.2rem;
      margin-bottom: 40px;
    }
    
    /* Kontakt */
    .contact {
      padding: 100px 20px;
      background: var(--dark-light);
    }
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .contact-info h3 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    .contact-icon {
      font-size: 24px;
      color: var(--primary);
      margin-top: 5px;
    }
    .contact-text h4 {
      color: white;
      margin-bottom: 5px;
    }
    .contact-text p, .contact-text a {
      color: var(--gray-dark);
    }
    .contact-form {
      background: var(--dark);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .contact-form h3 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      color: white;
      margin-bottom: 8px;
      font-weight: 600;
    }
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border-radius: 8px;
      border: none;
      background: var(--dark-light);
      color: white;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    .form-control:focus {
      outline: none;
      box-shadow: 0 0 0 2px var(--primary);
    }
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    .submit-btn {
      background: var(--primary);
      color: var(--dark);
      padding: 15px 30px;
      font-weight: 700;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .submit-btn:hover {
      background: #ffd966;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(249, 211, 66, 0.4);
    }
    
    /* Stopka */
    footer {
      background: var(--dark);
      padding: 50px 20px 20px;
      text-align: center;
      color: var(--gray-dark);
      font-size: 0.9rem;
      border-top: 1px solid var(--dark-light);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo {
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 20px;
      display: inline-block;
    }
    .footer-about p {
      margin-bottom: 20px;
    }
    .social-links {
      display: flex;
      gap: 15px;
      justify-content: center;
    }
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--dark-light);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .social-link:hover {
      background: var(--primary);
      color: var(--dark);
      transform: translateY(-3px);
    }
    .footer-links h4 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.2rem;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--gray-dark);
      transition: all 0.3s ease;
    }
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    .copyright {
      padding-top: 20px;
      border-top: 1px solid var(--dark-light);
    }
    
    /* Animacje */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(249, 211, 66, 0.4);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(249, 211, 66, 0.6);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(249, 211, 66, 0.4);
      }
    }
    .animate-delay-1 {
      animation-delay: 0.5s;
    }
    .animate-delay-2 {
      animation-delay: 0.8s;
    }
    .animate-delay-3 {
      animation-delay: 1.1s;
    }
    
    /* Responsywność */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        padding: 20px;
        position: static;
      }
      header h1 {
        margin-bottom: 20px;
      }
      nav ul {
        flex-wrap: wrap;
        justify-content: center;
      }
      .hero-content h2 {
        font-size: 2.5rem;
      }
      .hero-content p {
        font-size: 1.2rem;
      }
      .section-title h2 {
        font-size: 2.2rem;
      }
    }

    /* Sekcja O Nas */
.about-section {
  padding: 4rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff9a3c;
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
  color: #ddd;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: #d36701;
}

.about-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.about-list li {
  margin-bottom: 0.8rem;
  position: relative;
}

.about-list li::before {
  content: "•";
  color: #ff9a3c;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 20px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  transition: opacity 0.3s ease;
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonial-card.active {
  opacity: 1;
  height: auto;
}

.testimonial-content {
  background: var(--dark-light);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(249, 211, 66, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info h4 {
  color: white;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

/* Navigation */
.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.carousel-button {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 154, 60, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-button:hover {
  background-color: var(--primary);
}

.carousel-button:hover svg {
  fill: var(--dark);
}

.carousel-button svg {
  transition: fill 0.3s ease;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-content {
    padding: 30px;
  }
  
  .carousel-nav {
    gap: 10px;
  }
  
  .carousel-button {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .testimonial-content {
    padding: 25px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
}

