/* Improved Service Page Styles */

:root {
    --service-primary: #1a1a40;
    --service-secondary: #ff9933;
    --service-accent: #f4e04d;
    --service-text: #444444;
    --service-bg: #ffffff;
    --service-muted: #fbfbfb;
    --service-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-hero {
    padding: 140px 0 120px;
    background: #151535;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--service-bg);
    transform: skewY(-2deg);
}

.service-hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.service-content-section {
    padding: 100px 0;
    background: var(--service-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--service-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content {
    flex: 1;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--service-text);
    margin-bottom: 30px;
}

.intro-highlight {
    background: var(--service-muted);
    padding: 40px;
    border-radius: 24px;
    border-left: 6px solid var(--service-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.intro-highlight p {
    font-style: italic;
    color: var(--service-primary);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Benefits Grid */
.benefits-section {
    padding-top: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--service-transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--service-secondary);
    transform: scaleX(0);
    transition: var(--service-transition);
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

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

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--service-secondary);
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--service-primary);
    margin-bottom: 18px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-top: 15px;
}

/* Expert Section Re-design */
.expert-section {
    padding: 120px 0;
    background: var(--service-muted);
}

.expert-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.expert-img-side {
    flex: 0 0 450px;
    position: relative;
}

.expert-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-content-side {
    flex: 1;
    padding: 70px;
}

.expert-content-side h2 {
    font-size: 2.2rem;
    color: var(--service-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.expert-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--service-secondary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.expert-content-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--service-text);
    margin-bottom: 20px;
}

.expert-cta {
    margin-top: 40px;
}

.btn-primary {
    background: var(--service-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--service-transition);
}

.btn-primary:hover {
    background: var(--service-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .expert-img-side {
        flex: 0 0 350px;
    }
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .expert-card {
        flex-direction: column;
    }
    .expert-img-side {
        flex: none;
        height: 600px;
    }
    .expert-content-side {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.6rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .expert-img-side {
        height: 400px;
    }
}
