/* Pricing Grid Layout */
.packages-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages-section-wrapper {
    font-family: 'Anek Bangla', sans-serif;
}

.packages-section-wrapper .top-header-bar {
    text-align: center;
    padding: 20px 20px;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    color: #ffffff;
}

.packages-section-wrapper .main-subtitle {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin: 15px 0 40px 0;
    color: #444444;
}

.packages-section-wrapper .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

/* Individual Pricing Card */
.packages-section-wrapper .card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Wave Background */
.packages-section-wrapper .card-wave {
    color: var(--theme-color);
    width: 100%;
    line-height: 0;
}

.packages-section-wrapper .card-wave svg {
    width: 100%;
    height: 65px;
}

/* Card Icon */
.packages-section-wrapper .icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -40px auto 10px auto;
    position: relative;
    z-index: 2;
    border: 4px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 24px;
}

/* Card Content Area */
.packages-section-wrapper .card-content {
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.packages-section-wrapper .card-title {
    text-align: center;
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

.packages-section-wrapper .card-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.packages-section-wrapper .card-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

/* Feature List */
.packages-section-wrapper .feature-list {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 20px;
    padding: 0;
}

.packages-section-wrapper .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.packages-section-wrapper .feature-list li i {
    color: var(--theme-color);
    font-size: 16px;
}

/* Price Box */
.packages-section-wrapper .price-box {
    background-color: var(--theme-light);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.packages-section-wrapper .price-box .price-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: -5px;
}

.packages-section-wrapper .price-box .price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color);
}

/* CTA Button */
.packages-section-wrapper .btn-buy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--theme-color);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

.packages-section-wrapper .btn-buy:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

.packages-section-wrapper .btn-buy .arrow-circle {
    background: #FFFFFF;
    color: var(--theme-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* Bottom Actions Grid */
.packages-section-wrapper .action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.packages-section-wrapper .action-box {
    background-color: var(--btn-bg);
    border: 1px solid var(--btn-border);
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--theme-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.packages-section-wrapper .action-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    color: var(--theme-color);
}

.packages-section-wrapper .action-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.packages-section-wrapper .action-left i.main-icon {
    font-size: 20px;
    position: relative;
}

/* Specifically for the document + search icon combo */
.packages-section-wrapper .doc-search-icon {
    position: relative;
    display: inline-block;
    font-size: 20px;
}

.packages-section-wrapper .doc-search-icon .fa-search {
    position: absolute;
    bottom: -2px;
    right: -6px;
    font-size: 12px;
    background: var(--btn-bg);
    border-radius: 50%;
    padding: 1px;
}

.packages-section-wrapper .action-right-icon {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {

    .packages-section-wrapper .pricing-grid,
    .packages-section-wrapper .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .packages-section-wrapper .pricing-grid,
    .packages-section-wrapper .action-grid {
        grid-template-columns: 1fr;
    }

    .packages-section-wrapper .top-header-bar {
        font-size: 22px;
    }
}

/* Package Action Buttons */
.packages-section-wrapper .pkg-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.packages-section-wrapper .btn-buy.secondary-action {
    background: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}

.packages-section-wrapper .btn-buy.secondary-action .arrow-circle {
    background: var(--theme-color);
    color: #FFFFFF;
}

.packages-section-wrapper .btn-buy.secondary-action:hover {
    background: var(--theme-color);
    color: #FFFFFF;
}

.packages-section-wrapper .btn-buy.secondary-action:hover .arrow-circle {
    background: #FFFFFF;
    color: var(--theme-color);
}