/* ============================================================
   OUR SERVICES SECTION CSS
   Metbaber - Services, Web Dev & Business Directory
   ============================================================ */

/* CSS Variables */
:root {
    --brand-red: #C8251E;
    --brand-red-dark: #A01A14;
    --brand-red-light: #E05050;
    --brand-gold: #C4882A;
    --brand-gold-light: #D4A245;
    --brand-ink: #18110A;
    --brand-ink-muted: #6A5840;
    --brand-ink-faint: #A0896F;
    --brand-cream: #F9F5EE;
    --brand-cream-warm: #F2EAD8;
    --font-serif: 'Instrument Serif', 'DM Serif Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 32px rgba(0, 0, 0, 0.15);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SERVICE TABS
   ============================================================ */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.services-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: white;
    border: 1.5px solid rgba(24, 17, 10, 0.1);
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--brand-ink-muted);
    cursor: pointer;
    transition: all var(--transition-base);
}

.services-tab-btn i {
    font-size: 16px;
}

.services-tab-btn:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
}

.services-tab-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
    box-shadow: 0 4px 15px rgba(200, 37, 30, 0.3);
}

.services-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.services-tab-content.active {
    display: block;
}

/* ============================================================
   FEATURED SERVICES CARDS
   ============================================================ */
.services-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.services-featured-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

.services-featured-card.dark {
    background: var(--brand-ink);
    color: white;
}

.services-featured-card.red {
    background: var(--brand-red);
    color: white;
}

.services-featured-card.cream {
    background: var(--brand-cream);
    color: var(--brand-ink);
}

.services-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.services-popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.services-featured-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.services-featured-icon i {
    font-size: 28px;
}

.services-featured-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.services-featured-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

.services-featured-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.services-featured-features span {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.services-featured-features span i {
    font-size: 10px;
}

.services-featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.services-featured-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
}

.services-featured-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: inherit;
}

.services-featured-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

/* ============================================================
   REGULAR SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.services-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    transition: all var(--transition-base);
    border: 1px solid rgba(24, 17, 10, 0.06);
}

.services-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.services-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services-card-icon i {
    font-size: 24px;
}

.services-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.services-card-desc {
    font-size: 13px;
    color: var(--brand-ink-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.services-card-link {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-red);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.services-card-link:hover {
    gap: 10px;
}

/* ============================================================
   WEB DEVELOPMENT SECTION
   ============================================================ */
.webdev-hero {
    background: linear-gradient(135deg, var(--brand-ink) 0%, #2A1F15 100%);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.webdev-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 37, 30, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.webdev-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 37, 30, 0.15);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--brand-red-light);
    margin-bottom: 20px;
}

.webdev-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.webdev-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.webdev-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.webdev-stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-gold);
}

.webdev-stat-label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
}

.webdev-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Web Dev Features */
.webdev-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.webdev-feature-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    transition: all var(--transition-base);
    border: 1px solid rgba(24, 17, 10, 0.06);
}

.webdev-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.webdev-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.webdev-feature-icon i {
    font-size: 24px;
}

.webdev-feature-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.webdev-feature-desc {
    font-size: 13px;
    color: var(--brand-ink-muted);
    line-height: 1.6;
}

/* Web Dev Packages */
.webdev-packages {
    background: var(--brand-cream-warm);
    border-radius: 32px;
    padding: 48px;
    margin-top: 20px;
}

.webdev-package-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
    height: 100%;
}

.webdev-package-card.popular {
    border: 2px solid var(--brand-gold);
    transform: scale(1.02);
}

.webdev-package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--brand-gold);
    color: white;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
}

.webdev-package-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 37, 30, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-red);
}

.webdev-package-icon i {
    font-size: 22px;
}

.webdev-package-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.webdev-package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.webdev-package-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--brand-ink-muted);
}

.webdev-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.webdev-package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--brand-ink-muted);
}

.webdev-package-features li i {
    color: var(--brand-gold);
    font-size: 12px;
}

.webdev-package-btn {
    width: 100%;
    padding: 12px;
    background: var(--brand-red);
    border: none;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.webdev-package-btn:hover {
    background: var(--brand-red-dark);
    transform: translateY(-2px);
}

/* ============================================================
   BUSINESS DIRECTORY SECTION
   ============================================================ */
.business-hero {
    background: linear-gradient(135deg, #FDF8F0 0%, #FAF5E8 100%);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 60px;
}

.business-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 37, 30, 0.1);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--brand-red);
    margin-bottom: 20px;
}

.business-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.business-desc {
    color: var(--brand-ink-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.business-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.business-stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-red);
}

.business-stat-label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--brand-ink-muted);
}

/* Business Categories */
.business-categories {
    margin-bottom: 60px;
}

.business-categories-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.business-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.business-category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.business-category-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.business-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-category-icon i {
    font-size: 22px;
}

.business-category-info {
    flex: 1;
}

