/* Custom CSS for price.html */

/* Page Header */
.pricing-header {
    background: linear-gradient(rgba(24, 160, 251, 0.7), rgba(24, 160, 251, 0.7)), url(../img/pricing-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    margin-bottom: 50px;
    position: relative;
}

.pricing-header h1 {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header p {
    color: #fff;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Category */
.service-category {
    margin-bottom: 60px;
    position: relative;
}

.service-category h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-weight: 600;
}

.service-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: #13C5DD;
}

.service-category .icon {
    font-size: 2.5rem;
    color: #13C5DD;
    margin-bottom: 15px;
}

/* Price Cards */
.price-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card .card-header {
    background-color: #13C5DD;
    color: white;
    text-align: center;
    padding: 20px;
    border: none;
}

.price-card .card-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.price-card .card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #13C5DD;
    text-align: center;
    margin-bottom: 20px;
}

.price-card .features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.price-card .features p {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.price-card .features p:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #13C5DD;
}

.price-card .btn-primary {
    background-color: #13C5DD;
    border-color: #13C5DD;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-card .btn-primary:hover {
    background-color: #0e9eb2;
    border-color: #0e9eb2;
    transform: scale(1.05);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: #FF6F61;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .price-card {
        margin-bottom: 30px;
    }
    
    .pricing-header {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .service-category h2 {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Delay animations for cards */
.price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.price-card:nth-child(2) {
    animation-delay: 0.2s;
}

.price-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Compare Table */
.compare-table {
    margin-top: 50px;
    margin-bottom: 50px;
}

.compare-table .table {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.compare-table th {
    background-color: #13C5DD;
    color: white;
    font-weight: 600;
    text-align: center;
    border: none;
    padding: 15px;
}

.compare-table td {
    text-align: center;
    padding: 15px;
    border-color: #f0f0f0;
}

.compare-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.compare-table .feature-name {
    font-weight: 600;
    text-align: left;
}

.compare-table .check {
    color: #13C5DD;
    font-size: 1.2rem;
}

.compare-table .times {
    color: #dc3545;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button {
    padding: 20px;
    font-weight: 600;
    background-color: #f8f9fa;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #13C5DD;
    background-color: #f8f9fa;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.faq-section .accordion-body {
    padding: 20px;
    background-color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(24, 160, 251, 0.9), rgba(24, 160, 251, 0.9)), url(../img/cta-bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    margin: 50px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-section .btn {
    background-color: white;
    color: #13C5DD;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}
