:root {
  --primary-color: #e63946;
  --dark-color: #0f2027;
  --light-color: #f1faee;
  --accent-color: #a8dadc;
  --text-color: #ffffff;
  --secondary-text: #9ca3af;
  --dark-color-secondary: #0f2027;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

.product-card,
footer,
header {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

a,
button,
.btn {
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}


/* Header Styles */
header {
  background: transparent;
  color: white;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(15, 32, 39, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  position: fixed;
}


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

.logo img {
  max-width: 120px;
  height: auto;
  transition: all 0.3s ease;
}

.logo .logo-light {
  display: none;
}

/* Light theme logo */


/* When scrolled */
header.scrolled .logo .logo-dark {
  filter: brightness(0) invert(1);
}


/* Navigation */
nav {
  display: none;
}

nav a {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 5px;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 10px;
}

nav a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

nav a:hover:after {
  width: 100%;
}




/* Burger Menu */
.burgerMenu {
  display: block;
  cursor: pointer;
  z-index: 1000;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.burgerMenu:hover {
  color: var(--primary-color);
}

@media (min-width: 1024px) {
  nav {
    display: flex;
    gap: 10px;
  }

  .burgerMenu {
    display: none;
  }
}

/* Slider Styles */


.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #c1121f;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.buttons {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  transform: translateY(-50%);
}

.buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.buttons button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}



/* Mobile Menu Styles */
.burger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  z-index: 1000;
  transition: right 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* About Section Styles */




.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-wa {
  background-color: #25d366;
  color: white;
}

.btn-wa:hover {
  background-color: #1da851;
}

.btn-call {
  background-color: var(--primary-color);
  color: white;
}

.btn-call:hover {
  background-color: #c1121f;
}



/* Footer */
footer {
  background-color: #0f2027;
  color: #fff;
  font-family: "Poppins", sans-serif;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Upper Section */
footer .upper {
  background: linear-gradient(135deg, #e63946 0%, #b81d28 100%);
  padding: 4.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
  gap: 2.5rem;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

footer .upper h3 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

footer .upper .wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #ffffff !important;
  padding: 1rem 3rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

footer .upper .wa:hover {
  background-color: #1ebd5a;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

footer .upper .wa .logo-wa {
  margin-right: 0.8rem;
  display: flex;
  align-items: center;
}

footer .upper .wa .logo-wa i {
  font-size: 1.8rem;
  color: #ffffff !important;
}

footer .upper .wa p {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0;
}

/* Lower Section */
footer .lower {
  padding: 0 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

footer .img-logo {
  text-align: center;
  margin-bottom: 2rem;
}

footer .img-logo img {
  max-width: 200px;
  height: auto;
}

/* Kontak and Address Sections */
footer .kontaktomap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

footer .footer-main,
footer .dekstop-footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

footer .satu,
footer .bawah > div {
  flex: 1;
  min-width: 250px;
  max-width: 100%;
}

/* Heading Styles */
footer .h3 h3 {
  color: red;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

footer .h3 h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: red;
}

/* Contact Info Styles */
footer .telp,
footer .email,
footer .open,
footer .close,
footer .addres-core {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  max-width: 100%;
}

footer .telp i,
footer .email i {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  max-width: 100%;
}

footer .telp i,
footer .email i,
footer .addres-core i {
  color: red;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

footer .telp p,
footer .email p,
footer .open p,
footer .close p,
footer .addres-core p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  word-wrap: break-word;
}

/* Social Media Styles */
footer .sosmed .icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

footer .sosmed .icons a {
  color: white;
  background-color: #333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

footer .sosmed .icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

footer .sosmed .icons i {
  font-size: 1.2rem;
}

/* Map Styles */
footer .map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

footer .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Bottom */
footer hr {
  border: none;
  height: 1px;
  background-color: #333;
  margin: 1rem 0;
}

footer .copy {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  width: 100%;
}

/* Hide desktop version on mobile */
footer .dekstop-footer-main {
  display: none;
}

/* Desktop Styles */
@media (min-width: 992px) {
  footer .upper {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 5rem;
    align-items: center;
  }

  /* Hide mobile version on desktop */
  footer .footer-main {
    display: none;
  }

  /* Show desktop version */
  footer .dekstop-footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  footer .dekstop-footer-main .atas {
    width: 100%;
  }

  footer .dekstop-footer-main .bawah {
    display: flex;
    gap: 2rem;
    width: 100%;
  }

  footer .dekstop-footer-main .bawah > div {
    flex: 1;
  }

  footer .map {
    margin-top: 0;
  }
}
/* Responsive Styles */
@media (max-width: 992px) {
  nav {
    display: none;
  }

  .burgerMenu {
    display: block;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
  }

  footer .footer-main {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }

  .about1,
  .about2 {
    flex-direction: column;
  }

  .card-superiority {
    flex-direction: column;
    /* border: #0f2027 1px solid; */
  }

  .testimonials-card {
    flex-direction: column;
  }

  .cara-pesan ol {
    flex-direction: column;
    align-items: center;
  }

  .cara-pesan li {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }

  .buttons button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .product-card {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }



  footer .dekstop-footer-main {
    display: none;
  }
}
a {
    text-decoration: none;
}
/* Accordion Styles */
.accordion {
    background: #1f2937;
    color: var(--text-color);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.accordion:hover {
    background: #374151;
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion.active {
    background: #374151;
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion.active::after {
    content: '-';
    transform: rotate(180deg);
}

.panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #1f2937;
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.panel.show {
    max-height: 1000px; /* Increased for variable content */
    padding: 20px;
    border-color: rgba(255, 255, 255, 0.1);
}

.panel p {
    margin: 0;
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section Specific Styles */
.pertanyaan {
    margin: 60px 0;
    text-align: center;
}

.pertanyaan h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pertanyaan h1 span {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.pertanyaan-item {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.item1 {
    margin-bottom: 15px;
}
