/* Services Page Redesign - Dark Theme */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3em 1.5em;
    text-align: center;
    color: #fff;
}

.services-hero h2 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

/* Services Section */
.services-section {
    padding: 3em 1.5em;
    background: #2e3141;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 2em;
}

.section-header h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
    color: #fff;
}

.section-header p {
    opacity: 0.7;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5em;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #353849;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border-color: rgba(0, 212, 255, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.2em;
    margin-bottom: 0.8em;
    color: #fff;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding: 0.3em 0;
    padding-left: 1.5em;
    position: relative;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95em;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Why Choose Section */
.why-choose-section {
    padding: 3em 1.5em;
    background: #1a1a2e;
    color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5em;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-card {
    background: #252542;
    border-radius: 12px;
    padding: 2em 1.5em;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.why-choose-icon {
    font-size: 2em;
    margin-bottom: 0.5em;
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-card h3 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
    color: #fff;
}

.why-choose-card p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Brands Section */
.brands-section {
    padding: 3em 1.5em;
    background: #2e3141;
    color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5em;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.brand-item {
    background: #353849;
    border-radius: 10px;
    padding: 1.5em;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.brand-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
}

.brand-item span {
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

/* CTA Section */
.services-cta {
    text-align: center;
    padding: 2.5em 1.5em;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.services-cta h2 {
    color: #fff;
    margin-bottom: 1em;
    font-size: 1.8em;
}

.cta-button {
    display: inline-block;
    padding: 0.9em 2.5em;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,212,255,0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,255,0.4);
}

/* Responsive */
@media screen and (max-width: 736px) {
    .services-hero {
        padding: 2.5em 1em;
    }
    .services-hero h2 {
        font-size: 1.8em;
    }
    .services-hero p {
        font-size: 1em;
    }
    .services-section,
    .why-choose-section,
    .brands-section,
    .services-cta {
        padding: 2em 1em;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .service-card {
        padding: 1.5em;
    }
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1em;
    }
    .why-choose-card {
        padding: 1.5em 1em;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
    .services-cta h2 {
        font-size: 1.5em;
    }
    .section-header h2 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
}
