/* Services Page Styles */

/* Service Header */
.service-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 150px 0 100px;
    margin-top: 75px;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.service-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Introduction Section */
.service-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* White Label Definition */
.white-label-definition {
    padding: 60px 0;
    background: var(--light-blue);
}

.definition-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.definition-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.definition-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.definition-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Services Provided */
.services-provided {
    padding: 80px 0;
    background: white;
}

.services-provided .section-title {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: -10px auto 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-items: center;
}

.service-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 115, 150, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 12px;
    padding-left: 10px;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-note {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin-top: 20px;
}

.service-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.benefits-section .section-title {
    color: white;
}

/* Benefits Showcase Layout */
.benefits-showcase {
    margin-top: 50px;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.benefits-row.centered {
    display: flex;
    justify-content: center;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-item:hover::before {
    transform: translateX(100%);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Featured Benefit - The 5th one */
.benefit-item.featured {
    max-width: 500px;
    padding: 45px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.benefit-item.featured .benefit-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
}

.benefit-item.featured .benefit-icon i {
    font-size: 40px;
}

.benefit-item.featured h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-item.featured p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(360deg);
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: white;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 115, 150, 0.1);
}

.audience-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.audience-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.audience-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--light-blue);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-large i {
    font-size: 1.2rem;
}

/* Override button secondary for CTA section */
.cta-section .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 115, 150, 0.3);
}

/* B2C Specific Styles */

/* B2C Header with different gradient */
.service-header-b2c {
    background: linear-gradient(135deg, #1a5a75 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

/* Services Offered Section */
.services-offered {
    padding: 80px 0;
    background: white;
}

.services-offered .section-title {
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offering-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(137, 213, 246, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.offering-card:hover::before {
    transform: scale(1);
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 115, 150, 0.2);
    border-color: var(--primary-color);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.15) rotate(10deg);
}

.offering-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.offering-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Performance Highlight */
.performance-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    padding: 50px;
    color: white;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.highlight-number {
    flex-shrink: 0;
    text-align: center;
}

.big-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.highlight-number .label {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.9;
}

.highlight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Target Clients Section */
.target-clients {
    padding: 80px 0;
    background: var(--light-blue);
}

.target-clients .section-title {
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 115, 150, 0.15);
}

.client-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.1);
}

.client-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.client-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Why Choose TBD Section */
.why-choose-tbd {
    padding: 80px 0;
    background: white;
}

.why-choose-tbd .section-title {
    text-align: center;
}

/* Reasons Showcase Layout - Same as B2B */
.reasons-showcase {
    margin-top: 50px;
}

.reasons-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.reasons-row.centered {
    display: flex;
    justify-content: center;
}

.reason-card {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.reason-card:hover::before {
    transform: translateX(100%);
}

.reason-card:hover {
    background: white;
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(37, 115, 150, 0.1);
}

/* Featured Reason Card */
.reason-card.featured {
    max-width: 500px;
    padding: 45px 40px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 20px 60px rgba(37, 115, 150, 0.15);
}

.reason-card.featured .reason-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
}

.reason-card.featured .reason-icon i {
    font-size: 2.5rem;
}

.reason-card.featured h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reason-card.featured p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotate(360deg);
}

.reason-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

.partner-statement {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.partner-statement p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.8;
}

/* TBD CTA Section */
.cta-tbd {
    background: linear-gradient(135deg, #e8f6fc 0%, white 100%);
}

.website-link {
    margin: 30px 0;
}

.tbd-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 115, 150, 0.3);
}

.tbd-website-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 115, 150, 0.4);
}

.tbd-website-btn i {
    font-size: 1.2rem;
}

/* Active Dropdown in Menu */
.dropdown-content a.active-dropdown {
    background: var(--light-blue);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-title {
        font-size: 2.5rem;
    }

    .service-tagline {
        font-size: 1.1rem;
    }

    .definition-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .definition-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 120px 0 80px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-tagline {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .definition-content h3 {
        font-size: 1.5rem;
    }

    .definition-content p {
        font-size: 1rem;
    }

    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-item.featured {
        max-width: 100%;
    }

    .reasons-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reason-card.featured {
        max-width: 100%;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-header {
        padding: 100px 0 60px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .definition-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .benefits-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 25px 20px;
    }

    .benefit-item.featured {
        padding: 35px 25px;
    }

    .benefit-item.featured .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-item.featured .benefit-icon i {
        font-size: 32px;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .benefit-item.featured h4 {
        font-size: 1.3rem;
    }

    .benefit-item.featured p {
        font-size: 0.95rem;
    }

    .audience-number {
        font-size: 3rem;
    }

    /* B2C Mobile Responsive */
    .reasons-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-card {
        padding: 25px 20px;
    }

    .reason-card.featured {
        max-width: 100%;
        padding: 35px 25px;
    }

    .reason-card.featured .reason-icon {
        width: 70px;
        height: 70px;
    }

    .reason-card.featured .reason-icon i {
        font-size: 2rem;
    }

    .reason-card h4 {
        font-size: 1.1rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }

    .reason-card.featured h4 {
        font-size: 1.3rem;
    }

    .reason-card.featured p {
        font-size: 0.95rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .performance-highlight {
        padding: 30px 20px;
    }

    .big-number {
        font-size: 3.5rem;
    }

    .highlight-text p {
        font-size: 1rem;
    }

    .tbd-website-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Additional B2C Responsive Styles */
@media (max-width: 968px) {
    .offerings-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .big-number {
        font-size: 4rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .performance-highlight {
        padding: 40px 30px;
    }

    .highlight-text p {
        font-size: 1rem;
    }

    .partner-statement p {
        font-size: 1.1rem;
    }

    .tbd-website-btn {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
}
