/* ===========================
   SERVICE PAGE EXTRA STYLES
   Extends style.css
   =========================== */

/* ===== SERVICE PAGE HERO ===== */
.service-page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--dark-900);
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(207, 166, 116, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.service-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(207, 166, 116, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(207, 166, 116, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
}

.service-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-page-breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

.service-page-breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 0.7rem;
}

.service-page-breadcrumb span {
    color: var(--gold);
    font-weight: 600;
}

.service-page-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.service-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.service-hero-icon-wrap {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    background: rgba(207, 166, 116, 0.07);
    border: 1px solid var(--border);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatIcon 5s ease-in-out infinite;
}

.service-hero-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(207, 166, 116, 0.3), transparent, rgba(207, 166, 116, 0.1));
    z-index: -1;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== SERVICE CONTENT AREA ===== */
.service-content {
    background: var(--dark-800);
    padding: 80px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
}

/* ===== MAIN ARTICLE ===== */
.service-article {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.85;
    border-right: 3px solid var(--gold);
    padding-right: 1.5rem;
}

.article-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.article-body p {
    margin-bottom: 1.2rem;
}

.article-body p:last-child {
    margin-bottom: 0;
}

/* ===== STEPS LIST ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.step-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--dark-700);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    transition: var(--transition);
}

.step-item:hover {
    border-color: var(--border-hover);
    transform: translateX(-4px);
}

.step-num {
    width: 34px;
    height: 34px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0a0c10;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.highlight-box {
    background: var(--dark-700);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem;
    transition: var(--transition);
}

.highlight-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.highlight-box h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.highlight-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SIDEBAR ===== */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: var(--dark-700);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.sidebar-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sidebar-card h3::before {
    content: '';
    display: block;
    width: 3px;
    height: 18px;
    background: var(--gradient-gold);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Contact CTA card */
.contact-cta-card {
    background: linear-gradient(135deg, rgba(207, 166, 116, 0.12), rgba(207, 166, 116, 0.04));
    border-color: rgba(207, 166, 116, 0.2);
}

.contact-cta-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-cta-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.contact-cta-card .cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition);
    direction: ltr;
}

.contact-cta-card .cta-phone:hover {
    color: var(--gold-light);
}

/* Other services nav */
.other-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.other-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid transparent;
}

.other-service-link:hover {
    background: rgba(207, 166, 116, 0.08);
    border-color: var(--border);
    color: var(--text-primary);
    transform: translateX(-3px);
}

.other-service-link.current {
    background: rgba(207, 166, 116, 0.1);
    border-color: rgba(207, 166, 116, 0.2);
    color: var(--gold);
    font-weight: 600;
}

.other-service-link svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* ===== BOTTOM SERVICES GRID ===== */
.more-services {
    background: var(--dark-900);
    padding: 80px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .service-hero-content {
        grid-template-columns: 1fr;
    }

    .service-hero-icon-wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-page-hero {
        padding: 130px 0 70px;
    }

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