html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Button (Hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #555;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-section {
    padding: 0.5rem 0;
}

.dropdown-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #fff8f0;
    color: #ff8c00;
    padding-left: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.search-icon:hover {
    color: #ff8c00;
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: white;
    padding: 0.75rem;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.search-input:focus {
    border-color: #ff8c00;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.language-selector:hover {
    background: #f8f9fa;
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-code {
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.active {
    background: #fff8f0;
    color: #ff8c00;
}

.lang-option .flag-icon {
    width: 24px;
    height: 18px;
}

.register-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,140,0,0.25);
}

.register-btn:hover {
    background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,140,0,0.4);
}

.register-icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================ */

/* Tablet (1024px and below) */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }

    .dropdown-menu {
        min-width: 240px;
    }

    .register-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Small Tablet (768px and below) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1rem 0;
        gap: 0;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto;
        border-radius: 0;
        padding: 0;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        background: #f8f9fa;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }

    .dropdown-item:hover {
        padding-left: 2.5rem;
    }

    /* Search adjustments for mobile */
    .search-box {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: calc(100vw - 3rem);
    }

    .search-box.active {
        transform: translateX(-50%) translateY(0);
    }

    /* Language selector adjustments */
    .language-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }

    .language-selector:hover .language-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    /* Right section adjustments */
    .nav-right {
        gap: 1rem;
    }

    .lang-code {
        display: none;
    }

    .register-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .search-icon {
        width: 20px;
        height: 20px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .register-btn {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }

    .register-icon {
        width: 16px;
        height: 16px;
    }

    .search-box {
        min-width: calc(100vw - 2rem);
    }

    .hamburger span {
        width: 22px;
    }
}

