/* ===================================
   RedSense - Service Page Styles
   =================================== */

/* Service Hero */
.service-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 80px;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(204, 0, 0, 0.15) 0%, transparent 50%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 30px;
}

.service-hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.service-hero p {
    font-size: 20px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Content */
.service-content {
    padding: 80px 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-left: 5px solid #cc0000;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.content-block h2 {
    color: #cc0000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-block p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-block ul li {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.content-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #cc0000;
    font-weight: bold;
}

.content-block ul li strong {
    color: #ffffff;
}

/* Service Features Grid */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border: 1px solid rgba(204, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Block */
.cta-block {
    max-width: 900px;
    margin: 60px auto;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, rgba(13, 13, 13, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 60px;
    text-align: center;
    border: 2px solid rgba(204, 0, 0, 0.3);
    box-shadow: 0 10px 50px rgba(204, 0, 0, 0.2);
}

.cta-block h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-block p {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #cc0000;
    transition: all 0.4s ease;
}

.cta-button:hover {
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.8);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero h1 {
        font-size: 36px;
    }

    .service-icon-large {
        font-size: 60px;
    }

    .content-block {
        padding: 30px;
        margin: 0 20px 40px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 40px 30px;
        margin: 40px 20px;
    }

    .cta-block h2 {
        font-size: 24px;
    }
}
