:root {
  --primary-color: #ec4d37;
  --secondary-color: #1d1b1b;
  --white-color: #ffffff;
}

.highlights-section {
  background: rgba(29, 27, 27, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background: #0f0f0f;
  color: #e6e6e6;
}

/* Navbar */
.navbar {
  background: transparent !important;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(29, 27, 27, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--white-color) !important;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 27, 27, 0.85), rgba(236, 77, 55, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text {
  text-align: left;
}

.hero-illustration {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
}

.hero-illustration .img-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 0 8px rgba(236, 77, 55, 0.18), 0 26px 60px rgba(0, 0, 0, 0.55);
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-illustration .img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-illustration .img-wrap:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(0deg) translateY(-6px);
  box-shadow: 0 0 0 10px rgba(236, 77, 55, 0.22), 0 34px 80px rgba(0, 0, 0, 0.6);
}

.hero-highlights {
  margin-top: 16px;
  display: block;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  margin: 8px 0 0 0;
  color: var(--white-color);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.hero-text .btn-primary-custom {
  display: inline-block;
  margin-bottom: 8px;
}

.hero-highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(236, 77, 55, 0.4);
}

.btn-primary-custom:hover {
  background: #d43d27;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(236, 77, 55, 0.6);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #aaaaaa;
  margin-bottom: 50px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: #121212;
}

.about-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.1);
}

/* Services Section */
.services-section {
  /* padding: 1000000px 0; */
  background: #0f1113;
}

.service-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  height: 100%;
  color: #e6e6e6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(236, 77, 55, 0.18);
  border-color: rgba(236, 77, 55, 0.35);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b54);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white-color);
  font-size: 2rem;
}

.service-card h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(236, 77, 55, 0.85); */
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white-color);
}

.parallax-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Custom Lightbox */
.custom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Navigation Buttons */
.lightbox-btn {
  position: fixed;
  background: none;
  backdrop-filter: none;
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
}

.lightbox-btn:hover {
  background: none;
  transform: scale(1.1);
  opacity: 0.8;
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* SVG Icons */
.lightbox-btn svg {
  width: 24px;
  height: 24px;
}

/* Partners Section */
/* .partners-section {
    padding: 80px 0;
    background: #0f0f0f;
  }

  .partner-logo {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
  }

  .partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
  } */

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .lightbox-btn {
    width: 40px;
    height: 40px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }
}

/* Vision Mission Section - refreshed */
.vision-mission-section {
  padding: 110px 0;
  position: relative;
  background: #1c1c1c;
  color: var(--white-color);
  overflow: hidden;
}

.vm-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 1;
}

.vm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 77, 55, 0.45);
  box-shadow: 0 18px 45px rgba(236, 77, 55, 0.25);
}

.vm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(236, 77, 55, 0.2), rgba(236, 77, 55, 0.05));
  color: var(--primary-color);
  font-size: 1.7rem;
  margin-bottom: 18px;
  border: 1px solid rgba(236, 77, 55, 0.3);
}

.vm-title {
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 6px 0 18px;
}

.vm-divider {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b54);
  border-radius: 3px;
  margin-bottom: 22px;
}

.vm-highlight {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #f3f3f3;
}

.vm-badges {
  margin-top: 18px;
}

.vm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(236, 77, 55, 0.18);
  color: #ffd6cf;
  font-size: 0.9rem;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(236, 77, 55, 0.35);
}

.vm-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.vm-list li {
  position: relative;
  padding-left: 38px;
  margin: 12px 0;
  line-height: 1.8;
  color: #ececec;
}

.vm-list li:before {
  content: '\f00c'; /* fa-check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 77, 55, 0.2);
  color: var(--primary-color);
  border: 1px solid rgba(236, 77, 55, 0.35);
}

/* Partners Section */
/* .partners-section {
    padding: 100px 0;
    background: #101010;
  }

  .partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  .partner-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(236, 77, 55, 0.2);
  }

  .partner-logo img {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  .partner-logo:hover img {
    filter: grayscale(0%);
  } */

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: #121212;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.accordion-button {
  background: #1a1a1a;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-body {
  background: #1a1a1a;
  color: #ffffff;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Testimonial Section */
/* .testimonial-section {
    padding: 100px 0;
    background: var(--white-color);
  }
  .testimonial-section .section-title {
    color: var(--secondary-color);
  }
  .testimonial-section .section-subtitle {
    color: #666;
  }

  .testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: #e6e6e6;
  }

  .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
    overflow: hidden;
  }

  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }

  .testimonial-name {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
  }

  .testimonial-position {
    color: var(--primary-color);
    font-size: 0.9rem;
  }

  .swiper-pagination-bullet-active {
    background: var(--primary-color);
  } */

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(236, 77, 55, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: var(--white-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
}

.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.wa-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

/* Contact Us */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Gallery/foto2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contact-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.form-control {
  background: #121212;
  color: #eaeaea;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
  color: #9a9a9a;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(236, 77, 55, 0.15);
  background: #151515;
  color: #ffffff;
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .parallax-section {
    background-attachment: scroll;
  }
}
