/* Slim Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    height: 60px;
    display: flex;
    align-items: center;
}

nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    background: linear-gradient(135deg, #4c7bff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Adjust main content padding for slimmer header */
.checkout-page {
    padding-top: 80px;
    padding: 120px 20px 40px;
    min-height: 100vh;
    background: var(--light-bg);
}

.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px;
}

.order-summary {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.order-summary h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.selected-plan {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(30,55,153,0.05);
    border-radius: 15px;
}

.plan-name h2 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-duration {
    color: var(--text-color);
    font-size: 1.1rem;
}

.plan-price {
    text-align: right;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.final-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
}

.plan-features {
    margin-top: 30px;
}

.plan-features h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.plan-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--primary-color);
}

.payment-section {
    margin-bottom: 40px;
}

.payment-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.alternative-payments {
    text-align: center;
}

.alternative-payments p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button.whatsapp {
    background: #25D366;
    color: white;
}

.contact-button.email {
    background: var(--secondary-color);
    color: white;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}



.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
}

.badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 20px;
    }

    .selected-plan {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .plan-price {
        text-align: center;
    }

    .plan-features ul {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .security-badges {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
