/* Pricing Section Styles */
.pricing-section {
    padding: 60px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plan-price small {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.plan-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
}

.plan-features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: #ccc;
}

.btn-plan {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    margin-top: auto;
}

.btn-plan:hover {
    background: var(--accent-color);
    color: #fff;
}

.pricing-card.contact-card {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    color: #fff;
    border: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-card h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-card .btn-contact {
    background: #fff;
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
}

.contact-card .btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-weight: 700;
    color: var(--heading-color);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--accent-color-rgb), 0.25);
}

.btn-submit {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.btn-submit:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
}
