@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
    --primary: #0ff;
    --secondary: #e67e22;
    --bg-dark: #111;
    --bg-dark-alt: #1a1f2c;
    --card-bg: rgba(255,255,255,0.05);
    --glass-blur: 10px;
    --font-tech: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}  /* Poppins for body text, Orbitron applied selectively */

body {
    background: radial-gradient(circle at top left, #1a1f2c 0%, #111 100%);
    color: #fff;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    font-size: 15px; /* Sedikit lebih kecil dari desktop */
    /* space top because header is fixed to avoid content hiding */
    padding-top: 100px; /* adjust if header height changes */
    position: relative;
    overflow-x: hidden;
}

/* removed heavy rotating background for performance */


/* Smooth scrolling fallback */
html {
    scroll-behavior: smooth;
    /* offset anchors for fixed header */
    scroll-padding-top: 100px;
    scroll-padding-bottom: 100px;
}


/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17,17,25,0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--primary);
    padding: 2rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Optional: add shadow for better visibility */
    font-family: var(--font-tech);
}  /* glassy tech header */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    color: #d35400;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.2s;
}
nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
nav ul li a:hover {
    color: var(--primary);
}
nav ul li a:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #e67e22;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 2rem 5% 5rem 5%;
    position: relative;
    z-index: 1;
}

