/* Service Page Variables */
:root {
    --primary-burgundy: #7A0026;
    --primary-burgundy-dark: #5a001c;
    --text-black: #000000;
    --text-grey: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(122, 0, 38, 0.15);
    --border-radius: 12px;
}

.service-page {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

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

/* 1. Hero Section */
.service-hero {
    background: linear-gradient(135deg, #2c000e 0%, #7A0026 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    /* Slanted edge */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-burgundy);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 2. What We Offer */
.what-we-offer {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-burgundy);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-burgundy);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.8;
    text-align: left;
    margin-top: 15px;
}

/* RTL Support for feature desc */
html[dir="rtl"] .feature-desc {
    text-align: right;
}

/* 3. How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting Line */
.steps-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-light);
    /* Gap effect */
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* 4. Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(122, 0, 38, 0.1);
    color: var(--primary-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.reason-content p {
    font-size: 0.95rem;
    color: var(--text-grey);
}

/* 5. Pricing Teaser */
.pricing-teaser {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.teaser-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* 6. FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    /* RTL handled below */
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-burgundy);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-grey);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
    padding-bottom: 20px;
}

/* 7. Final CTA */
.final-cta {
    padding: 80px 0;
    background-color: var(--primary-burgundy);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-burgundy);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* RTL Support */
html[dir="rtl"] .service-hero::after {
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    /* Flip slant */
}

html[dir="rtl"] .faq-question {
    text-align: right;
}

html[dir="rtl"] .faq-question::after {
    margin-right: auto;
    margin-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .steps-container::before {
        width: 2px;
        height: 100%;
        left: 30px;
        /* Align with circles */
        top: 0;
    }

    .step-item {
        display: flex;
        text-align: left;
        gap: 20px;
        padding: 0;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
    }
}