/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section scroll margin untuk smooth scroll */
section[id] {
    scroll-margin-top: 100px;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

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

.nav-link:hover {
    color: #8b5cf6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.login-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.login-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.register-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 0.5rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(140, 90, 246, 0.15);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.register-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(140, 90, 246, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1.5rem;
    z-index: 1100;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    z-index: 1050;
    transition: opacity 0.3s;
    opacity: 0;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* HERO SECTION BACKGROUND GAMBAR (PASTIKAN MENIMPA ATURAN LAIN) */
.hero {
  position: relative !important;
  background: url('Homepage1.jpeg') center center/cover no-repeat, linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%) !important;
  min-height: 480px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(120,72,255,0.65) 0%, rgba(120,72,255,0.35) 100%);
  z-index: 2;
}
.hero-container, .hero-content, .hero-title, .hero-subtitle, .hero-description {
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  .hero {
    min-height: 340px;
    padding: 40px 0 20px 0;
  }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #ec4899;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #db2777 0%, #ea580c 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

/* Dashboard Preview */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

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

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; }

.preview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.preview-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: #1f2937;
}

.preview-card i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.preview-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.preview-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

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

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.about-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    opacity: 0.9;
    line-height: 1.6;
}



/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    section, .footer {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .section-header h2, .about-text h2, .contact .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .section-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .features-grid, .about-content, .contact-content, .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .feature-card, .about-card, .contact-item {
        padding: 1.2rem 1rem;
        margin-bottom: 1.2rem;
    }
    .about-stats {
        gap: 1.2rem;
    }
    .contact-form form {
        width: 100%;
        padding: 0.5rem 0;
    }
    .form-group input, .form-group textarea {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 1rem;
        margin-bottom: 1rem;
    }
    .footer-content {
        gap: 2rem;
        text-align: center;
    }
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    .footer-section ul li, .footer-bottom p, .footer-links a {
        font-size: 0.98rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }
    /* Panel menu mobile: gap besar antar item, tombol besar, menu rata tengah */
    .nav-menu.active, .nav-actions.active {
        gap: 1.5rem;
        align-items: center;
    }
    .nav-link {
        font-size: 1.18rem;
        padding: 1rem 0;
    }
    .nav-actions .login-btn, .nav-actions .register-btn {
        font-size: 1.22rem;
        padding: 1.1rem 0;
        margin: 0.8rem auto;
        max-width: 340px;
    }
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }
    .nav-logo {
        flex: 1;
    }
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1201;
    }
    .nav-menu,
    .nav-actions {
        position: fixed;
        left: 0;
        top: -100vh;
        width: 100vw;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        padding: 2.5rem 1rem 1.5rem 1rem;
        box-shadow: 0 10px 27px rgba(0,0,0,0.08);
        z-index: 1200;
        transition: top 0.3s;
        display: flex;
    }
    .nav-menu.active,
    .nav-actions.active {
        top: 60px;
    }
    .nav-menu {
        margin-bottom: 0;
        display: flex;
    }
    .nav-actions {
        display: flex;
        gap: 0.7rem;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background: none;
        position: static;
        width: 100vw;
    }
    .nav-menu:not(.active),
    .nav-actions:not(.active) {
        top: -100vh;
    }
    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
        color: #333;
        padding: 0.7rem 0;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: background 0.2s;
    }
    .nav-link:active,
    .nav-link:hover {
        background: #f3f4f6;
        color: #8b5cf6;
    }
    .nav-actions .login-btn,
    .nav-actions .register-btn {
        width: 100%;
        max-width: 320px;
        margin: 0.7rem auto;
        text-align: center;
        font-size: 1.18rem;
        padding: 1rem 0;
        font-weight: 700;
        letter-spacing: 0.5px;
        border-radius: 30px;
        box-shadow: 0 4px 16px rgba(140, 90, 246, 0.10);
        display: block;
    }
    .nav-menu.active + .nav-actions.active {
        margin-top: 1.2rem;
    }
    /* Sembunyikan nav-menu/nav-actions di header, tampilkan hanya di panel */
    .nav-menu,
    .nav-actions {
        display: none;
    }
    .nav-menu.active,
    .nav-actions.active {
        display: flex;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .nav-menu {
        margin-bottom: 0.5rem;
    }
    .nav-actions {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

.feature-card,
.pricing-card,
.about-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

/* Drawer Menu Styles */
.drawer-menu {
    position: fixed;
    top: 0;
    left: -80vw;
    width: 80vw;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 24px rgba(99,102,241,0.10);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 48px 24px 24px 24px;
    transition: left 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.3s;
    gap: 32px;
}
.drawer-menu.active {
    left: 0;
}
.drawer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
    padding: 0;
}
.drawer-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.drawer-nav .nav-link:active,
.drawer-nav .nav-link:hover {
    background: #f3e8ff;
    color: #8b5cf6;
}
.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.drawer-actions .login-btn,
.drawer-actions .register-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-radius: 32px;
    box-shadow: 0 2px 12px rgba(140,90,246,0.10);
    text-align: center;
}
@media (min-width: 769px) {
    .drawer-menu { display: none !important; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-actions, .hamburger, .nav-overlay { display: none !important; }
    .drawer-menu { display: flex; }
} 

/* Highlight menu aktif */
.nav-link.active, .drawer-nav .nav-link.active {
    color: #8b5cf6;
    font-weight: 700;
    background: #f3e8ff;
    border-radius: 8px;
}

/* Efek hover/klik pada menu */
.nav-link:hover, .drawer-nav .nav-link:hover {
    background: #ede9fe;
    color: #8b5cf6;
    transition: background 0.2s, color 0.2s;
}

/* Drawer shadow dan transisi */
.drawer-menu {
    box-shadow: 2px 0 32px 4px rgba(139,92,246,0.10);
    transition: left 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.3s;
}
.drawer-menu.active {
    box-shadow: 8px 0 32px 8px rgba(139,92,246,0.13);
}

/* Icon nav align dan spacing */
.nav-link i {
    margin-right: 10px;
    font-size: 1.1em;
    vertical-align: middle;
    pointer-events: none;
}

/* Logo pointer */
.nav-logo {
    cursor: pointer;
} 

/* Tambahan styling untuk foto di section tentang */
.about-photo {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .about-image {
    margin-top: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-photo {
    max-width: 100%;
    margin-bottom: 16px;
  }
} 

/* Hero Section Background Responsive & Text Box */
.hero {
  position: relative !important;
  background: url('Homepage1.jpeg') center center/cover no-repeat, linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%) !important;
  min-height: 520px;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 64px 0 64px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(120,72,255,0.65) 0%, rgba(120,72,255,0.35) 100%);
  z-index: 2;
}
.hero-container, .hero-content, .hero-title, .hero-subtitle, .hero-description {
  position: relative;
  z-index: 3;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
/* Hero Section Layout Flexbox dan Kotak Putih Rapi */
.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 48px auto 48px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 520px;
  position: relative;
  z-index: 3;
}
.hero-text-box {
  margin: 100px auto 40px auto;
  text-align: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  padding: 80px 80px 48px 80px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(120,72,255,0.10);
  background: rgba(255,255,255,0.92);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-image {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
@media (max-width: 900px) {
  .hero {
    min-height: 340px;
    padding: 24px 0 24px 0;
  }
  .hero-container {
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    min-height: 340px;
    margin: 16px 0 16px 0;
  }
  .hero-text-box {
    max-width: 100%;
    width: 100%;
    margin: 48px 0 16px 0;
    padding: 40px 8px 18px 8px;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  .hero-title {
    margin-bottom: 10px;
  }
  .hero-subtitle {
    margin-bottom: 8px;
  }
} 

/* Hero text box rata tengah dan responsif */
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Hero text box persegi panjang horizontal */
.hero-text-box {
  margin: 40px auto 40px auto;
  text-align: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  padding: 40px 64px 40px 64px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(120,72,255,0.10);
  background: rgba(255,255,255,0.92);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-title {
  margin-bottom: 16px;
}
.hero-subtitle {
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .hero-text-box {
    max-width: 100%;
    width: 100%;
    margin: 24px 0 16px 0;
    padding: 18px 8px;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  .hero-title {
    margin-bottom: 10px;
  }
  .hero-subtitle {
    margin-bottom: 8px;
  }
} 