/* Styles for SEO landing pages (components/ServiceLandingPage.tsx) */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 127, 14, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 127, 14, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 127, 14, 0.3);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 127, 14, 0.14);
    border: 1px solid rgba(255, 127, 14, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #ff7f0e;
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.35rem;
}

.service-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.9rem 1.25rem;
    margin: 0.6rem 0;
    border-left: 3px solid var(--accent-color, #ff7f0e);
    background: rgba(255, 127, 14, 0.05);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.service-list li:hover {
    background: rgba(255, 127, 14, 0.1);
    transform: translateX(6px);
}

.service-list li i {
    color: #ff7f0e;
}

.landing-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.region-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.region-chip {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 127, 14, 0.35);
    background: rgba(255, 127, 14, 0.06);
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

a.region-chip:hover {
    background: rgba(255, 127, 14, 0.2);
    color: #fff;
}

.process-step {
    position: relative;
    padding-top: 0.5rem;
}

.process-step .step-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 127, 14, 0.35);
}

.landing-faq .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 127, 14, 0.15);
    border-radius: 14px !important;
    margin-bottom: 0.9rem;
    overflow: hidden;
}

.landing-faq .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: none;
}

.landing-faq .accordion-button:hover {
    color: #ff7f0e;
}

.landing-faq .accordion-button:not(.collapsed),
.landing-faq .accordion-button:not(.collapsed):hover {
    background: rgba(255, 127, 14, 0.14);
    color: #ff7f0e;
}

.landing-faq .accordion-button::after {
    filter: invert(1);
}

.landing-intro a {
    color: #ff7f0e;
    font-weight: 600;
}

.landing-faq .accordion-body {
    color: rgba(255, 255, 255, 0.8);
}

.landing-cta {
    border-radius: 24px;
    padding: 3rem 2rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 127, 14, 0.25), transparent 35%),
        linear-gradient(135deg, #0d0d0d 0%, #1b140d 100%);
    border: 1px solid rgba(255, 127, 14, 0.25);
}

.btn-accent {
    background: linear-gradient(135deg, #ff7f0e 0%, #ff9f4d 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 127, 14, 0.35);
}

.btn-outline-accent {
    border: 2px solid #ff7f0e;
    color: #ff7f0e;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-accent:hover {
    background: rgba(255, 127, 14, 0.1);
    color: #ff7f0e;
}

.related-links a {
    color: #ff7f0e;
}
