/* Additional Services Page Styles */

/* Hero */
.add-hero {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.add-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.add-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
}

.add-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.add-hero-content .section-tag {
    margin-bottom: 1.25rem;
}

.add-hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.add-hero-content h1 span {
    color: var(--primary-green);
}

.add-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Container */
.add-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Feature Sections */
.add-feature-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.add-feature-section.alt {
    background: var(--light-gray);
}

.add-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.add-feature-content.reverse {
    direction: rtl;
}

.add-feature-content.reverse > * {
    direction: ltr;
}

.add-feature-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Service Tag */
.add-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.add-service-tag i {
    font-size: 0.9rem;
}

.add-feature-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.25rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.add-feature-text .lead {
    font-size: 1.15rem;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.add-feature-text p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Check List */
.add-check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.add-check-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--dark-gray);
    font-size: 0.97rem;
}

.add-check-item i {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

/* More Section */
.add-more-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3a9e3e 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.add-more-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.add-more-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.add-more-content i {
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    display: block;
}

.add-more-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.add-more-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .add-feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .add-feature-content.reverse {
        direction: ltr;
    }

    .add-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .add-hero {
        padding: 6rem 1.5rem 4rem;
    }

    .add-hero-content h1 {
        font-size: 2rem;
    }

    .add-feature-image img {
        height: 260px;
    }

    .add-feature-text h2 {
        font-size: 1.75rem;
    }

    .add-more-content h2 {
        font-size: 1.75rem;
    }
}
