/* =============================================
   KONI GOVERNMENT STYLE - NO RED COLORS
   Primary Navy  : #1a2744, #243352, #2e4a7a
   Accent Gold   : #b8860b, #d4a017
   Neutral Gray  : #f4f6f9, #e2e7ef, #5a6775, #3d4556
   Text          : #1e2a3a, #3d4556
   ============================================= */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1e2a3a;
    background-color: #f4f6f9;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.main-header {
    background: url('../../bgheader.jpeg') center/cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 3px solid #b8860b;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
    z-index: 10000;
}

/* ✨ LOGO BARU - TANPA LINGKARAN, TAMPIL PENUH */
.logo {
    width: auto;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    /* Removed border-radius, border, and box-shadow */
    display: block;
}

.logo-text h1 {
    font-size: 20px;
    color: #1a2744;
    margin-bottom: 2px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 255, 255, 0.7), 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.logo-text p {
    font-size: 12px;
    color: #2e4a7a;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 1px 1px 2px rgba(255, 255, 255, 0.7);
}

/* ==================== DESKTOP NAVIGATION ==================== */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    border-radius: 4px;
    letter-spacing: 0.3px;
    border: 1px solid transparent;
}

.main-nav a:hover {
    background-color: rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.4);
}

.main-nav a.active {
    background-color: #b8860b;
    border-color: #b8860b;
}

/* ==================== DROPDOWN MENUS ==================== */
.registration-menu {
    position: relative;
}

.registration-menu > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    min-width: 250px;
    z-index: 10000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu:hover .dropdown-menu,
.registration-menu:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
    border: none;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown-menu a:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-menu a:last-child {
    border-radius: 0 0 10px 10px;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 5px 0;
}

.registration-dropdown {
    min-width: 280px;
    padding: 10px 0;
}

.registration-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px !important;
    transition: all 0.3s;
}

.registration-option:hover {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    transform: translateX(5px);
}

.menu-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.menu-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-text strong {
    color: #1e3c72;
    font-size: 14px;
    display: block;
}

.menu-text small {
    color: #666;
    font-size: 11px;
    display: block;
    font-weight: normal;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none !important;
}

.user-icon {
    font-size: 18px;
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-danger {
    color: #c92a2a !important;
}

/* Login Button */
.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none !important;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ==================== MOBILE MENU TOGGLE BUTTON ==================== */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    z-index: 10001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a2744;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    z-index: 10000 !important;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0 !important;
}

.mobile-menu-inner {
    padding-top: 80px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: rgba(184, 134, 11, 0.15);
    padding-left: 30px;
}

.mobile-divider {
    height: 8px;
    background: rgba(0,0,0,0.2);
    border: none;
}

.mobile-submenu-header {
    padding: 16px 20px;
    font-weight: bold;
    color: #b8860b;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(102, 126, 234, 0.2);
    color: white;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-user-icon {
    font-size: 24px;
}

.mobile-login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    margin: 15px 20px;
    border-radius: 25px;
    justify-content: center;
    font-weight: 700;
}

.mobile-login-btn:hover {
    padding-left: 20px !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(rgba(26, 39, 68, 0.40), rgba(36, 51, 82, 0.40)),
                url('../../hero-skating.jpeg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 4px solid #b8860b;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    color: #cbd6e3;
    letter-spacing: 0.5px;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #b8860b;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.content-text {
    text-align: justify;
}

/* MAIN HEADING - NO RED, ONLY NAVY */
.content-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a2744;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 18px;
    text-align: center;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #b8860b;
}

/* SUBHEADING - NO RED, ONLY NAVY */
.content-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #1a2744;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #b8860b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: left;
}

/* PARAGRAPH TEXT */
.content-text p {
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: 16px;
    color: #3d4556;
    font-weight: 400;
}

.content-text p strong {
    color: #1a2744;
    font-weight: 700;
    font-size: 17px;
}

