/* Clean Service Page Styles for Ideators Digital - Professional Edition */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Clean Header Styles */
.service-header {
    background: #f8f9fa;
    color: #333;
    padding: 80px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
    letter-spacing: -1px;
    color: #2c3e50;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
}

/* Main Content */
.main-content {
    background: #ffffff;
    margin: 0 auto 40px;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    border: none;
}

.content-section {
    padding: 80px 60px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    font-weight: 600;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007bff;
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: 400;
}

/* Clean Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    background: #007bff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: #0056b3;
}

.feature-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #007bff;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #495057;
}

/* Clean Benefits Section */
.benefits-section {
    background: #f8f9fa;
    padding: 80px 60px;
    margin: 60px 0;
    border-radius: 0;
    position: relative;
    border: none;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check {
    transform: scale(1.1);
    background: #218838;
}

.benefit-item span {
    font-weight: 500;
    color: #2c3e50;
    font-size: 1rem;
}

/* Clean CTA Section */
.cta-section {
    color: white;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    border-radius: 0;
    margin: 60px 0;
    background-size: 400% 400%;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(0,123,255,0.05) 100%);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
	color: #414142;
}

.cta-button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    border: 2px solid #007bff;
    text-transform: none;
    letter-spacing: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .service-header {
        padding: 60px 0;
    }

    .service-header h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .content-section, .benefits-section, .cta-section {
        padding: 50px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-section, .benefits-section, .cta-section {
        padding: 40px 20px;
    }

    .service-header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .description {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}