/* === SERVICE DETAIL PAGE MODERN 2025 === */

/* Service Hero Modern */
.service-hero-modern {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(21, 106, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 196, 25, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image:
        repeating-linear-gradient(45deg, var(--brand-green) 0px, var(--brand-green) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
}

/* Service Badge Modern */
.service-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(21, 106, 47, 0.1), rgba(26, 128, 64, 0.1));
    border: 2px solid rgba(21, 106, 47, 0.2);
    border-radius: 50px;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Title Modern */
.service-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-description-modern {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Synonyms Modern */
.service-synonyms-modern {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.synonyms-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.synonyms-label i {
    color: var(--brand-green);
}

.synonyms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.synonym-tag {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.synonym-tag:hover {
    background: rgba(21, 106, 47, 0.05);
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-2px);
}

/* Service Hero Actions */
.service-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(21, 106, 47, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(21, 106, 47, 0.4);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-hero-secondary:hover {
    background: var(--brand-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(21, 106, 47, 0.3);
}

/* Service CTA Card Modern */
.service-cta-card-modern {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(21, 106, 47, 0.1);
    position: sticky;
    top: 100px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.cta-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.cta-card-body {
    margin-bottom: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #666666;
    font-weight: 500;
}

.cta-feature i {
    color: #28a745;
    font-size: 1.1rem;
}

.cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cta-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: white;
    border: none;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 106, 47, 0.3);
    color: white;
}

.btn-cta-phone i {
    font-size: 1.5rem;
}

.btn-cta-phone div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-cta-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    background: white;
    color: var(--brand-green);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-form:hover {
    background: rgba(21, 106, 47, 0.05);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

/* Service Content Section */
.service-content-section {
    padding: 4rem 0;
    background: white;
}

.service-content-modern {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f8f9fa;
    margin-bottom: 3rem;
}

.content-header-modern {
    margin-bottom: 2rem;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(21, 106, 47, 0.1);
    border-radius: 50px;
    color: var(--brand-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.content-body-modern {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
}

.content-body-modern h2,
.content-body-modern h3 {
    color: var(--brand-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body-modern ul,
.content-body-modern ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-body-modern li {
    margin-bottom: 0.75rem;
}

.content-body-modern p {
    margin-bottom: 1.5rem;
}

/* FAQ Section Modern */
.faq-section-modern {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f8f9fa;
}

.faq-header-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.faq-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-title {
    font-size: 2rem;
    font-weight: 900;
    color: #333333;
    margin: 0;
}

.faq-subtitle {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.faq-accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-modern {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question-modern:hover {
    background: rgba(21, 106, 47, 0.05);
}

.faq-question-modern.active {
    background: rgba(21, 106, 47, 0.1);
}

.faq-q-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-q-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-green);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-q-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
}

.faq-arrow {
    color: var(--brand-green);
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.faq-question-modern.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer-collapse {
    transition: all 0.3s ease;
}

.faq-answer-modern {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-a-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-yellow);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-answer-modern p {
    flex: 1;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

/* Sidebar Modern */
.service-sidebar-modern {
    position: sticky;
    top: 100px;
}

.sidebar-cta-card-modern {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(21, 106, 47, 0.1);
    margin-bottom: 2rem;
}

.sidebar-cta-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.sidebar-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.sidebar-subtitle {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

.sidebar-cta-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.sidebar-btn-primary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: white;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 106, 47, 0.3);
    color: white;
}

.sidebar-btn-primary i {
    font-size: 1.25rem;
}

.btn-label-sidebar {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.btn-value-sidebar {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.sidebar-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.875rem;
    background: white;
    color: var(--brand-green);
    border: 2px solid #e9ecef;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-btn-secondary:hover {
    background: rgba(21, 106, 47, 0.05);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

.sidebar-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-feature-item i {
    color: #28a745;
}

/* Other Services Card */
.sidebar-services-card-modern {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(21, 106, 47, 0.1);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #156a2f;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.sidebar-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.other-service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.other-service-link:hover {
    background: rgba(21, 106, 47, 0.1);
    color: var(--brand-green);
    transform: translateX(5px);
}

.other-service-link i {
    color: var(--brand-green);
    font-size: 0.875rem;
}

/* CTA Final Modern */
.service-cta-final-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.cta-final-card {
    background: white;
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(21, 106, 47, 0.1);
}

.cta-final-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cta-final-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-final-text {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-final-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(21, 106, 47, 0.3);
}

.btn-final-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(21, 106, 47, 0.4);
    color: white;
}

.btn-final-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-final-secondary:hover {
    background: var(--brand-green);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 106, 47, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .service-title-modern {
        font-size: 2.5rem;
    }

    .service-cta-card-modern,
    .service-sidebar-modern {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .cta-final-card {
        padding: 3rem 2rem;
    }

    .cta-final-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-title-modern {
        font-size: 2rem;
    }

    .service-hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-final-actions {
        flex-direction: column;
    }

    .btn-final-primary,
    .btn-final-secondary {
        width: 100%;
        justify-content: center;
    }
}

