/* ========================================
   SERVICES PAGE - MODERN DESIGN ??
   ======================================== */

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* ========== HERO SECTION ========== */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.partnership-badge i {
    font-size: 20px;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 40px;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(to bottom, #f8f9ff 0%, white 20%);
}

.service-card.premium {
    border-color: #fbbf24;
    background: linear-gradient(to bottom, #fffbeb 0%, white 20%);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card.premium .service-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.service-icon i {
    font-size: 40px;
    color: white;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ========== AUTHORIZATION NOTICE ========== */
.authorization-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.authorization-notice i {
    font-size: 20px;
    color: #f59e0b;
}

.authorization-notice strong {
    color: #92400e;
    display: block;
    margin-bottom: 8px;
}

.authorization-notice p {
    color: #78350f;
    font-size: 14px;
    margin: 0;
}

/* ========== SERVICE FEATURES ========== */
.service-features {
    margin-bottom: 24px;
}

.service-features h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #374151;
}

.service-features li i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

/* ========== SCREENSHOTS ========== */
.service-screenshot,
.service-screenshots {
    margin-bottom: 24px;
}

.screenshot-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.screenshot-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
}

.screenshot-placeholder:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.screenshot-placeholder.small {
    padding: 30px 15px;
}

.screenshot-placeholder i {
    font-size: 48px;
    color: #9ca3af;
    display: block;
    margin-bottom: 12px;
}

.screenshot-placeholder.small i {
    font-size: 32px;
}

.screenshot-placeholder p {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
}

.placeholder-note {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
}

/* ========== SERVICE ACTIONS ========== */
.service-actions {
    display: flex;
    gap: 12px;
}

/* ========== PARTNERSHIP SECTION ========== */
.partnership-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 40px;
    margin-bottom: 60px;
}

.partnership-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.partnership-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partnership-logo i {
    font-size: 60px;
    color: white;
}

.partnership-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.partnership-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.partnership-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    font-size: 24px;
    color: #0ea5e9;
}

.highlight-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* ========== AUTHORIZATION SECTION ========== */
.authorization-section {
    background: white;
    padding: 80px 40px;
    margin-bottom: 60px;
}

.authorization-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.authorization-content > i {
    font-size: 64px;
    color: #fbbf24;
    margin-bottom: 24px;
    display: block;
}

.authorization-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.authorization-content > p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 40px;
}

.authorization-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #6b7280;
}

.authorization-cta {
    margin-top: 40px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 30px;
    margin: 0 40px 40px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .services-section {
        padding: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .partnership-content {
        flex-direction: column;
        text-align: center;
    }

    .partnership-highlights {
        grid-template-columns: 1fr;
    }

    .authorization-steps {
        grid-template-columns: 1fr;
    }

    .screenshot-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
