.packages {
    padding: 30px 0;
    background-color: var(--background-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.1);
}

.package-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.package-header h2 i {
    font-size: 2rem;
    color: var(--primary-color);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price .amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price .period {
    color: #64748b;
    font-size: 0.9rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 12px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.package-cta {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Combination Section */
.combination-section {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
    border-radius: 20px;
    text-align: center;
}

.combination-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.combination-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.combination-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-item span {
    text-align: left;
    color: var(--text-color);
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-button.large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .cta-button {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-final .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Extra Services Styling */
.extra-services {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.extra-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.extra-service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.extra-service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.extra-service-card h3 {
    margin: 15px 0;
    color: var(--text-color);
}

.extra-service-card .price {
    color: var(--primary-color);
    font-weight: 600;
}

.mini-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: left;
}

.mini-features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mini-features li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0.5rem;
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(to bottom, var(--light-bg), white);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .combination-section {
        padding: 30px;
    }

    .cta-final h2 {
        font-size: 2rem;
    }
}