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

:root {
    --primary: #00a8e8;
    --primary-dark: #0086ba;
    --secondary: #ffc107;
    --dark: #1a1a2e;
    --light: #f8fafc;
    --text: #30323a;
    --text-light: #667085;
    --white: #fff;
    --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.14);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Page Header */
.page-header {
    min-height: 250px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.90), rgba(26, 26, 46, 0.94)),
                url('../ass/hali-yikama.jpg') center/cover;
}

.page-header .container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: var(--light);
}

.pricing-notice {
    background: #e0f2fe;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0369a1;
    font-size: 15px;
    font-weight: 500;
}

.pricing-notice i {
    font-size: 22px;
    color: var(--primary);
}

.category-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 168, 232, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.price-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.price-unit {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 2px;
}

.price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

/* Call to action */
.cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #006d97);
    padding: 52px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta h2 {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.15;
    margin-bottom: 8px;
}

.cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: #006d97;
}

.btn-light:hover {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary {
    background: #25d366;
    color: var(--white);
}

.btn-secondary:hover {
    background: #1eb956;
}

/* Footer */
.footer {
    background: #0f0f1e;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
    }

    .menu-toggle:checked ~ .nav-menu {
        left: 0;
    }

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

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