/* HIGHLIGHT - GOLD ACCENT, NO RED */
.content-text .highlight {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(184, 134, 11, 0.1);
    border-left: 3px solid #b8860b;
    border-radius: 2px;
    margin: 0 2px;
    font-weight: 600;
    color: #1a2744;
}

/* INFO BOX - NAVY ACCENT */
.info-box {
    background: white;
    border-left: 4px solid #1a2744;
    padding: 28px;
    margin: 28px 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e7ef;
    border-left: 4px solid #1a2744;
    transition: box-shadow 0.25s ease;
}

.info-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* IMAGES */
.content-images {
    display: grid;
    gap: 20px;
}

.content-img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e2e7ef;
}

/* CTA SECTION - NAVY BACKGROUND */
.cta-section {
    margin-top: 45px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e0e2e6 0%, #edeff4 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%);
    background-size: 40px 40px;
}

.join-badge {
    width: 120px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.join-badge:hover {
    transform: scale(1.08);
}

.cta-text {
    font-weight: 700;
    color: #f5f2e9;
    margin-top: 15px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
    padding: 60px 0;
    background-color: #f4f6f9;
    border-top: 3px solid #b8860b;
}

.partners-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.partners-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #b8860b;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e7ef;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.partner-item:hover {
    transform: translateY(-5px);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, #1a2744 0%, #243352 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #b8860b;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 16px;
    color: #cbd6e3;
    position: relative;
    z-index: 1;
}

/* ==================== REGISTRATION FORM ==================== */
.registration-section {
    padding: 60px 0;
    background-color: #f4f6f9;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e2e7ef;
    border-top: 4px solid #1a2744;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a2744;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e7ef;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #1e2a3a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e4a7a;
    box-shadow: 0 0 0 3px rgba(46, 74, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* SUBMIT BUTTON - GOLD, NO RED */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #b8860b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #d4a017;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-submit:active {
    transform: translateY(1px);
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 16px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: #1a2744;
    color: white;
    padding: 35px 0;
    text-align: center;
    border-top: 3px solid #b8860b;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin: 7px 0;
    color: #cbd6e3;
    font-size: 14px;
}

.footer-content p strong {
    color: #ffffff;
    font-weight: 600;
}

/* ==================== GLOBAL SECTION TITLES ==================== */
section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #b8860b;
}

/* ==================== TABLES ==================== */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

table th {
    background: #1a2744;
    color: white;
    padding: 14px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e7ef;
    color: #3d4556;
    font-size: 14px;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background: #f4f6f9;
}

/* ==================== GLOBAL BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PRIMARY BUTTON - GOLD, NO RED */
.btn-primary {
    background: #b8860b;
    color: white;
}

.btn-primary:hover {
    background: #d4a017;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

/* SECONDARY BUTTON - NAVY */
.btn-secondary {
    background: transparent;
    color: #1a2744;
    border: 1px solid #1a2744;
}

.btn-secondary:hover {
    background: #1a2744;
    color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .header-container {
        padding: 15px 30px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop navigation */
    .main-nav {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Adjust header */
    .header-container {
        padding: 12px 20px;
    }
    
    /* ✨ LOGO MOBILE - TETAP PROPORSIONAL */
    .logo {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    /* Hero adjustments */
    .hero-section {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    /* Content adjustments */
    .main-content {
        padding: 40px 0;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .content-text h3 {
        font-size: 20px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    /* Partners adjustments */
    .partners-grid {
        gap: 25px 35px;
    }
    
    /* Page header adjustments */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    /* Section titles */
    section h2 {
        font-size: 26px;
    }
    
    .info-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    /* ✨ LOGO SMALL MOBILE - TETAP PROPORSIONAL */
    .logo {
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 14px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .hero-section {
        height: 200px;
    }
    
    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .logo-section {
        gap: 10px;
    }
    
    /* ✨ LOGO EXTRA SMALL - TETAP PROPORSIONAL */
    .logo {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 13px;
    }
    
    .logo-text p {
        font-size: 9px;
    }
}