/* animated entrance (optional) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.7; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 18px rgba(243,156,18,0.22); }
    50% { box-shadow: 0 0 38px rgba(243,156,18,0.4); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(10px) rotate(-2deg); }
    to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(243,156,18,0.5); }
    50% { text-shadow: 0 0 20px rgba(243,156,18,0.8), 0 0 30px rgba(243,156,18,0.4); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-text h1,
.hero-text h3,
.hero-text p,
.cta-buttons a {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}
.hero-text h1 { animation-delay: 0.3s; font-family: var(--font-tech); animation: textReveal 1s ease forwards 0.3s; }
.hero-text p { animation-delay: 0.6s; }
.cta-buttons a { animation-delay: 0.9s; }

.hero {
    padding: 2rem 5% 5rem 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 65%);
    filter: blur(20px);
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-ornaments .orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.75;
    filter: blur(0.8px);
    animation: floatOrb 7s ease-in-out infinite;
    box-shadow: 0 0 15px currentColor;
}

.hero-ornaments .orb1 {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.28);
    top: 25%;
    left: 12%;
    animation-duration: 6.5s;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.hero-ornaments .orb2 {
    width: 32px;
    height: 32px;
    background: rgba(243, 156, 18, 0.2);
    top: 45%;
    right: 18%;
    animation-duration: 7.5s;
    box-shadow: 0 0 30px rgba(243,156,18,0.4);
}

.hero-ornaments .orb3 {
    width: 18px;
    height: 18px;
    background: rgba(46, 204, 113, 0.22);
    top: 70%;
    left: 25%;
    animation-duration: 6.2s;
    box-shadow: 0 0 20px rgba(46,204,113,0.3);
}

.hero-ornaments .orb4 {
    width: 24px;
    height: 24px;
    background: rgba(52, 152, 219, 0.18);
    top: 18%;
    right: 32%;
    animation-duration: 8s;
    box-shadow: 0 0 25px rgba(52,152,219,0.3);
}

.hero-mockup,
.hero-trust,
.trust-section,
.pricing,
.contact-section,
footer {
    animation: slideInUp 0.9s ease forwards;
}

.hero-trust {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: 1s;
}

.hero-trust,
.hero-mockup {
    animation-delay: 1s;
}

.trust-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.trust-pill:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(243,156,18,0.15);
    border-color: rgba(243,156,18,0.4);
    box-shadow: 0 15px 40px rgba(243,156,18,0.25);
}

.hero-mockup img {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, filter 0.5s ease;
    filter: brightness(1);
}

.hero-mockup img:hover {
    transform: scale(1.06) rotate(-0.8deg);
    box-shadow: 0 20px 60px rgba(243,156,18,0.3), inset 0 0 20px rgba(243,156,18,0.1);
    filter: brightness(1.1);
}

.cta-buttons a {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cta-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-buttons a:hover::before {
    left: 100%;
}

.cta-buttons a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-primary {
    animation: pulseGlow 2.5s ease-in-out infinite;
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.trust-card,
.price-card {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.trust-card::before,
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.trust-card:hover::before,
.price-card:hover::before {
    left: 100%;
}

.trust-card:nth-child(1),
.price-card:nth-child(1) {
    animation-delay: 0.5s;
}

.trust-card:nth-child(2),
.price-card:nth-child(2) {
    animation-delay: 0.7s;
}

.trust-card:nth-child(3),
.price-card:nth-child(3) {
    animation-delay: 0.9s;
}

.trust-card:nth-child(4) {
    animation-delay: 1.1s;
}

.price-card:hover,
.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.08);
}

.trust-card:hover h3,
.price-card:hover h3 {
    color: #ff6b35;
    animation: glow 0.6s ease infinite;
}

/* reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text h1 span {
    color: #ffffff;
    opacity: 0.9;
}

.tagline {
    color: #f39c12;
    margin-bottom: 2rem;
}

/* Tablet Mockup */
.hero-mockup .tablet {
    background: #333;
    padding: 10px;
    border-radius: 20px;
    border: 4px solid #444;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-mockup img {
    width: 100%;
    border-radius: 10px;
    display: block;
    max-width: 100%;
    height: auto; /* Memastikan rasio aspek gambar terjaga */
    margin: 0 auto; /* Tengah-kan gambar jika ukurannya lebih kecil dari 100% */
    box-shadow: 0 0 20px var(--primary);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-mockup img:hover {
    transform: scale(1.04) rotate(-0.4deg);
}

.hero-trust {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.trust-section {
    padding: 70px 5%;
    background: linear-gradient(180deg, rgba(17,17,25,0.95) 0%, #10121b 100%);
}

.trust-heading {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.trust-heading h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #f39c12;
}

.trust-heading p {
    color: rgba(255,255,255,0.8);
    max-width: 680px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.trust-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ffffff;
}

.trust-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 8px var(--primary));
}

/* Process/Timeline Section */
.process-section {
    padding: 90px 5%;
    background: linear-gradient(180deg, #111 0%, #1a1f2c 100%);
}

.process-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.process-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-heading p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(243,156,18,0.3) 0%, rgba(243,156,18,0.8) 50%, rgba(243,156,18,0.3) 100%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(5) { animation-delay: 0.7s; }
.timeline-item:nth-child(7) { animation-delay: 0.9s; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-marker {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(243,156,18,0.4), rgba(243,156,18,0.1));
    border: 2px solid #f39c12;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(243,156,18,0.25), inset 0 0 10px rgba(243,156,18,0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.timeline-marker:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 50px rgba(243,156,18,0.6), 0 10px 30px rgba(243,156,18,0.3), inset 0 0 15px rgba(243,156,18,0.2);
    border-color: #ff6b00;
    background: radial-gradient(circle at 30% 30%, rgba(243,156,18,0.6), rgba(243,156,18,0.25));
}

.step-number {
    position: absolute;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    font-family: var(--font-tech);
    transition: all 0.3s ease;
}

.timeline-marker:hover .step-number {
    transform: scale(1.2);
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255,107,53,0.5);
}

.step-icon {
    font-size: 2.5rem;
    position: absolute;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.timeline-marker:hover .step-icon {
    animation: bounce 1s ease-in-out infinite;
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(243,156,18,0.8));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.timeline-content {
    flex: 1;
    padding: 25px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243,156,18,0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-content:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(243,156,18,0.3);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2), 0 0 25px rgba(243,156,18,0.15);
    transform: translateY(-3px);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #f39c12;
    font-size: 1.35rem;
    transition: all 0.3s ease;
}

.timeline-content:hover h3 {
    color: #ff6b35;
    transform: translateX(3px);
}

.timeline-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.timeline-content:hover p {
    color: rgba(255,255,255,0.95);
}

.timeline-duration {
    display: inline-block;
    background: rgba(243,156,18,0.15);
    color: #f39c12;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline-connector {
    height: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(2) .timeline-connector { animation-delay: 0.4s; }
.timeline-item:nth-child(4) .timeline-connector { animation-delay: 0.6s; }
.timeline-item:nth-child(6) .timeline-connector { animation-delay: 0.8s; }

/* Call to Action Area */
.hero-cta h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px var(--primary);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 15px 35px rgba(243,156,18,0.4);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, var(--primary) 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: top 0.5s ease;
}

.btn-whatsapp:hover::before {
    top: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp span {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.btn-whatsapp:hover span {
    animation: bounce 1s ease-in-out infinite;
}

/* WhatsApp Button Small (di pricing card) */
.btn-whatsapp-small {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, var(--primary) 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 10px;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-small::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: top 0.5s ease;
}

.btn-whatsapp-small:hover::before {
    top: 100%;
}

.btn-whatsapp-small:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Trial Button */
.btn-trial {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3 0%, var(--primary) 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 10px;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-trial::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: top 0.5s ease;
}

.btn-trial:hover::before {
    top: 100%;
}

.btn-trial:hover {
    background: linear-gradient(135deg, #1976D2 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.5);
}

/* WhatsApp Link di Footer */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: 0.3s;
}

.testimonial {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #111;
    padding: 40px 5%;
    width: 100%;
    font-family: var(--font-tech);
    box-shadow: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-section {
    text-align: left;
    flex: 1 1 200px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 8px;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.whatsapp-icon {
    background: #25D366 !important;
    font-size: 1.2rem;
}

.whatsapp-icon:hover {
    background: #1fc65d !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Section Umum */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-tech);
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

/* Overview Section */
.overview-section {
    padding: 80px 5%;
    background: #1e2433;
    position: relative;
    z-index: 1;
}

.overview-header {
    text-align: center;
    margin-bottom: 50px;
}

.overview-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.overview-feature {
    background: #262d3d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.overview-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.overview-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.overview-feature p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.restaurant-info {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-box {
    background: linear-gradient(135deg, rgba(230,126,34,0.1) 0%, rgba(0,255,255,0.05) 100%);
    border-left: 4px solid var(--secondary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-box h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-tech);
}

.info-box p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bottom call-to-action bar */
.cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: #111;
    padding: 10px 5%;
    text-align: center;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-bar p {
    margin: 0;
    font-size: 0.95rem;
}
.cta-bar a {
    color: #111;
    text-decoration: none;
    font-weight: bold;
    margin-left: 8px;
    animation: pulse 1.5s infinite;
}
.cta-bar button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #111;
    font-size: 1.4rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
}

.cta-bar button:hover {
    background: rgba(0,0,0,0.1);
    transform: translateY(-50%) scale(1.2) rotate(90deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

h1, h2, h3, h4 {
    font-family: var(--font-tech);
}
/* Pricing Section */
.pricing {
    padding: 80px 5%;
    background: #1e2433;
    font-family: var(--font-tech);
}

.price-card {
    background: #262d3d;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #333;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(243,156,18,0.2), 0 0 30px rgba(243,156,18,0.1);
    border-color: rgba(243,156,18,0.3);
    background: linear-gradient(135deg, #262d3d 0%, #2a314a 100%);
}

.price-card:hover h3 {
    color: #ff6b35;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: #262d3d;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #333;
    position: relative;
    overflow: visible;
    margin-top: 15px;
}

.price-card.featured {
    border: 2px solid #e67e22;
    transform: scale(1.05);
    margin-top: 25px;
}

.badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e67e22, #ff6b35);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    letter-spacing: 0.5px;
    white-space: nowrap;
}


.original-price {
    font-size: 1.2rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.discount-badge {
    background-color: #e74c3c; /* Merah cerah untuk diskon */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.price {
    font-size: 3rem; /* Lebih besar untuk harga diskon */
    font-weight: 700;
    color: #2ecc71; /* Warna hijau untuk harga diskon */
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #aaa;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.5);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #1a1f2c;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #262d3d;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    background: #262d3d;
    border: 2px solid #444;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: inherit;
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

input:focus::placeholder, textarea:focus::placeholder {
    color: rgba(255,255,255,0.3);
}

input:hover, select:hover, textarea:hover {
    border-color: rgba(243,156,18,0.4);
    background: #2a3140;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    background: #2d3445;
    box-shadow: 0 0 20px rgba(243,156,18,0.3), inset 0 0 10px rgba(243,156,18,0.05);
    transform: translateY(-2px);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-form 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.6s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:active {
    transform: scale(0.98);
}

.form-success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 2px solid rgba(46, 204, 113, 0.4);
    padding: 15px;
    border-radius: 8px;
    animation: slideInUp 0.5s ease, pulseGlow 2s ease-in-out infinite;
    animation-delay: 0s, 0.5s;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    footer {
        padding: 30px 5%;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 8%;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: left !important;
        gap: 20px;
        padding-left: 80px;
    }

    .timeline-marker {
        position: absolute;
        left: -50px;
        width: 80px;
        height: 80px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-number {
        font-size: 1.4rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .cta-buttons {
        justify-content: center;
        gap: 8px;
    }
    
    .btn-whatsapp {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* --- Perbaikan Responsive untuk Tampilan Ponsel (Lanjutan) --- */

    /* Menghilangkan padding dan margin pada body untuk memastikan konten mencapai tepi layar */
    body {
        padding: 0;
        margin: 0;
        /* Menyesuaikan ukuran font dasar untuk perangkat kecil */
        font-size: 15px; /* Sedikit lebih kecil dari desktop */
    }

    /* Memastikan semua section mengambil lebar penuh dan memiliki padding horizontal */
    section {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        padding-top: 40px; /* Menambah padding vertikal antar section */
        padding-bottom: 40px;
    }

    /* Memastikan container spesifik juga mengambil lebar penuh */
    .pricing-container,
    .contact-section {
        width: 100%;
        max-width: 100%;
        /* Pastikan padding sudah diatur oleh elemen `section` induk atau `container` umum */
    }

    /* Jika ada kelas .container umum yang digunakan untuk membatasi lebar di desktop,
       pastikan juga disesuaikan untuk mobile */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    /* Penyesuaian ukuran font untuk heading */
    h1 {
        font-size: 2.5rem; /* Lebih kecil dari desktop */
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Membuat gambar responsif */
    img {
        max-width: 100%;
        height: auto; /* Memastikan rasio aspek gambar terjaga */
        display: block; /* Menghilangkan spasi ekstra di bawah gambar */
        margin: 0 auto; /* Tengah-kan gambar jika ukurannya lebih kecil dari 100% */
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    /* Penyesuaian umum untuk elemen flexbox/grid agar menumpuk secara vertikal */
    /* Tambahkan kelas spesifik Anda di sini jika ada tata letak yang menggunakan flex/grid */
    .flex-group, .grid-layout { /* Contoh: ganti dengan kelas yang Anda gunakan */
        flex-direction: column;
        gap: 20px; /* Menambah jarak antar item saat menumpuk */
    }

    /* Penyesuaian untuk tombol atau elemen interaktif lain */
    .btn { /* Contoh: jika ada kelas .btn umum untuk tombol */
        padding: 12px 25px; /* Sedikit lebih kecil atau disesuaikan */
        font-size: 1rem;
        width: 100%; /* Tombol mungkin lebih baik mengambil lebar penuh pada mobile */
        max-width: 250px; /* Batasi lebar maksimal agar tidak terlalu besar */
        box-sizing: border-box;
    }

    /* Mengurangi margin vertikal antar elemen untuk tampilan yang lebih ringkas */
    h1, h2, h3, h4, p, ul, ol, .section-description {
        margin-bottom: 15px; /* Jarak bawah yang lebih ringkas */
    }

    /* Pastikan header dan navigasi juga responsif dengan baik */
    .header .nav-menu {
        /* ...pastikan menu burger atau navigasi mobile sudah berfungsi dengan baik... */
        /* Contoh: jika menu berubah menjadi tumpukan */
        flex-direction: column;
        align-items: center;
    }
    .header .nav-item {
        margin: 10px 0; /* Jarak antar item navigasi */
    }

    /* Contoh: jika ada elemen card (misal: untuk pricing atau fitur) */
    .card {
        margin-bottom: 25px; /* Jarak antar card */
    }

    /* Pastikan padding untuk cta-buttons di media query sebelumnya sudah cukup */
    .cta-buttons {
        flex-direction: column;
        gap: 15px; /* Jarak antar tombol CTA saat menumpuk */
        align-items: center;
    }
}