/* Pricing Page Styles */





/* General Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--hcmd-blue);
}

.pricing-header {
    margin-bottom: 40px;
    text-align: center;
}

.pricing-title {
    color: white;
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.pricing-description {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

/* Pricing Accordion */
.pricing-accordion {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-dropdown {
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.pricing-title {
    color: var(--color-background);
    font-weight: var(--font-weight-medium) !important;
}
.pricing-dropdown-header {
    background-color: white;
    color: var(--hcmd-navy);
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    width: 50%;
}

.pricing-dropdown-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--hcmd-blue);
}
.item-description p:last-child{
    color: var(--hcmd-sky);
}
.dropdown-icon {
    transition: transform 0.3s ease;
    color: var(--hcmd-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-icon img{
    width: 13px;
}
.arrow-icon {
    width: 16px;
    height: auto;
    transition: transform 0.3s ease;
}

.pricing-dropdown.active .dropdown-icon {
    transform: rotate(0deg);
}

.pricing-dropdown.active .dropdown-icon svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

.pricing-dropdown.active .pricing-dropdown-header {
    background-color: var(--hcmd-navy);
    color: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pricing-dropdown.active .pricing-dropdown-header h3 {
    color: white;
}

.pricing-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--hcmd-navy);
    color: white;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 100%;
    align-self: stretch;
}

.pricing-dropdown.active .pricing-dropdown-content {
    max-height: fit-content;
    transition: max-height 0.5s ease-in;
}

/* Pricing Items */
.pricing-items {
    padding: 20px 25px;
}

.pricing-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--hcmd-blue);
}

.pricing-item.last-item {
    border-bottom: none;
}

.item-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.item-description {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.item-description p {
    margin: 0 0 10px 0;
}

.item-description p:last-child {
    margin-bottom: 0;
}

/* Close Button Style */
.pricing-dropdown.active .dropdown-icon svg {
    stroke: white;
}

/* Media Queries */
@media (max-width: 991px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-description {
        font-size: 1rem;
    }
    
    .pricing-dropdown-header h3 {
        font-size: 1.1rem;
    }
    
    .pricing-dropdown-header {
        width: 75%;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-header {
        margin-bottom: 30px;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .pricing-dropdown-header {
        padding: 15px 18px;
        width: 100%;
    }
    
    .pricing-dropdown-header h3 {
        font-size: 1rem;
    }
    
    .pricing-items {
        padding: 15px 20px;
    }
    
    .item-title {
        font-size: 1.1rem;
    }
} 