﻿body {
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd !important;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
}

    .nav-link:hover {
        color: #0d6efd !important;
    }

/* --- General Section Styles --- */
.hero-section {
    background: #fff;
    padding: 80px 0;
}

.auth-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
    background: white;
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }

.pricing-header {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    padding: 30px 20px;
    position: relative;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-duration {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

.most-popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

footer {
    background-color: #212529;
    color: #adb5bd;
    margin-top: auto;
}

    footer h5 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: 0.3s;
    }

        footer a:hover {
            color: #fff;
            padding-left: 5px;
        }

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0d6efd;
    color: white;
}


@media (max-width: 767.98px) {
    body {
        padding-bottom: 80px !important;
    }
}
