/* creative-design.css - Creative Design Service Page Styles - Clean Blue Theme */

/* ===========================================
   GLOBAL OVERRIDE PROTECTION - CRITICAL SECTION
   These rules MUST come first to override global.css
   =========================================== */

/* Force page-specific body behavior */
body.service-page,
body.creative-design-page {
    cursor: none !important;
    background: #FFEEE8 !important;
    color: #1a1a1a !important;
}

body.service-page *,
body.creative-design-page * {
    cursor: none !important;
}

/* ===========================================
   ANIMATION PROTECTION
   =========================================== */

/* Disable global animations that interfere */
.service-detail-card,
.service-detail-card *,
.hero-content,
.hero-content *,
.process-step,
.process-step * {
    animation: none !important;
    animation-delay: 0s !important;
    animation-fill-mode: none !important;
    animation-duration: 0s !important;
    will-change: auto !important;
}

/* Allow only our specific animations */
.service-detail-card.animate-in {
    animation: fadeInUp 0.6s ease-out !important;
}

.hero-content.animate-in > * {
    animation: fadeInUp 0.8s ease-out !important;
}

/* ===========================================
   MAIN PAGE STYLES
   =========================================== */

/* 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(59, 130, 246, 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 !important;
}

.breadcrumb a {
    color: #3B82F6 !important;
    text-decoration: none;
    transition: color 0.3s ease !important;
}

.breadcrumb a:hover {
    color: #1E40AF !important;
}

.breadcrumb span {
    color: #94a3b8 !important;
}

/* Hero Icon - Blue Theme with Forced Visibility */
.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.25),
        rgba(59, 130, 246, 0.20),
        rgba(59, 130, 246, 0.15)
    ) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 30px !important;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3) !important;
    position: relative !important;
    overflow: visible !important;
}

.hero-icon i {
    font-size: 48px !important;
    color: #0f172a !important;
    opacity: 1 !important;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #0f172a !important;
    line-height: 1.1 !important;
}

.hero-subtitle {
    font-size: 24px !important;
    font-style: italic !important;
    color: #1E40AF !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.hero-description {
    font-size: 20px !important;
    line-height: 1.6 !important;
    color: #1e293b !important;
    margin-bottom: 50px !important;
    font-weight: 500 !important;
}

.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 !important;
    font-weight: 700 !important;
    color: #3B82F6 !important;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.3) !important;
}

.stat-label {
    font-size: 14px !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500 !important;
}

/* Services Detail Section */
.services-detail {
    padding: 100px 0 !important;
    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 - Blue Theme */
.service-detail-card {
    padding: 35px !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.25),
        rgba(59, 130, 246, 0.20),
        rgba(59, 130, 246, 0.15)
    ) !important;
    border: 2px solid rgba(59, 130, 246, 0.4) !important;
    border-radius: 24px !important;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: none !important;
    position: relative !important;
    z-index: 1 !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    transform: translateZ(0) !important;
    isolation: isolate !important;
}

.service-detail-card:hover {
    transform: translateY(-8px) translateZ(0) !important;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    z-index: 2 !important;
}

.service-detail-card .service-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.2)) !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}

.service-detail-card:hover .service-icon {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.45) !important;
}

.service-detail-card .service-icon i {
    font-size: 28px !important;
    color: #0f172a !important;
    opacity: 1 !important;
}

.service-detail-card h3 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.service-description {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #1e293b !important;
    margin-bottom: 24px !important;
    font-weight: 500 !important;
}

.service-features {
    list-style: none !important;
    margin-top: auto !important;
    padding: 0 !important;
}

.service-features li {
    padding: 8px 0 !important;
    padding-left: 24px !important;
    position: relative !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: #1e293b !important;
    font-weight: 500 !important;
}

.service-features li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: #3B82F6 !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

/* Process Section */
.process-section {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent) !important;
    position: relative !important;
    z-index: 1 !important;
}

.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) !important;
    padding: 30px 20px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.step-number {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #3B82F6, #1E40AF) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 auto 20px !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3) !important;
}

.step-content h4 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
    color: #0f172a !important;
    font-weight: 600 !important;
}

.step-content p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #1e293b !important;
    font-weight: 500 !important;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0 !important;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.1),
        rgba(59, 130, 246, 0.08),
        rgba(59, 130, 246, 0.05)
    ) !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    margin-bottom: 20px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.cta-content p {
    font-size: 18px !important;
    color: #1e293b !important;
    margin-bottom: 40px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-weight: 500 !important;
}

.cta-content .glass-button {
    padding: 16px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #3B82F6, #1E40AF) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: none !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Add shine effect */
.cta-content .glass-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    ) !important;
    transition: left 0.6s ease !important;
}

.cta-content .glass-button:hover {
    background: linear-gradient(135deg, #1E40AF, #1E3A8A) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4) !important;
    color: white !important;
}

.cta-content .glass-button:hover::before {
    left: 100% !important;
}

.cta-content .glass-button:hover i {
    transform: translateX(3px) !important;
    transition: transform 0.3s ease !important;
}

/* ===========================================
   SECTION HEADERS
   =========================================== */

.section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.section-tag {
    display: inline-block !important;
    color: #1E40AF !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
    position: relative !important;
    text-shadow: 0 1px 3px rgba(30, 64, 175, 0.3) !important;
}

.section-tag::before,
.section-tag::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    width: 30px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #1E40AF, transparent) !important;
    opacity: 0.8 !important;
    box-shadow: 0 0 8px rgba(30, 64, 175, 0.4) !important;
}

.section-tag::before { left: -40px !important; }
.section-tag::after { right: -40px !important; }

.section-title .highlight {
    background: linear-gradient(135deg, #3B82F6, #1E40AF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 1px 2px rgba(59, 130, 246, 0.2)) !important;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }

    .hero-icon {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 20px !important;
    }

    .hero-icon i {
        font-size: 36px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .service-detail-card {
        padding: 25px !important;
    }

    .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 !important;
        gap: 30px !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }

    .section-tag::before,
    .section-tag::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        padding: 20px !important;
    }

    .service-detail-card .service-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .service-detail-card .service-icon i {
        font-size: 24px !important;
    }

    .breadcrumb {
        flex-direction: column !important;
        gap: 4px !important;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
}