/* ============================================
   CSS Reset & Variables
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Palette - Blue */
    --primary: #1565C0;
    --primary-light: #42A5F5;
    --primary-dark: #0D47A1;
    --primary-glow: rgba(21, 101, 192, 0.3);

    /* Accent - Orange/Yellow (CTA) */
    --accent: #F5A623;
    --accent-light: #FFCA28;
    --accent-dark: #E8950A;

    /* Solid Colors (no heavy gradients) */
    --gradient-primary: #1565C0;
    --gradient-hero: #ffffff;
    --gradient-card: #ffffff;
    --gradient-text: #1565C0;
    --gradient-cta: #F5A623;

    /* Neutrals */
    --bg-dark: #f8fafc;
    --bg-section: #ffffff;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-muted: #7a8a9e;
    --text-white: #ffffff;
    --border-color: #dce3ed;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(21, 101, 192, 0.15);

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   Page Transition Overlay
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    background: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition.fade-in {
    opacity: 1;
    animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
    from { opacity: 1; }
    to { opacity: 0; }
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    transition: color var(--transition-normal);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(21, 101, 192, 0.06);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(21, 101, 192, 0.15);
    border-radius: var(--radius-full);
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(21, 101, 192, 0.08);
    border: 1px solid rgba(21, 101, 192, 0.15);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

.hero-scroll {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-glass {
    background: rgba(21, 101, 192, 0.08);
    color: var(--primary);
    border: 1px solid rgba(21, 101, 192, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(21, 101, 192, 0.15);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: var(--section-padding);
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES GRID (Tentang Section)
   ============================================ */
.tentang {
    background: var(--bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(21, 101, 192, 0.08);
    font-size: 1.6rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   PRICING GRID (Paket Section)
   ============================================ */
.paket {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-grid.two-cols {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}





.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}



.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.pricing-card .pricing-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-card .pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Pricing Tiers */
.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.tier-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.tier-item:hover {
    background: #eef2ff;
    border-color: var(--primary);
}





.tier-meetings {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tier-meetings i {
    color: var(--primary);
    font-size: 0.85rem;
}

.tier-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(85, 239, 196, 0.15);
    color: #00b894;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   ARMADA GRID
   ============================================ */
.armada-section {
    background: var(--bg-section);
}

.armada-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.armada-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.armada-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.armada-photo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.armada-photo:hover img {
    transform: scale(1.08);
}

.armada-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.armada-photo:hover .armada-photo-overlay {
    opacity: 1;
}

.armada-photo-overlay span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ============================================
   REGISTRATION FORM
   ============================================ */
.daftar-section {
    background: var(--bg-white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all var(--transition-normal);
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.kontak-section {
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-slow);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-white);
    font-size: 1.3rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #ffffff;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--accent);
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(21, 101, 192, 0.08);
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.4s ease forwards;
    box-shadow: var(--shadow-lg);
    min-width: 300px;
}

.toast.success {
    background: #00b894;
}

.toast.error {
    background: #e17055;
}

.toast.info {
    background: var(--primary);
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 16px;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 20px 20px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    transform: scale(0.8);
    transition: transform var(--transition-slow);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.5rem;
}

.modal-icon.success {
    background: rgba(85, 239, 196, 0.15);
    color: #00b894;
}

.modal-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.8rem;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-grid.three-cols {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .container {
        padding: 0 24px;
    }
    .section {
        padding: 70px 0;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .hero {
        padding-top: 80px;
    }
    .hero-content {
        padding: 0 16px;
    }
}

/* ============================================
   RESPONSIVE - Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
        gap: 4px;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links .nav-link {
        color: var(--text-dark);
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        background: rgba(21, 101, 192, 0.08);
        color: var(--primary);
    }
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
        align-items: flex-start;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-item {
        min-width: 80px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-divider {
        display: none;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .section-header p {
        font-size: 0.9rem;
        padding: 0 8px;
    }
    .section-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    .container {
        padding: 0 16px;
    }

    /* Features / Tentang */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        padding: 24px 20px;
    }

    /* Pricing / Paket */
    .pricing-grid,
    .pricing-grid.two-cols,
    .pricing-grid.three-cols {
        grid-template-columns: 1fr !important;
        max-width: 380px;
        margin: 0 auto;
        gap: 16px;
    }
    .pricing-card {
        padding: 28px 24px;
    }


    /* Armada Gallery */
    .armada-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }
    .armada-photo-overlay {
        opacity: 1;
    }

    /* Registration Form */
    .form-grid {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
        gap: 14px;
    }
    .form-wrapper {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
    .form-group select {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
    }

    .btn-block {
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-card {
        padding: 24px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .footer-bottom {
        text-align: center;
    }

    /* Modal */
    .modal-content {
        max-width: 360px;
        padding: 16px;
        max-height: 85vh;
        overflow-y: auto;
    }
    .modal-content h3 {
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE - Small Phone (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .hero-stats {
        gap: 12px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .section {
        padding: 40px 0;
    }
    .container {
        padding: 0 12px;
    }
    .pricing-card {
        padding: 24px 18px;
    }
    .feature-card {
        padding: 20px 16px;
    }
    .form-wrapper {
        padding: 24px 16px;
    }
    .btn-lg {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .nav-logo span {
        font-size: 0.9rem;
    }
    .nav-logo-img {
        height: 40px;
        width: auto;
    }
    .footer-logo-img {
        height: 48px;
        width: auto;
    }
}