.business-category-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.business-category-info span {
    font-size: 11px;
    color: var(--brand-ink-muted);
}

.business-category-link {
    width: 32px;
    height: 32px;
    background: rgba(200, 37, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    transition: all var(--transition-fast);
}

.business-category-link:hover {
    background: var(--brand-red);
    color: white;
}

/* Business Plans */
.business-plans {
    background: var(--brand-cream-warm);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 60px;
}

.business-plan-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-base);
    height: 100%;
}

.business-plan-card.popular {
    border: 2px solid var(--brand-gold);
    transform: scale(1.02);
}

.business-plan-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--brand-gold);
    color: white;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
}

.business-plan-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.business-plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.business-plan-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--brand-ink-muted);
}

.business-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.business-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--brand-ink-muted);
}

.business-plan-features li i {
    color: var(--brand-gold);
    font-size: 12px;
}

.business-plan-btn {
    width: 100%;
    padding: 12px;
    background: var(--brand-red);
    border: none;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.business-plan-btn:hover {
    background: var(--brand-red-dark);
    transform: translateY(-2px);
}

/* Featured Businesses */
.business-featured {
    background: white;
    border-radius: 24px;
    padding: 32px;
}

.business-featured-grid {
    display: grid;
    gap: 16px;
}

.business-featured-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--brand-cream);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.business-featured-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.business-featured-img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
}

.business-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-featured-info {
    flex: 1;
}

.business-featured-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.business-featured-category {
    font-size: 11px;
    color: var(--brand-ink-muted);
}

.business-featured-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.business-featured-rating i {
    color: var(--brand-gold);
    font-size: 11px;
}

.business-featured-rating span {
    font-size: 12px;
    font-weight: 600;
}

.business-featured-rating small {
    font-size: 10px;
    color: var(--brand-ink-muted);
}

.business-featured-link {
    width: 36px;
    height: 36px;
    background: rgba(200, 37, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    transition: all var(--transition-fast);
}

.business-featured-link:hover {
    background: var(--brand-red);
    color: white;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.services-cta {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border-radius: 32px;
    padding: 60px 48px;
    text-align: center;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta-content h3 {
    color: white;
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 16px;
}

.services-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.services-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 992px) {
    .services-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .webdev-hero,
    .business-hero,
    .webdev-packages,
    .business-plans {
        padding: 32px;
    }
    
    .webdev-title,
    .business-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-tab-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .services-tab-btn i {
        font-size: 14px;
    }
    
    .services-featured-card {
        padding: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .webdev-stats,
    .business-stats {
        gap: 20px;
    }
    
    .webdev-stat-number,
    .business-stat-number {
        font-size: 1.4rem;
    }
    
    .business-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        padding: 40px 24px;
    }
    
    .services-cta-content h3 {
        font-size: 1.5rem;
    }
}





/* Freelance Tab Styles */
.freelance-hero {
    background: linear-gradient(135deg, #F9F5EE 0%, #fff 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.freelance-badge {
    display: inline-block;
    background: rgba(200,37,30,0.1);
    color: var(--brand-red, #C8251E);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.freelance-title {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.freelance-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.freelance-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.freelance-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-red, #C8251E);
}

.freelance-stat-label {
    font-size: 0.85rem;
    color: #666;
}

.freelance-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.freelance-categories {
    margin-bottom: 4rem;
}

.freelance-categories-title {
    font-family: var(--font-serif);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.freelance-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.freelance-category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.freelance-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.freelance-category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
}

.freelance-category-info {
    flex: 1;
}

.freelance-category-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.freelance-category-info span {
    font-size: 0.8rem;
    color: #888;
}

.freelance-category-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.freelance-category-link:hover {
    background: var(--brand-red, #C8251E);
    color: white;
}

.freelance-how-it-works {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.freelance-step {
    text-align: center;
    position: relative;
}

.freelance-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--brand-red, #C8251E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.freelance-step-icon {
    font-size: 2.5rem;
    color: var(--brand-red, #C8251E);
    margin-bottom: 1rem;
}

.freelance-step h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.freelance-step p {
    color: #666;
    font-size: 0.9rem;
}

.freelance-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.freelance-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.freelance-cta-content p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .freelance-hero {
        padding: 1.5rem;
    }
    .freelance-title {
        font-size: 1.8rem;
    }
    .freelance-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .freelance-how-it-works {
        padding: 1.5rem;
    }
}


@media (max-width: 576px) {
    .services-tab-btn span {
        display: none;
    }
    
    .services-tab-btn i {
        margin: 0;
    }
    
    .webdev-hero,
    .business-hero {
        text-align: center;
    }
    
    .webdev-stats,
    .business-stats {
        justify-content: center;
    }
    
    .webdev-actions,
    .business-actions {
        justify-content: center;
    }
    
    .webdev-package-card.popular,
    .business-plan-card.popular {
        transform: scale(1);
    }
}