/* Very small mobile (360px and below) */
@media screen and (max-width: 360px) {
    .navbar {
        padding: 0.75rem 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .register-btn span {
        display: none;
    }

    .register-btn {
        padding: 0.5rem;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .nav-right {
        gap: 0.5rem;
    }
}   

/* =========================
   HERO SLIDER RESPONSIVE
   ========================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   NAVIGATION ARROWS
   ========================= */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff8c00;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* =========================
   DOT CONTROLS
   ========================= */

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #ff8c00;
    transform: scale(1.2);
    border-color: #ffffff;
}

/* =========================
   TABLET (≤ 1024px)
   ========================= */

@media (max-width: 1024px) {
    .hero-slider {
        height: 480px;
        touch-action: pan-y;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .slider-nav.prev {
        left: 20px;
    }

    .slider-nav.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto !important;
        aspect-ratio: 16 / 9;
        background: none; /* penting */
        touch-action: pan-y;
    }

    @media (max-width: 768px) {
    .slider-nav {
        display: none;
    }
}


    .slide,
    .slide img {
        width: 100%;
        height: 100%;
    }

    .slide img {
        object-fit: cover;
        display: block;
    }
}



/* =========================
   MOBILE PORTRAIT (≤ 480px)
   ========================= */
@media (max-width: 480px) {

    .hero-slider {
        height: auto;
        overflow: hidden;
        touch-action: pan-y;
    }

    .slide {
        position: absolute;
        inset: 0;
    }

    .slide:not(.active) {
        display: none;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .slider-nav {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        opacity: 0.85;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-controls {
        bottom: 10px;
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* =========================
   ULTRA WIDE SCREEN (≥ 1440px)
   ========================= */
@media (min-width: 1440px) {
    .hero-slider {
        height: 700px;
        touch-action: pan-y;
    }
}




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

@media (max-width: 768px) {
    .about-section {
        padding-top: 40px;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 50px;
}

.section-sub {
  text-align: center;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 50px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature    -grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(255,140,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    width: 100%;
    max-width: 360px;

    height: 52px;
    padding: 0 1.5rem;

    background: white;
    color: #ff8c00;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    line-height: 1;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (hover: hover) {
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
}

@media (max-width: 480px) {
    .cta-button {
        height: 48px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .cta-button svg {
        width: 18px;
        height: 18px;
    }
}


.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

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

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ff8c00;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff8c00;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    margin-bottom: 1rem;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    color: #ff8c00;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-slider {
        height: 400px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-section {
        padding: 50px 0;
    }

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

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .features-section {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* =======================
   PAKET & HARGA - MODERN DESIGN
======================= */
.pricing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Pattern */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.pricing-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.pricing-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ffb700);
  margin: 20px auto 0;
  border-radius: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Modern Glassmorphism Card */
.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

/* Hover Gradient Effect */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ffb700, #ff8c00);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(255, 140, 0, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.3);
}

/* Featured/Popular Card */
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 183, 0, 0.1));
  border: 2px solid rgba(255, 140, 0, 0.4);
  transform: scale(1.05);
}

.pricing-card.featured::after {
  content: 'POPULER';
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
  letter-spacing: 1px;
}

/* Card Icon/Badge */
.pricing-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.pricing-card:hover::after {
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

/* Speed Badge */
.pricing-card .speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.pricing-card .speed-badge svg {
  width: 18px;
  height: 18px;
}

/* Price Styling */
.price {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.price span {
  display: block;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 10px 0;
  line-height: 1;
}

.price small {
  color: #999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.features li {
  margin: 15px 0;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.features li:hover {
  color: #ff8c00;
  transform: translateX(5px);
}

.features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.features .inactive {
  color: #ccc;
  text-decoration: line-through;
}

.features .inactive::before {
  content: '✕';
  background: #e0e0e0;
  box-shadow: none;
}

/* =======================
   BUTTON HUBUNGI KAMI - MODERN
======================= */
.pricing-card .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 
    0 8px 20px rgba(255, 140, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-card .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.pricing-card .cta-button:hover::before {
  left: 100%;
}

.pricing-card .cta-button:hover {
  background: linear-gradient(135deg, #e67e00, #f0a500);
  transform: translateY(-3px);
  box-shadow: 
    0 15px 35px rgba(255, 140, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.pricing-card .cta-button:active {
  transform: translateY(-1px);
  box-shadow: 
    0 8px 20px rgba(255, 140, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Button Icon */
.pricing-card .cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.pricing-card .cta-button:hover svg {
  transform: translateX(5px);
}

/* =======================
   PREVIEW BOX & UPLOAD - MODERN
======================= */
.preview-box {
  width: 100%;
  height: 180px;
  border: 3px dashed #e0e0e0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.preview-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 183, 0, 0.1));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.preview-box:hover {
  border-color: #ff8c00;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 100%);
  transform: scale(1.02);
}

.preview-box:hover::before {
  opacity: 1;
  width: 80px;
  height: 80px;
}

.preview-box img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.preview-box:hover img {
  transform: scale(1.05);
}

.preview-box .upload-icon {
  font-size: 48px;
  color: #ff8c00;
  margin-bottom: 10px;
}

.preview-box .upload-text {
  font-weight: 600;
  color: #666;
}

/* Banner Slot Card */
.banner-slot {
  width: 280px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 140, 0, 0.1);
}

.banner-slot:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(255, 140, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.3);
}

/* Upload Label */
.upload-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.upload-label:hover {
  background: linear-gradient(135deg, #e67e00, #f0a500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.upload-label svg {
  width: 18px;
  height: 18px;
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 15px;
  }
  
  .pricing-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .price span {
    font-size: 40px;
  }
  
  .banner-slot {
    width: 100%;
    max-width: 320px;
  }
}

/* =======================
   ANIMATIONS
======================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* Loading Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}



/* ===========================
   MODERN ORDER FORM STYLES
   =========================== */

/* Hero Section */
.order-hero {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.order-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.order-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.order-hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.order-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Order Section */
.order-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

/* Order Card */
.order-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #000000 0%, #000000 100%);
    border-radius: 24px 24px 0 0;
}

/* Alert Success */
.alert-success {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-left: 4px solid #e68900;
    color: #e68900;
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

/* Form Group */
.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Input Styles */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-group textarea#alamat {
    min-height: 80px;
}

/* Map Container */
#map {
    height: 350px;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

#map:hover {
    border-color: #000000;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.location-btn {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #ffffff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px; /* pill style */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.location-btn::before {
    content: '📍';
    font-size: 1.1rem;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.location-btn:active {
    transform: translateY(0);
}
.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    align-items: flex-start;
}



.location-wrapper input {
    flex: 1;
}


/* Readonly Input (Lokasi) */
#lokasi {
    background: #f7fafc !important;
    color: #4a5568;
    font-size: 0.9rem;
    cursor: not-allowed;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 32px 0;
    padding: 18px;
    background: #fffbf5;
    border-radius: 12px;
    border: 2px solid #fdf4d8;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #000000;
}

.form-check span {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Submit Button */
.cta-button.full {
    display: inline-flex;          /* ⬅️ penting */
    justify-content: center;
    align-items: center;

    width: auto;                   /* ⬅️ hentikan full-width */
    min-width: 280px;
    max-width: 360px;

    margin: 32px auto 0;           /* center horizontal */

    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 999px;

    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.6px;

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
}


.cta-button.full:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.55);
}

.cta-button.full:active {
    transform: translateY(-1px);
}


.cta-button.full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button.full:hover::before {
    left: 100%;
}

.cta-button.full:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgb(255, 132, 0);
}

.cta-button.full:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .order-hero {
        padding: 60px 0 40px;
    }
    
    .order-hero h1 {
        font-size: 2rem;
    }
    
    .order-card {
        padding: 30px 24px;
        border-radius: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #map {
        height: 280px;
    }
    
    .cta-button.full {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .order-hero h1 {
        font-size: 1.75rem;
    }
    
    .order-hero p {
        font-size: 1rem;
    }
    
    .order-card {
        padding: 24px 18px;
    }
    
    .location-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========================================
   ADDITIONAL STYLES FOR IMPROVEMENTS
   COLOR SCHEME: White (#ffffff), Orange (#ff8c00), Black (#000000)
======================================== */

/* Trust Section */
.trust-section {
    background: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff8c00;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 600;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 140, 0, 0.05);
    border-color: #ff8c00;
    transform: translateX(5px);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #ff8c00;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: #000000;
}

/* Speed Test Section */
.speed-test-section {
    background: #ffffff;
    padding: 80px 20px;
}

.speed-test-section .section-title {
    color: #000000 !important;
}

.speed-test-section .section-subtitle {
    color: #000000 !important;
}

.speed-test-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.speedometer {
    position: relative;
    width: 300px;
    height: 180px;
    margin: 0 auto 2rem;
}

.speed-gauge {
    width: 100%;
    height: 100%;
}

.speed-display {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.speed-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ff8c00;
    line-height: 1;
}

.speed-unit {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.speed-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.speed-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
}

.speed-test-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.speed-test-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.5);
}

.speed-test-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.speed-test-btn svg {
    width: 20px;
    height: 20px;
}

.speed-note {
    margin-top: 1.5rem;
    color: #000000;
    font-size: 0.875rem;
}

/* Enhanced Package Cards */
.pricing-card {
    background: #ffffff;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.pricing-card:hover {
    border-color: #ff8c00;
}

.pricing-card.featured {
    position: relative;
    border: 2px solid rgba(255, 140, 0, 0.2);
    background: #ffffff;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.pricing-card.featured::before,
.pricing-card.featured::after {
    display: none !important;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    z-index: 10;
}

.popular-badge svg {
    width: 16px;
    height: 16px;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-header h3 {
    color: #000000;
}

.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.speed-badge svg {
    width: 16px;
    height: 16px;
}

.price-original {
    text-decoration: line-through;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2rem;
    color: #000000;
}

.price-current span {
    color: #ff8c00;
}

.price-period {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.5rem;
}

.savings-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 1rem 0;
    display: inline-block;
}

.features .feature-active {
    color: #000000;
}

.features .feature-active svg {
    color: #22c55e;
}

.features .feature-inactive {
    color: #999999;
    text-decoration: line-through;
}

.features .feature-inactive svg {
    color: #999999;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.package-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-note svg {
    width: 24px;
    height: 24px;
    color: #ff8c00;
    flex-shrink: 0;
}

.package-note p {
    color: #000000;
    margin: 0;
}

/* Coverage Section */
.coverage-section {
    background: #ffffff;
    padding: 80px 20px;
}

.coverage-section .section-title {
    color: #000000;
}

.coverage-section .section-subtitle {
    color: #666666;
}

.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-form-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.coverage-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group label svg {
    width: 16px;
    height: 16px;
    color: #ff8c00;
}

.form-group input,
.form-group select {
    padding: 1rem;
    background: #ffffff;
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff8c00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.coverage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.coverage-btn svg {
    width: 20px;
    height: 20px;
}

.coverage-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.coverage-result h3 {
    color: #22c55e;
    font-size: 1.5rem;
    margin: 0;
}

.coverage-result p {
    color: #666666;
    margin: 0;
}

.result-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.coverage-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #ff8c00;
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.info-card h4 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-card p {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: #000000;
}

.testimonials-section .section-subtitle {
    color: #1d1d1d;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 350px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #333333;
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ff8c00;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666666;
    font-size: 0.813rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-color: #ff8c00;
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666666;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 20px;
}

.faq-section .section-title {
    color: #000000;
}

.faq-section .section-subtitle {
    color: #666666;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 140, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #ff8c00;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: #2d2d2d;
    font-size: 1.063rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff8c00;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #ff8c00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #515151;
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: #000000;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.faq-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.cta-content h2 {
    color: #ffffff;
}

.cta-content p {
    color: #cccccc;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    white-space: nowrap;

    transition: all 0.3s ease;
}

.cta-icon svg {
    width: 22px;
    height: 22px;
}

.cta-primary {
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-buttons {
        width: 100%;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;

        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }

    .cta-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .cta-icon svg {
        width: 18px;
        height: 18px;
    }
}


.cta-secondary {
    background: #25d366;
    color: #ffffff;
}

.cta-secondary:hover {
    background: #20ba5a;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.938rem;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

/* Footer Enhancements */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.footer-badge svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.footer-badge span {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
}

.contact-info li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #ff8c00;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coverage-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-prev {
        left: 10px;
    }
    
    .testimonial-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .speed-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-track {
        gap: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===========================
   HEADER FIX
=========================== */

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
}

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

    display: flex;
    align-items: center;       /* ⬅️ KUNCI UTAMA */
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 48px;              /* ⬅️ WAJIB */
    width: auto;
    display: block;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

/* ===========================
   ABOUT - FEATURE TEXT COLOR
=========================== */

.about-features .feature-item span {
    color: #000000;        /* Oranye SIMTEK */
    font-weight: 600;
    opacity: 1;
}

/* ===========================
   SPEED TEST - TITLE & TEXT
=========================== */

.speed-test-section h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.speed-test-section p {
    color: #cccccc !important;
    font-size: 1rem;
}

/* ===============================
   NORMALISASI PAKET B
   Samakan dengan Paket A & C
================================ */

/* Hilangkan style khusus featured */
.pricing-card.featured {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: none;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Nonaktifkan badge populer & dekorasi tambahan */
.pricing-card.featured::before,
.pricing-card.featured::after {
  display: none !important;
}

/* Samakan hover behavior */
.pricing-card.featured:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(255, 140, 0, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Jika ada badge HTML populer, sembunyikan */
.pricing-card.featured .popular-badge {
  display: none;
}

/* =====================================
   FORCE WARNA TEKS FITUR (CEKLIS)
===================================== */

/* Semua teks di dalam list fitur paket */
.pricing-card li,
.pricing-card li span,
.pricing-card li p {
  color: #000000 !important;
  opacity: 1 !important;
}

/* Jika ada class khusus untuk teks fitur */
.pricing-card .feature,
.pricing-card .feature-text {
  color: #000000 !important;
  opacity: 1 !important;
}

/* =====================================
   FIX WARNA TEKS INFO PROMO
===================================== */

.package-note {
  color: #000000 !important;
  opacity: 1 !important;
}

.package-note p {
  color: #000000 !important;
  opacity: 1 !important;
}

/* Ikon SVG tetap oranye */
.package-note svg {
  color: #ff8c00;
  opacity: 1;
}

/* ===============================
   HAPUS LABEL HEMAT
================================ */
.pricing-card .saving,
.pricing-card .badge-saving,
.pricing-card .discount,
.pricing-card .yearly-saving {
  display: none !important;
}

/* =============================================
   NAVBAR RESPONSIF V2 - FINAL (FIXED)
   - Menu items rata tengah vertikal
   - Teks "Hubungi Kami" warna putih
   ============================================= */

/* =============================================
   NAVBAR RESPONSIF FINAL
   - Desktop: nav-menu dan nav-right TERPISAH
   - Mobile: Semua masuk ke hamburger menu
   ============================================= */

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #555;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* ✅ NAV MENU - Menu Links (Home - FAQ) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: #555;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #ff8c00;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-section {
    padding: 0.5rem 0;
}

.dropdown-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #fff8f0;
    color: #ff8c00;
    padding-left: 2rem;
}

/* ✅ NAV RIGHT - Search, Language, Contact */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Search */
.search-wrapper {
    position: relative;
}

.search-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.search-icon:hover {
    color: #ff8c00;
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: white;
    padding: 0.75rem;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
    z-index: 1000;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.search-input:focus {
    border-color: #ff8c00;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.language-selector:hover {
    background: #f8f9fa;
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-code {
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.active {
    background: #fff8f0;
    color: #ff8c00;
}

.lang-option .flag-icon {
    width: 24px;
    height: 18px;
}

/* Contact Button */
.register-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white !important;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,140,0,0.25);
}

.register-btn:hover {
    background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,140,0,0.4);
}

.register-btn span {
    color: white !important;
}

.register-icon {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
    }

    /* ✅ SEMBUNYIKAN nav-right ASLI di navbar atas */
    .nav-right {
        display: none !important;
    }

    /* ✅ Menu Slide dari Kiri */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1rem 0;
        gap: 0;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        justify-content: center;
    }

    .nav-link::after {
        display: none;
    }

    /* ✅ NAV-RIGHT MOBILE (Clone yang masuk ke menu) */
    .nav-right-mobile {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 0;
        border-top: 2px solid #f0f0f0;
        margin-top: 0.5rem;
    }

    /* Search di Mobile Menu */
    .nav-right-mobile .search-wrapper {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-right-mobile .search-icon {
        display: none;
    }

    .nav-right-mobile .search-box {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        background: transparent;
    }

    .nav-right-mobile .search-input {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Language Selector di Mobile Menu */
    .nav-right-mobile .language-selector {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: center;
        border-bottom: 1px solid #f0f0f0;
        background: transparent;
    }

    .nav-right-mobile .language-selector:hover {
        background: #f8f9fa;
    }

    .nav-right-mobile .language-dropdown {
        position: static;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .nav-right-mobile .language-selector.active .language-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px;
        margin-top: 0.5rem;
    }

    .nav-right-mobile .lang-option {
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    /* Contact Button di Mobile Menu */
    .nav-right-mobile .register-btn {
        width: calc(100% - 3rem);
        margin: 1rem 1.5rem;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-right-mobile .register-btn:hover {
        transform: none;
    }

    /* Dropdown di Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto;
        border-radius: 0;
        padding: 0;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        background: #f8f9fa;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }

    .dropdown-item:hover {
        padding-left: 2.5rem;
    }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .hamburger span {
        width: 22px;
    }
}

/* Mobile Very Small */
@media screen and (max-width: 360px) {
    .navbar {
        padding: 0.75rem 0.75rem;
    }

    .logo-img {
        height: 40px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }

    .register-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    width: 100%;
    max-width: 360px;

    height: 52px;
    padding: 0 1.5rem;

    background: white;
    color: #ff8c00;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    line-height: 1;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Icon */
.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Variant warna */
.cta-primary {
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
}

/* Hover desktop only */
@media (hover: hover) {
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
}

/* Mobile kecil */
@media (max-width: 480px) {
    .cta-button {
        height: 48px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .cta-button svg {
        width: 18px;
        height: 18px;
    }
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-main {
    max-width: 450px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Google Maps Styling */
.footer-map {
    margin: 20px 0;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.map-header h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #ff8c00;
    text-transform: uppercase;
}

.map-link {
    font-size: 11px;
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s;
}

.map-link:hover {
    color: #6bb3ff;
    text-decoration: underline;
}

.map-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Footer Badge */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.footer-badge svg {
    width: 18px;
    height: 18px;
    color: #4caf50;
}

/* Footer Columns */
.footer-col h4 {
    color: #ff8c00;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff8c00;
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b0b0b0;
    font-size: 14px;
}

.contact-info svg {
    width: 18px;
    height: 18px;
    color: #ff8c00;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff8c00;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #808080;
    font-size: 13px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #808080;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff8c00;
}

.footer-links span {
    color: #404040;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col-main {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   NAVBAR RESPONSIVE STYLES
======================================== */

/* Base Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu (Hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Nav Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: #555;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #ff8c00;
}

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

/* Register Button */
.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.register-icon {
    width: 20px;
    height: 20px;
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   RESPONSIVE BREAKPOINTS - NAVBAR
======================================== */

/* Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 4%;
    }

    .logo-img {
        height: 38px;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
    }

    /* Side Menu */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 0.95rem;
        color: #333;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item:active .nav-link {
        color: #ff8c00;
        background: rgba(255, 140, 0, 0.05);
        padding-left: 10px;
    }

    .register-btn {
        margin-top: 20px;
        justify-content: center;
        padding: 14px 24px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 4%;
    }

    .logo-img {
        height: 35px;
    }

    .nav-wrapper {
        width: 260px;
        padding: 70px 25px 25px;
    }

    .hamburger-line {
        width: 22px;
    }
}

/* ========================================
   NAVBAR STYLES - COMPLETE
======================================== */

/* Base Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
}

.logo-img {
    height: 45px;
    width: auto;
}

/* Hamburger - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #ff8c00;
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #ff8c00;
}

/* Nav Wrapper - Desktop */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Nav Menu - Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: #555;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #ff8c00;
}

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

/* Register Button */
.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    white-space: nowrap;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.register-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* ========================================
   RESPONSIVE - MOBILE NAVBAR
======================================== */

@media (max-width: 768px) {
    /* Navbar adjustments */
    .navbar {
        padding: 12px 4%;
    }

    .logo-img {
        height: 40px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile Side Menu */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 80px 0 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-wrapper.active {
        right: 0;
    }

    /* Mobile menu layout */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: block;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 18px 30px;
        font-size: 1rem;
        color: #333;
        display: block;
        width: 100%;
        position: relative;
    }

    /* Remove underline effect on mobile */
    .nav-link::after {
        display: none;
    }

    /* Mobile active/hover state */
    .nav-link:active,
    .nav-link:hover {
        color: #ff8c00;
        background: rgba(255, 140, 0, 0.05);
    }

    /* Register button mobile */
    .register-btn {
        margin: 20px 30px 0;
        padding: 15px 24px;
        font-size: 1rem;
        justify-content: center;
        width: calc(100% - 60px);
    }

    .register-icon {
        width: 22px;
        height: 22px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 4%;
    }

    .logo-img {
        height: 35px;
    }

    .nav-wrapper {
        width: 80%;
        max-width: 280px;
    }

    .nav-link {
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    .register-btn {
        margin: 15px 25px 0;
        padding: 14px 20px;
        font-size: 0.95rem;
        width: calc(100% - 50px);
    }
}

/* ========================================
   ORDER FORM RESPONSIVE
======================================== */

/* Global Reset */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Add spacing for fixed navbar */
.order-hero,
.order-section {
    margin-top: 75px;
}

.order-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.order-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.order-hero p {
    font-size: 1.1rem;
    color: #ccc;
}

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

.order-section {
    padding: 40px 20px 80px;
}

.order-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
}

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

/* Map */
#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
}

.location-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.location-btn {
    padding: 12px 20px;
    background: #ff9900;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.location-btn:hover {
    background: #ff8c00;
}

#lokasi {
    flex: 1;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-check span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Submit Button */
.cta-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button.full {
    width: 100%;
}

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

.cta-button:active {
    transform: translateY(0);
}

/* Alert */
.alert-success {
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ========================================
   MOBILE RESPONSIVE - ORDER FORM
======================================== */

@media (max-width: 768px) {
    .order-hero {
        padding: 40px 15px;
        margin-top: 65px;
    }

    .order-hero h1 {
        font-size: 1.75rem;
    }

    .order-hero p {
        font-size: 0.95rem;
    }

    .order-section {
        padding: 30px 10px 60px;
        margin-top: 0;
    }

    .order-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    #map {
        height: 300px;
    }

    .location-wrapper {
        flex-direction: column;
    }

    .location-btn {
        width: 100%;
    }

    .cta-button {
        padding: 14px;
        font-size: 1rem;
    }

    .form-check {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .order-hero {
        padding: 30px 10px;
        margin-top: 60px;
    }

    .order-hero h1 {
        font-size: 1.5rem;
    }

    .order-hero p {
        font-size: 0.85rem;
    }

    .order-card {
        padding: 20px 15px;
    }

    #map {
        height: 250px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

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

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .register-btn-desktop {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .register-btn-desktop:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        .register-icon {
            width: 20px;
            height: 20px;
        }

        .nav-item-mobile {
            display: none;
        }

        /* Hero Section Styles */
        .hero-slider {
            margin-top: 80px; /* Offset untuk navbar fixed */
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s;
            z-index: 10;
        }

        .slider-nav:hover {
            background: white;
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        /* Features Section */
        .features {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            stroke: white;
            fill: none;
        }

        .feature-content h3 {
            color: #ff6b35;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .register-btn-desktop {
                display: none;
            }

            .nav-item-mobile {
                display: block;
                width: 100%;
            }

            .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: 0;
            }

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

            .nav-item {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-link {
                font-size: 1.1rem;
            }

            .register-btn-mobile {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                padding: 1rem 2rem;
                margin: 1rem auto 0;
                width: calc(100% - 4rem);
                max-width: 250px;
                background: linear-gradient(135deg, #ff6b35, #f7931e);
                color: white !important;
                text-decoration: none;
                border-radius: 25px;
                font-weight: 600;
                transition: transform 0.3s, box-shadow 0.3s;
            }

            .register-btn-mobile span {
                color: white !important;
            }

            .register-btn-mobile svg {
                stroke: white;
            }

            .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);
            }

            /* Mobile Hero */
            .hero-slider {
                height: 300px;
                margin-top: 60px;
            }

            .slider-nav {
                padding: 0.5rem;
                font-size: 1rem;
            }

            .slider-nav.prev {
                left: 5px;
            }

            .slider-nav.next {
                right: 5px;
            }

            /* Mobile Features */
            .features {
                padding: 2rem 1rem;
            }

            .feature-card {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .feature-content h3 {
                font-size: 1.5rem;
            }

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

        @media (max-width: 480px) {
            .navbar {
                padding: 0.75rem 1rem;
            }

            .logo-img {
                height: 30px;
            }

            .hero-slider {
                height: 250px;
            }

            .feature-content h3 {
                font-size: 1.3rem;
            }
        }
        
        html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Button (Hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #555;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-section {
    padding: 0.5rem 0;
}

.dropdown-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #fff8f0;
    color: #ff8c00;
    padding-left: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.search-icon:hover {
    color: #ff8c00;
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: white;
    padding: 0.75rem;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.search-input:focus {
    border-color: #ff8c00;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.language-selector:hover {
    background: #f8f9fa;
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-code {
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.active {
    background: #fff8f0;
    color: #ff8c00;
}

.lang-option .flag-icon {
    width: 24px;
    height: 18px;
}

.register-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,140,0,0.25);
}

.register-btn:hover {
    background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,140,0,0.4);
}

.register-icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================ */

/* Tablet (1024px and below) */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }

    .dropdown-menu {
        min-width: 240px;
    }

    .register-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Small Tablet (768px and below) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1rem 0;
        gap: 0;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto;
        border-radius: 0;
        padding: 0;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        background: #f8f9fa;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }

    .dropdown-item:hover {
        padding-left: 2.5rem;
    }

    /* Search adjustments for mobile */
    .search-box {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: calc(100vw - 3rem);
    }

    .search-box.active {
        transform: translateX(-50%) translateY(0);
    }

    /* Language selector adjustments */
    .language-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }

    .language-selector:hover .language-dropdown {
        transform: translateX(-50%) translateY(0);
    }

    /* Right section adjustments */
    .nav-right {
        gap: 1rem;
    }

    .lang-code {
        display: none;
    }

    .register-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .search-icon {
        width: 20px;
        height: 20px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .register-btn {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }

    .register-icon {
        width: 16px;
        height: 16px;
    }

    .search-box {
        min-width: calc(100vw - 2rem);
    }

    .hamburger span {
        width: 22px;
    }
}

/* Very small mobile (360px and below) */
@media screen and (max-width: 360px) {
    .navbar {
        padding: 0.75rem 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .register-btn span {
        display: none;
    }

    .register-btn {
        padding: 0.5rem;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .nav-right {
        gap: 0.5rem;
    }
}   

/* =========================
   HERO SLIDER RESPONSIVE
   ========================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   NAVIGATION ARROWS
   ========================= */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff8c00;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* =========================
   DOT CONTROLS
   ========================= */

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #ff8c00;
    transform: scale(1.2);
    border-color: #ffffff;
}

/* =========================
   TABLET (≤ 1024px)
   ========================= */

@media (max-width: 1024px) {
    .hero-slider {
        height: 480px;
        touch-action: pan-y;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .slider-nav.prev {
        left: 20px;
    }

    .slider-nav.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto !important;
        aspect-ratio: 16 / 9;
        background: none; /* penting */
        touch-action: pan-y;
    }

    @media (max-width: 768px) {
    .slider-nav {
        display: none;
    }
}


    .slide,
    .slide img {
        width: 100%;
        height: 100%;
    }

    .slide img {
        object-fit: cover;
        display: block;
    }
}



/* =========================
   MOBILE PORTRAIT (≤ 480px)
   ========================= */
@media (max-width: 480px) {

    .hero-slider {
        height: auto;
        overflow: hidden;
        touch-action: pan-y;
    }

    .slide {
        position: absolute;
        inset: 0;
    }

    .slide:not(.active) {
        display: none;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .slider-nav {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        opacity: 0.85;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-controls {
        bottom: 10px;
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* =========================
   ULTRA WIDE SCREEN (≥ 1440px)
   ========================= */
@media (min-width: 1440px) {
    .hero-slider {
        height: 700px;
        touch-action: pan-y;
    }
}




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

@media (max-width: 768px) {
    .about-section {
        padding-top: 40px;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 50px;
}

.section-sub {
  text-align: center;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 50px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature    -grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(255,140,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    width: 100%;
    max-width: 360px;

    height: 52px;
    padding: 0 1.5rem;

    background: white;
    color: #ff8c00;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    line-height: 1;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (hover: hover) {
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
}

@media (max-width: 480px) {
    .cta-button {
        height: 48px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .cta-button svg {
        width: 18px;
        height: 18px;
    }
}


.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

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

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ff8c00;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff8c00;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    margin-bottom: 1rem;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    color: #ff8c00;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-slider {
        height: 400px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about-section {
        padding: 50px 0;
    }

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

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .features-section {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* =======================
   PAKET & HARGA - MODERN DESIGN
======================= */
.pricing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Pattern */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
  animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.pricing-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.pricing-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ffb700);
  margin: 20px auto 0;
  border-radius: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Modern Glassmorphism Card */
.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

/* Hover Gradient Effect */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c00, #ffb700, #ff8c00);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(255, 140, 0, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.3);
}

/* Featured/Popular Card */
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 183, 0, 0.1));
  border: 2px solid rgba(255, 140, 0, 0.4);
  transform: scale(1.05);
}

.pricing-card.featured::after {
  content: 'POPULER';
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
  letter-spacing: 1px;
}

/* Card Icon/Badge */
.pricing-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.pricing-card:hover::after {
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

/* Speed Badge */
.pricing-card .speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.pricing-card .speed-badge svg {
  width: 18px;
  height: 18px;
}

/* Price Styling */
.price {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.price span {
  display: block;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 10px 0;
  line-height: 1;
}

.price small {
  color: #999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.features li {
  margin: 15px 0;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.features li:hover {
  color: #ff8c00;
  transform: translateX(5px);
}

.features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.features .inactive {
  color: #ccc;
  text-decoration: line-through;
}

.features .inactive::before {
  content: '✕';
  background: #e0e0e0;
  box-shadow: none;
}

/* =======================
   BUTTON HUBUNGI KAMI - MODERN
======================= */
.pricing-card .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 
    0 8px 20px rgba(255, 140, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-card .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.pricing-card .cta-button:hover::before {
  left: 100%;
}

.pricing-card .cta-button:hover {
  background: linear-gradient(135deg, #e67e00, #f0a500);
  transform: translateY(-3px);
  box-shadow: 
    0 15px 35px rgba(255, 140, 0, 0.5),
    0 5px 15px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.pricing-card .cta-button:active {
  transform: translateY(-1px);
  box-shadow: 
    0 8px 20px rgba(255, 140, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Button Icon */
.pricing-card .cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.pricing-card .cta-button:hover svg {
  transform: translateX(5px);
}

/* =======================
   PREVIEW BOX & UPLOAD - MODERN
======================= */
.preview-box {
  width: 100%;
  height: 180px;
  border: 3px dashed #e0e0e0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #999;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.preview-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 183, 0, 0.1));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.preview-box:hover {
  border-color: #ff8c00;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d0 100%);
  transform: scale(1.02);
}

.preview-box:hover::before {
  opacity: 1;
  width: 80px;
  height: 80px;
}

.preview-box img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.preview-box:hover img {
  transform: scale(1.05);
}

.preview-box .upload-icon {
  font-size: 48px;
  color: #ff8c00;
  margin-bottom: 10px;
}

.preview-box .upload-text {
  font-weight: 600;
  color: #666;
}

/* Banner Slot Card */
.banner-slot {
  width: 280px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 140, 0, 0.1);
}

.banner-slot:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(255, 140, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 140, 0, 0.3);
}

/* Upload Label */
.upload-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, #ff8c00, #ffb700);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.upload-label:hover {
  background: linear-gradient(135deg, #e67e00, #f0a500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.upload-label svg {
  width: 18px;
  height: 18px;
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 15px;
  }
  
  .pricing-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .price span {
    font-size: 40px;
  }
  
  .banner-slot {
    width: 100%;
    max-width: 320px;
  }
}

/* =======================
   ANIMATIONS
======================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* Loading Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* POPUP BANNER */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: hidden;
}

.popup-content img {
    width: 100%;
    display: block;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 36px;
    height: 36px;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    border: none;
    border-radius: 50%;

    font-size: 22px;
    line-height: 36px;
    text-align: center;

    cursor: pointer;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* ===========================
   MODERN ORDER FORM STYLES
   =========================== */

/* Hero Section */
.order-hero {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.order-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.order-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.order-hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.order-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Order Section */
.order-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

/* Order Card */
.order-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #000000 0%, #000000 100%);
    border-radius: 24px 24px 0 0;
}

/* Alert Success */
.alert-success {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-left: 4px solid #e68900;
    color: #e68900;
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

/* Form Group */
.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Input Styles */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-group textarea#alamat {
    min-height: 80px;
}

/* Map Container */
#map {
    height: 350px;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

#map:hover {
    border-color: #000000;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.location-btn {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #ffffff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px; /* pill style */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.location-btn::before {
    content: '📍';
    font-size: 1.1rem;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.location-btn:active {
    transform: translateY(0);
}
.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    align-items: flex-start;
}



.location-wrapper input {
    flex: 1;
}


/* Readonly Input (Lokasi) */
#lokasi {
    background: #f7fafc !important;
    color: #4a5568;
    font-size: 0.9rem;
    cursor: not-allowed;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 32px 0;
    padding: 18px;
    background: #fffbf5;
    border-radius: 12px;
    border: 2px solid #fdf4d8;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #000000;
}

.form-check span {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Submit Button */
.cta-button.full {
    display: inline-flex;          /* ⬅️ penting */
    justify-content: center;
    align-items: center;

    width: auto;                   /* ⬅️ hentikan full-width */
    min-width: 280px;
    max-width: 360px;

    margin: 32px auto 0;           /* center horizontal */

    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 999px;

    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.6px;

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
}


.cta-button.full:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.55);
}

.cta-button.full:active {
    transform: translateY(-1px);
}


.cta-button.full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button.full:hover::before {
    left: 100%;
}

.cta-button.full:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgb(255, 132, 0);
}

.cta-button.full:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .order-hero {
        padding: 60px 0 40px;
    }
    
    .order-hero h1 {
        font-size: 2rem;
    }
    
    .order-card {
        padding: 30px 24px;
        border-radius: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #map {
        height: 280px;
    }
    
    .cta-button.full {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .order-hero h1 {
        font-size: 1.75rem;
    }
    
    .order-hero p {
        font-size: 1rem;
    }
    
    .order-card {
        padding: 24px 18px;
    }
    
    .location-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========================================
   ADDITIONAL STYLES FOR IMPROVEMENTS
   COLOR SCHEME: White (#ffffff), Orange (#ff8c00), Black (#000000)
======================================== */

/* Trust Section */
.trust-section {
    background: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff8c00;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 600;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 140, 0, 0.05);
    border-color: #ff8c00;
    transform: translateX(5px);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #ff8c00;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: #000000;
}

/* Speed Test Section */
.speed-test-section {
    background: #ffffff;
    padding: 80px 20px;
}

.speed-test-section .section-title {
    color: #000000 !important;
}

.speed-test-section .section-subtitle {
    color: #000000 !important;
}

.speed-test-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.speedometer {
    position: relative;
    width: 300px;
    height: 180px;
    margin: 0 auto 2rem;
}

.speed-gauge {
    width: 100%;
    height: 100%;
}

.speed-display {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.speed-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ff8c00;
    line-height: 1;
}

.speed-unit {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.speed-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.speed-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
}

.speed-test-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.speed-test-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.5);
}

.speed-test-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.speed-test-btn svg {
    width: 20px;
    height: 20px;
}

.speed-note {
    margin-top: 1.5rem;
    color: #000000;
    font-size: 0.875rem;
}

/* Enhanced Package Cards */
.pricing-card {
    background: #ffffff;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.pricing-card:hover {
    border-color: #ff8c00;
}

.pricing-card.featured {
    position: relative;
    border: 2px solid rgba(255, 140, 0, 0.2);
    background: #ffffff;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.pricing-card.featured::before,
.pricing-card.featured::after {
    display: none !important;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    z-index: 10;
}

.popular-badge svg {
    width: 16px;
    height: 16px;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-header h3 {
    color: #000000;
}

.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.speed-badge svg {
    width: 16px;
    height: 16px;
}

.price-original {
    text-decoration: line-through;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2rem;
    color: #000000;
}

.price-current span {
    color: #ff8c00;
}

.price-period {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.5rem;
}

.savings-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 1rem 0;
    display: inline-block;
}

.features .feature-active {
    color: #000000;
}

.features .feature-active svg {
    color: #22c55e;
}

.features .feature-inactive {
    color: #999999;
    text-decoration: line-through;
}

.features .feature-inactive svg {
    color: #999999;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.package-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-note svg {
    width: 24px;
    height: 24px;
    color: #ff8c00;
    flex-shrink: 0;
}

.package-note p {
    color: #000000;
    margin: 0;
}

/* Coverage Section */
.coverage-section {
    background: #ffffff;
    padding: 80px 20px;
}

.coverage-section .section-title {
    color: #000000;
}

.coverage-section .section-subtitle {
    color: #666666;
}

.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-form-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.coverage-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group label svg {
    width: 16px;
    height: 16px;
    color: #ff8c00;
}

.form-group input,
.form-group select {
    padding: 1rem;
    background: #ffffff;
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff8c00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.coverage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.coverage-btn svg {
    width: 20px;
    height: 20px;
}

.coverage-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.coverage-result h3 {
    color: #22c55e;
    font-size: 1.5rem;
    margin: 0;
}

.coverage-result p {
    color: #666666;
    margin: 0;
}

.result-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.coverage-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #ff8c00;
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.info-card h4 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-card p {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: #000000;
}

.testimonials-section .section-subtitle {
    color: #1d1d1d;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 350px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #ff8c00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #333333;
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ff8c00;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666666;
    font-size: 0.813rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-color: #ff8c00;
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666666;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 20px;
}

.faq-section .section-title {
    color: #000000;
}

.faq-section .section-subtitle {
    color: #666666;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 140, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #ff8c00;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: #2d2d2d;
    font-size: 1.063rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff8c00;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #ff8c00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #515151;
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: #000000;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.faq-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.cta-content h2 {
    color: #ffffff;
}

.cta-content p {
    color: #cccccc;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    white-space: nowrap;

    transition: all 0.3s ease;
}

.cta-icon svg {
    width: 22px;
    height: 22px;
}

.cta-primary {
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-buttons {
        width: 100%;
        padding: 0 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;

        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }

    .cta-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .cta-icon svg {
        width: 18px;
        height: 18px;
    }
}


.cta-secondary {
    background: #25d366;
    color: #ffffff;
}

.cta-secondary:hover {
    background: #20ba5a;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.938rem;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

/* Footer Enhancements */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.footer-badge svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.footer-badge span {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
}

.contact-info li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #ff8c00;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coverage-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-prev {
        left: 10px;
    }
    
    .testimonial-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .speed-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-track {
        gap: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===========================
   HEADER FIX
=========================== */

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
}

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

    display: flex;
    align-items: center;       /* ⬅️ KUNCI UTAMA */
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 48px;              /* ⬅️ WAJIB */
    width: auto;
    display: block;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

/* ===========================
   ABOUT - FEATURE TEXT COLOR
=========================== */

.about-features .feature-item span {
    color: #000000;        /* Oranye SIMTEK */
    font-weight: 600;
    opacity: 1;
}

/* ===========================
   SPEED TEST - TITLE & TEXT
=========================== */

.speed-test-section h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.speed-test-section p {
    color: #cccccc !important;
    font-size: 1rem;
}

/* ===============================
   NORMALISASI PAKET B
   Samakan dengan Paket A & C
================================ */

/* Hilangkan style khusus featured */
.pricing-card.featured {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: none;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Nonaktifkan badge populer & dekorasi tambahan */
.pricing-card.featured::before,
.pricing-card.featured::after {
  display: none !important;
}

/* Samakan hover behavior */
.pricing-card.featured:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(255, 140, 0, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Jika ada badge HTML populer, sembunyikan */
.pricing-card.featured .popular-badge {
  display: none;
}

/* =====================================
   FORCE WARNA TEKS FITUR (CEKLIS)
===================================== */

/* Semua teks di dalam list fitur paket */
.pricing-card li,
.pricing-card li span,
.pricing-card li p {
  color: #000000 !important;
  opacity: 1 !important;
}

/* Jika ada class khusus untuk teks fitur */
.pricing-card .feature,
.pricing-card .feature-text {
  color: #000000 !important;
  opacity: 1 !important;
}

/* =====================================
   FIX WARNA TEKS INFO PROMO
===================================== */

.package-note {
  color: #000000 !important;
  opacity: 1 !important;
}

.package-note p {
  color: #000000 !important;
  opacity: 1 !important;
}

/* Ikon SVG tetap oranye */
.package-note svg {
  color: #ff8c00;
  opacity: 1;
}

/* ===============================
   HAPUS LABEL HEMAT
================================ */
.pricing-card .saving,
.pricing-card .badge-saving,
.pricing-card .discount,
.pricing-card .yearly-saving {
  display: none !important;
}

/* =============================================
   NAVBAR RESPONSIF V2 - FINAL (FIXED)
   - Menu items rata tengah vertikal
   - Teks "Hubungi Kami" warna putih
   ============================================= */

/* =============================================
   NAVBAR RESPONSIF FINAL
   - Desktop: nav-menu dan nav-right TERPISAH
   - Mobile: Semua masuk ke hamburger menu
   ============================================= */

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #555;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* ✅ NAV MENU - Menu Links (Home - FAQ) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: #555;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #ff8c00;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-section {
    padding: 0.5rem 0;
}

.dropdown-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #fff8f0;
    color: #ff8c00;
    padding-left: 2rem;
}

/* ✅ NAV RIGHT - Search, Language, Contact */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Search */
.search-wrapper {
    position: relative;
}

.search-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.search-icon:hover {
    color: #ff8c00;
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: white;
    padding: 0.75rem;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 300px;
    z-index: 1000;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s;
}

.search-input:focus {
    border-color: #ff8c00;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.language-selector:hover {
    background: #f8f9fa;
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-code {
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.active {
    background: #fff8f0;
    color: #ff8c00;
}

.lang-option .flag-icon {
    width: 24px;
    height: 18px;
}

/* Contact Button */
.register-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: white !important;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,140,0,0.25);
}

.register-btn:hover {
    background: linear-gradient(135deg, #e67e00 0%, #ff9500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,140,0,0.4);
}

.register-btn span {
    color: white !important;
}

.register-icon {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
    }

    /* ✅ SEMBUNYIKAN nav-right ASLI di navbar atas */
    .nav-right {
        display: none !important;
    }

    /* ✅ Menu Slide dari Kiri */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1rem 0;
        gap: 0;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        justify-content: center;
    }

    .nav-link::after {
        display: none;
    }

    /* ✅ NAV-RIGHT MOBILE (Clone yang masuk ke menu) */
    .nav-right-mobile {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 0;
        border-top: 2px solid #f0f0f0;
        margin-top: 0.5rem;
    }

    /* Search di Mobile Menu */
    .nav-right-mobile .search-wrapper {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-right-mobile .search-icon {
        display: none;
    }

    .nav-right-mobile .search-box {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        background: transparent;
    }

    .nav-right-mobile .search-input {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Language Selector di Mobile Menu */
    .nav-right-mobile .language-selector {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: center;
        border-bottom: 1px solid #f0f0f0;
        background: transparent;
    }

    .nav-right-mobile .language-selector:hover {
        background: #f8f9fa;
    }

    .nav-right-mobile .language-dropdown {
        position: static;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .nav-right-mobile .language-selector.active .language-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px;
        margin-top: 0.5rem;
    }

    .nav-right-mobile .lang-option {
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    /* Contact Button di Mobile Menu */
    .nav-right-mobile .register-btn {
        width: calc(100% - 3rem);
        margin: 1rem 1.5rem;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-right-mobile .register-btn:hover {
        transform: none;
    }

    /* Dropdown di Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto;
        border-radius: 0;
        padding: 0;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
        background: #f8f9fa;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
    }

    .dropdown-item:hover {
        padding-left: 2.5rem;
    }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .hamburger span {
        width: 22px;
    }
}

/* Mobile Very Small */
@media screen and (max-width: 360px) {
    .navbar {
        padding: 0.75rem 0.75rem;
    }

    .logo-img {
        height: 40px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }

    .register-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    width: 100%;
    max-width: 360px;

    height: 52px;
    padding: 0 1.5rem;

    background: white;
    color: #ff8c00;

    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    border-radius: 12px;
    line-height: 1;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Icon */
.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Variant warna */
.cta-primary {
    background: linear-gradient(135deg, #ff8c00, #ffb700);
    color: #ffffff;
}

/* Hover desktop only */
@media (hover: hover) {
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
}

/* Mobile kecil */
@media (max-width: 480px) {
    .cta-button {
        height: 48px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .cta-button svg {
        width: 18px;
        height: 18px;
    }
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-main {
    max-width: 450px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Google Maps Styling */
.footer-map {
    margin: 20px 0;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.map-header h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #ff8c00;
    text-transform: uppercase;
}

.map-link {
    font-size: 11px;
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s;
}

.map-link:hover {
    color: #6bb3ff;
    text-decoration: underline;
}

.map-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Footer Badge */
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.footer-badge svg {
    width: 18px;
    height: 18px;
    color: #4caf50;
}

/* Footer Columns */
.footer-col h4 {
    color: #ff8c00;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff8c00;
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b0b0b0;
    font-size: 14px;
}

.contact-info svg {
    width: 18px;
    height: 18px;
    color: #ff8c00;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff8c00;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #808080;
    font-size: 13px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #808080;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff8c00;
}

.footer-links span {
    color: #404040;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col-main {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   NAVBAR RESPONSIVE STYLES
======================================== */

/* Base Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu (Hidden by default) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Nav Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: #555;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #ff8c00;
}

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

/* Register Button */
.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.register-icon {
    width: 20px;
    height: 20px;
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   RESPONSIVE BREAKPOINTS - NAVBAR
======================================== */

/* Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 4%;
    }

    .logo-img {
        height: 38px;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
    }

    /* Side Menu */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 0.95rem;
        color: #333;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item:active .nav-link {
        color: #ff8c00;
        background: rgba(255, 140, 0, 0.05);
        padding-left: 10px;
    }

    .register-btn {
        margin-top: 20px;
        justify-content: center;
        padding: 14px 24px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 4%;
    }

    .logo-img {
        height: 35px;
    }

    .nav-wrapper {
        width: 260px;
        padding: 70px 25px 25px;
    }

    .hamburger-line {
        width: 22px;
    }
}

/* ========================================
   NAVBAR STYLES - COMPLETE
======================================== */

/* Base Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
}

.logo-img {
    height: 45px;
    width: auto;
}

/* Hamburger - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #ff8c00;
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #ff8c00;
}

/* Nav Wrapper - Desktop */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Nav Menu - Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: #555;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #ff8c00;
}

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

/* Register Button */
.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    white-space: nowrap;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.register-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* ========================================
   RESPONSIVE - MOBILE NAVBAR
======================================== */

@media (max-width: 768px) {
    /* Navbar adjustments */
    .navbar {
        padding: 12px 4%;
    }

    .logo-img {
        height: 40px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile Side Menu */
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 80px 0 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-wrapper.active {
        right: 0;
    }

    /* Mobile menu layout */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: block;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 18px 30px;
        font-size: 1rem;
        color: #333;
        display: block;
        width: 100%;
        position: relative;
    }

    /* Remove underline effect on mobile */
    .nav-link::after {
        display: none;
    }

    /* Mobile active/hover state */
    .nav-link:active,
    .nav-link:hover {
        color: #ff8c00;
        background: rgba(255, 140, 0, 0.05);
    }

    /* Register button mobile */
    .register-btn {
        margin: 20px 30px 0;
        padding: 15px 24px;
        font-size: 1rem;
        justify-content: center;
        width: calc(100% - 60px);
    }

    .register-icon {
        width: 22px;
        height: 22px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 4%;
    }

    .logo-img {
        height: 35px;
    }

    .nav-wrapper {
        width: 80%;
        max-width: 280px;
    }

    .nav-link {
        padding: 16px 25px;
        font-size: 0.95rem;
    }

    .register-btn {
        margin: 15px 25px 0;
        padding: 14px 20px;
        font-size: 0.95rem;
        width: calc(100% - 50px);
    }
}

/* ========================================
   ORDER FORM RESPONSIVE
======================================== */

/* Global Reset */
* {
    box-sizing: border-box;
}

body {
    padding-top: 70px;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Add spacing for fixed navbar */
.order-hero,
.order-section {
    margin-top: 75px;
}

.order-hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.order-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.order-hero p {
    font-size: 1.1rem;
    color: #ccc;
}

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

.order-section {
    padding: 40px 20px 80px;
}

.order-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
}

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

/* Map */
#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
}

.location-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.location-btn {
    padding: 12px 20px;
    background: #ff9900;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.location-btn:hover {
    background: #ff8c00;
}

#lokasi {
    flex: 1;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-check span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Submit Button */
.cta-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button.full {
    width: 100%;
}

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

.cta-button:active {
    transform: translateY(0);
}

/* Alert */
.alert-success {
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ========================================
   MOBILE RESPONSIVE - ORDER FORM
======================================== */

@media (max-width: 768px) {
    .order-hero {
        padding: 40px 15px;
        margin-top: 65px;
    }

    .order-hero h1 {
        font-size: 1.75rem;
    }

    .order-hero p {
        font-size: 0.95rem;
    }

    .order-section {
        padding: 30px 10px 60px;
        margin-top: 0;
    }

    .order-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    #map {
        height: 300px;
    }

    .location-wrapper {
        flex-direction: column;
    }

    .location-btn {
        width: 100%;
    }

    .cta-button {
        padding: 14px;
        font-size: 1rem;
    }

    .form-check {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .order-hero {
        padding: 30px 10px;
        margin-top: 60px;
    }

    .order-hero h1 {
        font-size: 1.5rem;
    }

    .order-hero p {
        font-size: 0.85rem;
    }

    .order-card {
        padding: 20px 15px;
    }

    #map {
        height: 250px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

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

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .register-btn-desktop {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .register-btn-desktop:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        .register-icon {
            width: 20px;
            height: 20px;
        }

        .nav-item-mobile {
            display: none;
        }

        /* Hero Section Styles */
        .hero-slider {
            margin-top: 80px; /* Offset untuk navbar fixed */
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s;
            z-index: 10;
        }

        .slider-nav:hover {
            background: white;
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        /* Features Section */
        .features {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            stroke: white;
            fill: none;
        }

        .feature-content h3 {
            color: #ff6b35;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            color: #333;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .register-btn-desktop {
                display: none;
            }

            .nav-item-mobile {
                display: block;
                width: 100%;
            }

            .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: 0;
            }

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

            .nav-item {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-link {
                font-size: 1.1rem;
            }

            .register-btn-mobile {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                padding: 1rem 2rem;
                margin: 1rem auto 0;
                width: calc(100% - 4rem);
                max-width: 250px;
                background: linear-gradient(135deg, #ff6b35, #f7931e);
                color: white !important;
                text-decoration: none;
                border-radius: 25px;
                font-weight: 600;
                transition: transform 0.3s, box-shadow 0.3s;
            }

            .register-btn-mobile span {
                color: white !important;
            }

            .register-btn-mobile svg {
                stroke: white;
            }

            .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);
            }

            /* Mobile Hero */
            .hero-slider {
                height: 300px;
                margin-top: 60px;
            }

            .slider-nav {
                padding: 0.5rem;
                font-size: 1rem;
            }

            .slider-nav.prev {
                left: 5px;
            }

            .slider-nav.next {
                right: 5px;
            }

            /* Mobile Features */
            .features {
                padding: 2rem 1rem;
            }

            .feature-card {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .feature-content h3 {
                font-size: 1.5rem;
            }

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

        @media (max-width: 480px) {
            .navbar {
                padding: 0.75rem 1rem;
            }

            .logo-img {
                height: 30px;
            }

            .hero-slider {
                height: 250px;
            }

            .feature-content h3 {
                font-size: 1.3rem;
            }
        }
        
/* POPUP BANNER - RESPONSIVE */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px; /* Tambahkan padding untuk mobile */
}

.popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 90%; /* Ubah dari 800px ke 90% */
    max-height: 85vh; /* Batasi tinggi */
    width: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain; /* Jaga proporsi gambar */
    display: block;
    border-radius: 16px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
    .popup-content {
        max-width: 85%;
        max-height: 80vh;
    }
    
    .popup-content img {
        max-height: 80vh;
    }
}

/* RESPONSIVE - MOBILE LANDSCAPE & PORTRAIT */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 15px;
    }
    
    .popup-content {
        max-width: 95%;
        max-height: 75vh;
        border-radius: 12px;
    }
    
    .popup-content img {
        max-height: 75vh;
        border-radius: 12px;
    }
    
    .popup-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        line-height: 32px;
        top: 8px;
        right: 8px;
    }
}


@media (max-width: 480px) {
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-content {
        max-width: 98%;
        max-height: 70vh;
        border-radius: 10px;
    }
    
    .popup-content img {
        max-height: 70vh;
        border-radius: 10px;
    }
    
    .popup-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
        line-height: 28px;
        top: 5px;
        right: 5px;
    }
}


@media (max-width: 360px) {
    .popup-content {
        max-width: 100%;
        max-height: 65vh;
    }
    
    .popup-content img {
        max-height: 65vh;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .popup-content {
        max-height: 90vh;
    }
    
    .popup-content img {
        max-height: 90vh;
    }
}


/* ========================================
   GLOBAL BODY PADDING (untuk offset navbar)
======================================== */

body {
    padding-top: 70px; /* Height navbar desktop */
}

/* ========================================
   HERO SLIDER - TANPA MARGIN TOP
======================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
    background: #ffffff;
    margin-top: 0; /* ⬅️ HAPUS margin-top */
}

/* Slide Container */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Image - Cover full container */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================
   NAVIGATION ARROWS
======================================== */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff8c00;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* ========================================
   DOT CONTROLS
======================================== */

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #ff8c00;
    transform: scale(1.3);
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

/* ========================================
   RESPONSIVE - BODY PADDING
======================================== */

@media (max-width: 1024px) {
    body {
        padding-top: 65px; /* Tablet navbar height */
    }

    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .slider-nav.prev {
        left: 20px;
    }

    .slider-nav.next {
        right: 20px;
    }

    .slider-controls {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px !important; /* ⬅️ Mobile navbar height */
    }

    .hero-slider {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background: #ffffff !important;
    }

    .slide {
        position: relative;
        width: 100%;
        height: auto;
    }

    .slide:not(.active) {
        display: none;
    }

    /* Image - Full width, auto height */
    .slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: top !important; /* ⬅️ Align ke atas */
        display: block;
        max-width: 100%;
    }

    /* Hide arrows on mobile */
    .slider-nav {
        display: none;
    }

    .slider-controls {
        position: absolute;
        bottom: 20px;
        gap: 10px;
        background: rgba(0, 0, 0, 0.4);
        padding: 8px 16px;
        border-radius: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.7);
    }

    .slider-dot.active {
        background: #ff8c00;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px !important; /* ⬅️ Small mobile navbar */
    }

    .slide img {
        width: 100% !important;
        height: auto !important;
    }

    .slider-controls {
        bottom: 15px;
        gap: 8px;
        padding: 6px 12px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   LANDSCAPE MODE
======================================== */

@media (max-height: 600px) and (orientation: landscape) {
    body {
        padding-top: 50px;
    }

    .hero-slider {
        height: 100vh !important;
    }

    .slide {
        position: absolute;
        height: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .slider-controls {
        bottom: 15px;
    }
}

/* ========================================
   ULTRA WIDE SCREEN
======================================== */

@media (min-width: 1920px) {
    body {
        padding-top: 80px;
    }

    .hero-slider {
        height: 100vh;
        max-height: 1200px;
    }

    .slider-nav {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .slider-nav.prev {
        left: 50px;
    }

    .slider-nav.next {
        right: 50px;
    }

    .slider-controls {
        bottom: 50px;
        gap: 15px;
    }

    .slider-dot {
        width: 14px;
        height: 14px;
    }
}

/* ========================================
   LOADING STATE
======================================== */

.hero-slider.loading {
    background: #f5f5f5;
}

.hero-slider.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 140, 0, 0.3);
    border-top-color: #ff8c00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}