/* Digital Marketing & Online Presence CSS - Professional Conversion UI */
.marketing-services-section {
    padding: 80px 5%;
    background-color: #f8fafc; /* Subtle light background to differentiate from GeM section */
    font-family: 'Inter', sans-serif;
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Pricing Badge Wrapper */
.badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.promo-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(207, 166, 75, 0.4);
    pointer-events: none;
    letter-spacing: 1px;
}

.blinking {
    animation: blinking-pulse 1.5s infinite ease-in-out;
}

@keyframes blinking-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* Pricing Badge */
.pricing-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(11, 33, 59, 0.15), 0 0 20px rgba(29, 122, 118, 0.1);
    border: 2px solid var(--secondary-color);
    margin-bottom: 0;
}

.pricing-badge span {
    color: var(--secondary-color);
}

/* Services Table Styling */
.services-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
}

.marketing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.marketing-table thead th {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 20px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marketing-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.3s ease;
}

.marketing-table tbody tr:last-child {
    border-bottom: none;
}

.marketing-table tbody tr:hover {
    background-color: #f8fafc;
}

.marketing-table td {
    padding: 20px;
    color: #334155;
    font-size: 1rem;
    line-height: 1.5;
}

.marketing-table td:first-child {
    font-weight: 800;
    color: #1d7a76;
    width: 50px;
    text-align: center;
}

.marketing-table .service-name {
    font-weight: 700;
    color: #1e293b;
    min-width: 200px;
}

.marketing-table .additional-charges {
    color: #ef4444;
    font-weight: 600;
}

.marketing-table .included {
    color: #10b981;
    font-weight: 700;
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-book-now {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 6px 20px rgba(207, 166, 75, 0.3);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book-now:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11, 33, 59, 0.4);
}

/* Responsive Table (Mobile Cards) */
@media screen and (max-width: 800px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .marketing-table thead {
        display: none;
    }

    .marketing-table, .marketing-table tbody, .marketing-table tr, .marketing-table td {
        display: block;
        width: 100%;
    }

    .marketing-table tr {
        margin-bottom: 20px;
        padding: 20px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
    }

    .marketing-table td {
        padding: 10px 0;
        text-align: left;
        border: none;
    }

    .marketing-table td:first-child {
        display: inline-block;
        width: auto;
        background: #1d7a76;
        color: #fff;
        padding: 2px 10px;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .marketing-table td::before {
        content: attr(data-label);
        font-weight: 800;
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 4px;
    }
}
