/* ===========================
   Service Single Page Styles
   Rapid Property Transfers — Premium Classical Design
   =========================== */

/* ── Container ─────────────────────────────────────────── */

.ss-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ── Section header ────────────────────────────────────── */

.ss-section-header {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.ss-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 16px;
    line-height: 1.2;
}

.ss-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: #5a6373;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */

.ss-hero {
    background-color: var(--color-navy);
    background-image:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(197, 160, 73, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(255,255,255,0.04) 0%, transparent 60%);
    padding: 96px 0 80px;
    text-align: center;
}

.ss-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.ss-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px 6px 10px;
    border-radius: 50px;
    background: rgba(197, 160, 73, 0.15);
    border: 1px solid rgba(197, 160, 73, 0.4);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.ss-hero-eyebrow svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.ss-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
}

.ss-hero-subheadline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.ss-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    max-width: 640px;
    margin: 0;
}

.ss-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.ss-hero.has-bg {
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.ss-hero.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 30, 74, 0.88);
    z-index: 0;
}

.ss-hero.has-bg .ss-container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   SERVICE OVERVIEW
   ============================================================ */

.ss-overview {
    padding: 96px 0;
    background-color: #ffffff;
}

.ss-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: stretch;
}

.ss-overview-grid--no-img {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ss-overview-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.ss-overview-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 20px;
    line-height: 1.2;
}

.ss-overview-body {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 28px;
}

.ss-overview-body p {
    margin: 0 0 16px;
}

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

/* Bullet list */

.ss-overview-bullets {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-overview-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.ss-bullet-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gold);
}

.ss-bullet-icon svg {
    width: 100%;
    height: 100%;
}

/* Image panel
   The grid uses align-items: stretch so both columns are equal height.
   The image is position:absolute inside the container — this is the only
   reliable way to make an <img> fill a variable-height parent, because
   flex:1 on <img> fights the browser's intrinsic aspect-ratio calculation. */

.ss-overview-media {
    position: relative;
    min-height: 460px; /* floor: prevents collapse when text column is very short */
}

.ss-overview-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border: 3px solid var(--color-gold);
    border-radius: 12px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.ss-overview-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(12, 30, 74, 0.12);
}

.ss-overview-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 30, 74, 0.04);
    border-radius: 12px;
    min-height: 320px;
}

.ss-overview-media--placeholder svg {
    width: 96px;
    height: 96px;
}

/* ============================================================
   BENEFITS CARDS
   ============================================================ */

.ss-benefits {
    padding: 96px 0;
    background-color: #f8f9fb;
}

.ss-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ss-benefit-card {
    background: #ffffff;
    border: 1px solid rgba(12, 30, 74, 0.08);
    border-radius: 14px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ss-benefit-card:hover {
    box-shadow: 0 8px 28px rgba(12, 30, 74, 0.09);
    transform: translateY(-2px);
    border-color: rgba(197, 160, 73, 0.3);
}

.ss-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197, 160, 73, 0.14), rgba(197, 160, 73, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.ss-benefit-icon i,
.ss-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.ss-benefit-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.3;
}

.ss-benefit-desc {
    font-size: 0.9375rem;
    color: #5a6373;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */

.ss-steps {
    padding: 96px 0;
    background-color: #ffffff;
}

.ss-step-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ss-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.ss-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 52px;
}

.ss-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-navy);
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ss-step-line {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: linear-gradient(to bottom, var(--color-gold) 0%, rgba(197, 160, 73, 0.2) 100%);
}

.ss-step-content {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(12, 30, 74, 0.08);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(12, 30, 74, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-step-content:hover {
    box-shadow: 0 6px 24px rgba(12, 30, 74, 0.1);
    transform: translateY(-1px);
}

.ss-step:last-child .ss-step-content {
    margin-bottom: 0;
}

.ss-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(197, 160, 73, 0.12), rgba(197, 160, 73, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.ss-step-icon i,
.ss-step-icon svg {
    width: 20px;
    height: 20px;
}

.ss-step-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.3;
}

.ss-step-desc {
    font-size: 0.9375rem;
    color: #5a6373;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   WHO IS THIS FOR — CHECKLIST
   ============================================================ */

.ss-checklist {
    padding: 96px 0;
    background-color: var(--color-navy);
    background-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(197, 160, 73, 0.1) 0%, transparent 65%);
}

.ss-checklist .ss-section-title {
    color: #ffffff;
}

.ss-checklist .ss-section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.ss-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ss-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 73, 0.2);
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    transition: background-color 0.2s, border-color 0.2s;
}

.ss-checklist-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(197, 160, 73, 0.45);
}

.ss-checklist-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--color-gold);
}

.ss-checklist-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================================
   FAQ ACCORDION
   — Uses shared .faq-* classes from home.css (already loaded)
   ============================================================ */

.ss-faq {
    padding: 96px 0;
    background-color: #f8f9fb;
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {

    .ss-hero {
        padding: 72px 0 64px;
    }

    .ss-overview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ss-overview-media {
        max-width: 600px;
        width: 100%;
        height: 420px;
        min-height: unset;
        margin-left: auto;
        margin-right: auto;
        order: -1;
    }

    .ss-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ss-checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */

@media (max-width: 640px) {

    .ss-hero {
        padding: 56px 0 48px;
    }

    .ss-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .ss-hero-ctas .btn {
        width: 100%;
    }

    .ss-overview,
    .ss-benefits,
    .ss-steps,
    .ss-checklist,
    .ss-faq {
        padding: 64px 0;
    }

    .ss-section-header {
        margin-bottom: 40px;
    }

    .ss-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ss-benefit-card {
        padding: 24px 20px;
    }

    .ss-step {
        gap: 20px;
    }

    .ss-step-marker {
        width: 40px;
    }

    .ss-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ss-step-content {
        padding: 20px;
        gap: 8px;
    }

    .ss-checklist-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
    }

}
