
    :root {
      --orange: #FF6B00;
      --orange-light: #FF8C33;
      --white: #FFFFFF;
      --dark: #333333;
      --gray: #F5F5F5;
      --glass: rgba(255, 255, 255, 0.85);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
      color: var(--dark);
      overflow-x: hidden;
    }

    ::selection {
      background-color: var(--orange);
      color: var(--white);
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: var(--gray);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--orange);
      border-radius: 10px;
    }

    /* General styles */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 80px 0;
      position: relative;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      text-align: center;
      position: relative;
      color: var(--dark);
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--orange);
      border-radius: 2px;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--orange);
      color: var(--white);
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background-color: var(--orange-light);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .btn:hover::before {
      width: 100%;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    }

    /* Glassmorphism effect */
    .glass {
      background: var(--glass);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    }

    /* Header styles */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.3s ease;
    }

    header.scrolled {
      background: var(--glass);
      padding: 15px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--orange);
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .logo span {
      color: var(--dark);
    }

    .logo-icon {
      margin-right: 10px;
      font-size: 2rem;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: all 0.3s ease;
    }

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

    .nav-links a:hover {
      color: var(--orange);
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--orange);
      margin: 5px 0;
      transition: all 0.3s ease;
    }

    /* Hero section */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/e01992ea-a7f7-42d1-9ee2-f21295e03805.png') no-repeat center center/cover;
      opacity: 0.1;
      z-index: -1;
    }

    .hero-content {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
      padding-right: 40px;
      animation: fadeInLeft 1s ease;
    }

    .hero-image {
      flex: 1;
      min-width: 300px;
      animation: fadeInRight 1s ease;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .hero-image img {
      width: 100%;
      max-width: 500px;
      animation: float 6s ease-in-out infinite;
    }

    /* Services section */
    .services {
      background: var(--white);
    }

    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      padding: 30px;
      transition: all 0.3s ease;
      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(255, 107, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
      z-index: -1;
      transition: all 0.5s ease;
      opacity: 0;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      font-size: 3rem;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .service-card p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

.portfolio {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://placehold.co/1920x1080') no-repeat center center/cover;
  opacity: 0.05;
  z-index: -1;
}

.portfolio h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Container carousel */
.portfolio-wrapper {
  overflow: hidden;
  position: relative;
}

.portfolio-container {
  display: flex;
  gap: 20px;
  animation: scrollLoop 40s linear infinite;
  width: max-content;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.portfolio-item {
  flex: 0 0 auto;
  width: 300px;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
  transition: all 0.5s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  bottom: 0;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  font-size: 0.9rem;
  margin: 0;
}


    /* Testimonials section */
    .testimonials {
      background: var(--white);
    }

    .testimonial-container {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 30px;
      padding: 20px 0;
      scrollbar-width: none;
    }

    .testimonial-container::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      min-width: 300px;
      padding: 30px;
      scroll-snap-align: center;
      position: relative;
      transition: all 0.3s ease;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(255, 107, 0, 0.1);
      z-index: 0;
      font-family: serif;
    }

    .testimonial-card .quote {
      position: relative;
      z-index: 1;
      font-style: italic;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }

    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .author-info p {
      font-size: 0.9rem;
      color: #777;
    }

    /* Contact section */
    .contact {
      position: relative;
    }

    .contact::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: var(--orange);
      z-index: -1;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--orange);
    }

    .contact-details p {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .contact-details i {
      margin-right: 10px;
      color: var(--orange);
      font-size: 1.2rem;
      width: 20px;
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--orange);
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: var(--white);
      padding: 50px 0 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-col {
      flex: 1;
      min-width: 200px;
    }

    .footer-col h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--white);
      position: relative;
      padding-bottom: 10px;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--orange);
    }

    .footer-col p {
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--orange);
      transform: translateX(5px);
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--orange);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      color: #999;
    }

    /* Animations */
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-20px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    /* Responsive styles */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.8rem;
      }

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

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--glass);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        backdrop-filter: blur(10px);
      }

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

      .nav-links li {
        margin: 15px 0;
      }

      .hamburger {
        display: block;
      }

      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

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

      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }

      .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
      }

      .hero-content {
        flex-direction: column;
      }

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

      .testimonial-card {
        min-width: 280px;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2.2rem;
      }

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

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

      .btn {
        padding: 10px 25px;
      }
    }

    /* === DETAIL PAKET 1 (KHUSUS page-paket1) === */
.page-paket1 {
  background: linear-gradient(to bottom right, #fff7f0, #ffffff);
}

.page-paket1 .background-pattern {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff6b00 20%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.page-paket1 .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
}

.page-paket1 .card {
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex: 1 1 350px;
}

.page-paket1 .card:hover {
  transform: perspective(1000px) rotateX(3deg) translateY(-10px);
  box-shadow: 0 30px 70px rgba(255, 107, 0, 0.2);
}

.page-paket1 .plan-title {
  font-size: 28px;
  font-weight: 800;
  color: #ff6b00;
  margin-bottom: 20px;
}

.page-paket1 .features {
  text-align: left;
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.page-paket1 .features li {
  margin: 10px 0;
  list-style: none;
}

.page-paket1 .features li::before {
  content: '\2714\0020';
  color: #25D366;
  font-weight: bold;
}

.page-paket1 .promo-tag {
  background: #ff6b00;
  color: white;
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 50px;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.page-paket1 .btn-wa {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.page-paket1 .btn-wa:hover {
  background: #1ebc5b;
}

@media (max-width: 768px) {
  .page-paket1 .container {
    flex-direction: column;
    align-items: center;
  }
}
  
/* ===============================
   RESPONSIVE FIXES (FINAL PATCH)
   Tambahin di paling bawah style.css
================================= */

/* Tablet (<= 992px) */
@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 100px 20px 60px;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

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

  .services-container {
    grid-template-columns: 1fr;
  }

  .testimonial-container {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    flex: 0 0 80%;
    margin: 0 auto;
  }

  .portfolio-item {
    width: 240px;
    height: 200px;
  }

  .footer-col {
    min-width: 100%;
  }
}

/* Small Mobile (<= 576px) */
@media (max-width: 576px) {
  header {
    padding: 15px 0;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 20px;
  }

  .testimonial-card {
    min-width: 90%;
    padding: 20px;
  }

  .portfolio-item {
    width: 200px;
    height: 160px;
  }
}
