/* ====== Professional Modernized Plans Page (with #f6ee44 branding) ====== */

/* General Page Styling */
body {
    background-color: #fafafa;
    color: #222;
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    font-size: 1.9em;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #f6ee44;
    padding-left: 12px;
}

.section-title i {
    color: #f6ee44;
}

/* Price Card */
.price-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #f6ee44;
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f6ee44;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(246, 238, 68, 0.4);
}

.plan-badge.bg-success {
    background: #28a745 !important;
    color: #fff;
}

.plan-badge.bg-info {
    background: #17a2b8 !important;
    color: #fff;
}

/* Plan Title */
.price-card h4 {
    color: #222;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Price Section */
.price {
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 20px;
    margin: 25px 0;
}

.original-price {
    color: #999;
    font-size: 1.1em;
    text-decoration: line-through;
}

.current-price {
    color: #f6ee44;
    font-size: 2.4em;
    font-weight: 800;
    margin-top: 5px;
}


.offer-badge {
    position: absolute;
    top: 18px;
    left: -38px; /* Slightly out of card for realistic corner wrap */
    background: #e74c3c;
    color: #fff;
    padding: 8px 60px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    letter-spacing: 0.5px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* Optional hover tint for visual depth */
.price-card:hover .offer-badge {
    background: #c0392b;
}



/* Description */
.price-card .text-muted {
    color: #555 !important;
    font-size: 0.95em;
    margin-bottom: 15px;
    min-height: 60px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    color: #333;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #f6ee44;
    font-weight: bold;
    font-size: 1.2em;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    background: #f6ee44;
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.contact-btn:hover {
    background: #e4dc3f;
    border-color: #cfc637;
    color: #000 !important;
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px dashed #ccc;
}

.empty-state i {
    font-size: 3em;
    color: #ccc;
    margin-bottom: 15px;
}

.empty-state h4 {
    color: #444;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-state p {
    color: #888;
}

/* Contact Section */
#contact {
    background: #111;
    border-radius: 12px;
    padding: 60px 25px;
}

#contact h3 {
    color: #f6ee44;
    font-weight: 600;
    font-size: 1.9em;
    margin-bottom: 15px;
}

#contact p {
    color: #ddd;
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .price-card {
        margin-bottom: 20px;
    }
    .current-price {
        font-size: 2em;
    }
    .section-title {
        font-size: 1.6em;
    }
    .contact-btn {
        width: 100%;
        text-align: center;
    }
}
