/* digital-marketing.css - Digital Marketing Service Page Styles - Clean Version */

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(244, 114, 182, 0.03), transparent);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #F472B6;
}

.breadcrumb span {
    color: #94a3b8;
}

/* Hero Icon - Pink Theme with Fixed Sizing */
.hero-icon {
    width: 120px !important;
    height: 120px !important;
    background: linear-gradient(135deg,
        rgba(244, 114, 182, 0.25),
        rgba(244, 114, 182, 0.20),
        rgba(244, 114, 182, 0.15)
    );
    border: 2px solid rgba(244, 114, 182, 0.4);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 40px rgba(244, 114, 182, 0.3);
    position: relative;
    overflow: visible;
}

.hero-icon i {
    font-size: 48px !important;
    color: #0f172a;
    opacity: 1;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F472B6;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(244, 114, 182, 0.3);
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Services Detail Section */
.services-detail {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Service Detail Cards - Pink Theme with Fixed Icon Sizing */
.service-detail-card {
    padding: 35px;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg,
        rgba(244, 114, 182, 0.25),
        rgba(244, 114, 182, 0.20),
        rgba(244, 114, 182, 0.15)
    );
    border: 2px solid rgba(244, 114, 182, 0.4);
    border-radius: 24px;
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateZ(0);
    isolation: isolate;
}

.service-detail-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 20px 50px rgba(244, 114, 182, 0.4);
    border-color: rgba(244, 114, 182, 0.6);
    z-index: 2;
}

.service-detail-card .service-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.3), rgba(244, 114, 182, 0.2));
    border: 1px solid rgba(244, 114, 182, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.3);
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.45);
}

.service-detail-card .service-icon i {
    font-size: 28px !important;
    color: #0f172a;
    opacity: 1;
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.service-tagline {
    color: #F472B6;
    font-weight: 600;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F472B6;
    font-weight: bold;
    font-size: 16px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent);
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F472B6, #BE185D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.3);
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 600;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(244, 114, 182, 0.1),
        rgba(59, 130, 246, 0.08),
        rgba(244, 114, 182, 0.05)
    );
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-content .glass-button {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

/* Add shine effect */
.cta-content .glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.cta-content .glass-button:hover {
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

.cta-content .glass-button:hover::before {
    left: 100%;
}

.cta-content .glass-button:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: #BE185D;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 1px 3px rgba(190, 24, 93, 0.3);
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #BE185D, transparent);
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(190, 24, 93, 0.4);
}

.section-tag::before { left: -40px; }
.section-tag::after { right: -40px; }

.section-title .highlight {
    background: linear-gradient(135deg, #3B82F6, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(59, 130, 246, 0.2));
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-icon {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 20px;
    }

    .hero-icon i {
        font-size: 36px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail-card {
        padding: 25px;
    }

    .service-detail-card .service-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .service-detail-card .service-icon i {
        font-size: 24px !important;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .section-tag::before,
    .section-tag::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        padding: 20px;
    }

    .breadcrumb {
        flex-direction: column;
        gap: 4px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}