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

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)), url('/styles/img/slide_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem;
}

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

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: rgba(24, 26, 27, 0.85);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #ffc107;
    color: #111;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 8px;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.price .term {
    font-size: 1rem;
    font-weight: normal;
    color: #aaa;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: #777;
    font-size: 1rem;
    margin-top: 5px;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    transform: scale(1.02);
}

.btn-blue { background-color: #007bff; }
.btn-yellow { background-color: #ffc107; color: #111; }
.btn-red { background-color: #dc3545; }
.btn-green { background-color: #28a745; }
.btn-cyan { background-color: #17a2b8; }

/* Modern Footer Styles */
.main-footer {
    background-color: #121212;
    color: #ccc;
    padding-top: 4rem;
    border-top: 1px solid #333;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff;
}

.footer-column p, .footer-column ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
    color: #007bff;
    padding-left: 5px;
}

.footer-column i {
    margin-right: 10px;
    color: #007bff;
    width: 20px; /* Align icons */
    text-align: center;
}

.social-icons-footer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons-footer a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
    padding-left: 0; /* Reset padding for icons */
}

.social-icons-footer a:hover i {
    color: #fff; /* Ensure icon is white on hover */
}

.footer-bottom {
    background-color: #0a0a0a;
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom a {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}