/* SEO Packages Section Styles */

.seo-packages-section {
    background: #2a2c2f;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 215, 212, 0.05) 0%, transparent 20%);
    padding: 80px 2rem;
    min-height: auto;
}

.seo-packages-section .container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.seo-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.seo-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0px 4px 15px rgba(21, 215, 212, 0.2);
}

.seo-header p {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

/* Packages Wrapper */
.packages-wrapper {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1s ease-out;
    align-items: stretch;
}

/* Package Card */
.package-card {
    flex: 1;
    background: white;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    box-shadow: 0 15px 50px rgba(21, 215, 212, 0.1);
}

.package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1460be, #15d7d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.package-card:hover::after {
    transform: scaleX(1);
}

/* Featured Card */
.package-card.featured {
    background: linear-gradient(135deg, #1460be 0%, #188a88 100%);
    border: 2px solid #15d7d4;
}

.package-card.featured:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Badge */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #15d7d4;
    color: #2a2c2f;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(21, 215, 212, 0.4);
    animation: pulse 2s infinite;
}

/* Package Header */
.package-header {
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.package-card.featured .package-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.package-title {
    color: #2a2c2f;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.package-description {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.4;
}

.package-card.featured .package-title {
    color: white;
}

.package-card.featured .package-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.feature-item {
    color: #555;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 30px;
    transition: color 0.3s ease;
}

.package-card.featured .feature-item {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #188a88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
}

.package-card.featured .feature-item::before {
    background: #15d7d4;
    color: #2a2c2f;
}

/* Variable Feature Items */
.feature-item.feature-variable {
    color: #1460be;
    font-weight: 700;
    font-size: 1.05rem;
    background: transparent;
    padding-left: 35px;
    margin-top: 5px;
    border-radius: 5px;
    border-bottom: none;
}

.package-card.featured .feature-item.feature-variable {
    color: #15d7d4;
    background: transparent;
}

/* Price Section */
.price-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 15px;
}

.package-card.featured .price-section {
    background: rgba(0, 0, 0, 0.2);
}

.price-label {
    color: #718096;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.package-card.featured .price-label {
    color: rgba(255, 255, 255, 0.8);
}

.price {
    color: #2a2c2f;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.package-card.featured .price {
    color: white;
}

.price-currency {
    font-size: 1.8rem;
    vertical-align: super;
    color: #1460be;
}

.package-card.featured .price-currency {
    color: #15d7d4;
}

.price-period {
    color: #718096;
    font-size: 1rem;
    font-weight: 400;
}

.package-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(90deg, #1460be 0%, #188a88 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(24, 138, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(21, 215, 212, 0.3);
    background: linear-gradient(90deg, #188a88 0%, #1460be 100%);
}

.package-card.featured .cta-button {
    background: #15d7d4;
    color: #2a2c2f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-card.featured .cta-button:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Tablet Styles */
@media (max-width: 1200px) {
    .packages-wrapper {
        flex-direction: column;
    }

    .package-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .seo-header h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .seo-packages-section {
        padding: 50px 1rem;
    }

    .seo-header {
        margin-bottom: 40px;
    }

    .seo-header h2 {
        font-size: 1.75rem;
    }

    .seo-header p {
        font-size: 1rem;
    }

    .packages-wrapper {
        gap: 20px;
    }

    .package-card {
        padding: 30px;
        border-radius: 15px;
    }

    .package-title {
        font-size: 1.75rem;
    }

    .package-description {
        font-size: 0.9rem;
    }

    .features-list {
        margin-bottom: 25px;
    }

    .feature-item {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-currency {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}
