/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.header {
  background-color: #ffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  max-height: 80px;
  backdrop-filter: blur(1px);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  width: 120px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d3b611;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #d3b611;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgb(234, 225, 97), rgb(194, 182, 7));
  padding: 150px 0 100px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-greeting {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: #101010;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, #2d2d2d, #090909);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 239, 243, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(255, 255, 255);
}

/* Why Choose Us Section */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3e5e6 100%);
}

.section-title {
  color: #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgb(234, 225, 97), rgb(194, 182, 7));
}

.feature-icon::before {
  content: "";
  position: absolute;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.quality-icon::before {
  content: "★";
}

.experience-icon::before {
  content: "⚡";
}

.fast-icon::before {
  content: "⏱";
}

.affordable-icon::before {
  content: "$";
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.feature-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3e5e6 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 600;
}

.service-button {
  background: linear-gradient(135deg, #515151, #000000);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.service-button:hover {
  background: linear-gradient(135deg, #000000, #5b5b5b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn {
  background: linear-gradient(135deg, #515151, #000000);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.btn:hover {
  background: linear-gradient(135deg, #000000, #5b5b5b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn span {
  font-size: 18px;
}

.jumlah {
  margin: 15px;
}

label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}

input[type="number"] {
  width: 80px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px;
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  display: none;
  min-width: 100%;
  padding: 3rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-text {
  font-size: 1.25rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.author-title {
  color: #6c757d;
  font-size: 0.95rem;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
}

.prev-btn,
.next-btn {
  background: rgba(211, 224, 18, 0.9);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgb(227, 209, 17);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  background: white;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #dfdb1d;
}

/* Location Section */
.location {
  padding: 100px 0;
  background-color: #ffffff;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f3f4;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.info-text {
  color: #6c757d;
  line-height: 1.6;
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.google-map {
  width: 100%;
  height: 400px;
}

.google-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Social Media Section */
.social-media {
  padding: 80px 0;
  background: white;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid #f1f3f4;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-link.instagram:hover {
  border-color: #e4405f;
  color: #e4405f;
}

.social-link.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
}

.social-link.tiktok:hover {
  border-color: #000;
  color: #000;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

/* CSS-only social media icons */
.instagram-icon::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  top: 2px;
  left: 2px;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 7px;
  left: 7px;
}

.facebook-icon::before {
  content: "f";
  position: absolute;
  font-weight: bold;
  font-size: 20px;
  top: -2px;
  left: 8px;
}

.tiktok-icon::before {
  content: "♪";
  position: absolute;
  font-weight: bold;
  font-size: 18px;
  top: 1px;
  left: 4px;
}

/* Footer */
.footer {
  background-color: #d2c217;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}

.footer-text {
  font-size: 0.95rem;
}

/* Mobile Styles */
@media screen and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services {
    padding: 80px 0;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonial-slide {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .social-media {
    padding: 60px 0;
  }

  .why-choose {
    padding: 80px 0;
  }

  .location {
    padding: 80px 0;
  }

  .location-content {
    gap: 2rem;
  }

  .google-map {
    height: 300px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .social-link {
    width: 200px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .location-info {
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-controls {
    display: none;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
