/* ==========================================================
   CALL AND RELIEF - OUR PROCESS PAGE STYLESHEET (process.css)
   Pixel-perfect design matching user specification & mockup
   ========================================================== */

/* --- Hero Section (Full Background Cover matching site-wide style) --- */
.process-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-color: #071629;
    overflow: hidden;
    padding: 85px 0 95px 0;
}

.process-hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.process-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background-image: url('hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.process-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #071629 36%, rgba(7, 22, 41, 0.94) 52%, rgba(7, 22, 41, 0.65) 75%, rgba(7, 22, 41, 0.2) 100%);
}

.process-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.process-hero-content {
    max-width: 680px;
}

.process-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 20px;
}

.process-breadcrumbs a {
    color: #94a3b8;
    transition: var(--transition-fast);
}

.process-breadcrumbs a:hover {
    color: var(--color-white);
}

.process-breadcrumbs .crumb-sep {
    font-size: 11px;
    color: #64748b;
}

.process-breadcrumbs .crumb-current {
    color: var(--color-white);
    font-weight: 600;
}

.process-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.14;
    color: var(--color-white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.process-hero-title .text-green {
    color: var(--color-primary);
    display: inline-block;
}

.process-hero-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 26px;
    max-width: 580px;
}

.process-hero-divider {
    width: 72px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* --- Section 1: 5 Detailed Process Steps (Vertical Timeline Stepper) --- */
.process-timeline-section {
    background-color: var(--color-white);
    padding: 110px 0 70px 0;
    position: relative;
}

.process-timeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-timeline-row {
    display: grid;
    grid-template-columns: 320px 80px 1fr 40px;
    gap: 32px;
    align-items: center;
    position: relative;
    margin-bottom: 75px;
    transition: transform 0.3s ease;
}

.process-timeline-row:last-child {
    margin-bottom: 30px;
}

/* 1. Left Media Card with Floating Number Badge */
.step-media-col {
    position: relative;
}

.step-media-card {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(10, 34, 64, 0.09);
    border: 1px solid rgba(226, 232, 240, 0.95);
    height: 200px;
    background-color: #0f172a;
}

.step-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-row:hover .step-card-img {
    transform: scale(1.04);
}

.step-number-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(112, 164, 59, 0.45);
    border: 3px solid var(--color-white);
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-row:hover .step-number-badge {
    transform: scale(1.15);
}

/* 2. Center Timeline Node & Connecting Line */
.step-node-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.step-node-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #0A2240;
    color: var(--color-white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(10, 34, 64, 0.22);
    border: 3px solid var(--color-white);
    position: relative;
    z-index: 4;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-row:hover .step-node-circle {
    background-color: var(--color-primary);
    transform: scale(1.12);
    box-shadow: 0 10px 26px rgba(112, 164, 59, 0.35);
}

.step-vertical-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 55px);
    background: linear-gradient(180deg, rgba(10, 34, 64, 0.2) 0%, rgba(112, 164, 59, 0.35) 100%);
    z-index: 1;
}

/* 3. Right Step Content */
.step-content-col {
    padding-left: 8px;
}

.step-badge-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #0A2240;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.step-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 540px;
}

.step-checks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.check-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    padding: 7px 15px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    transition: all 0.25s ease;
}

.check-pill i {
    color: var(--color-primary);
    font-size: 15px;
}

.process-timeline-row:hover .check-pill {
    background-color: #f1f8ee;
    border-color: rgba(112, 164, 59, 0.35);
    color: #0A2240;
}

/* 4. Right Subtle Guide Arrow */
.step-arrow-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
    opacity: 0.55;
    transition: all 0.3s ease;
}

.process-timeline-row:hover .step-arrow-guide {
    opacity: 1;
    transform: translateY(5px);
}

/* --- Section 2: Pre-Footer Commitment Box ("OUR COMMITMENT" - Your Property, Our Priority) --- */
.process-commitment-section {
    background-color: var(--color-white);
    padding: 20px 0 100px 0;
}

.commitment-banner-card {
    background: linear-gradient(135deg, #f2f9ed 0%, #eaf5e4 100%);
    border: 1.5px solid rgba(112, 164, 59, 0.3);
    border-radius: 20px;
    padding: 46px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(112, 164, 59, 0.08);
}

/* Background Watermark Shield */
.commitment-watermark {
    position: absolute;
    right: -10px;
    bottom: -40px;
    font-size: 260px;
    color: rgba(112, 164, 59, 0.05);
    pointer-events: none;
    z-index: 0;
}

/* Left Column */
.commitment-left {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.commitment-shield-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background-color: var(--color-white);
    box-shadow: 0 6px 18px rgba(112, 164, 59, 0.16);
    flex-shrink: 0;
}

.commitment-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.commitment-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #0A2240;
    line-height: 1.22;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.commitment-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 460px;
}

/* Middle Divider */
.commitment-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(112, 164, 59, 0.28);
    position: relative;
    z-index: 2;
}

/* Right Column */
.commitment-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-commitment-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 12px 34px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(112, 164, 59, 0.35);
    transition: all 0.3s ease;
}

.btn-commitment-book:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(112, 164, 59, 0.45);
}

.commitment-phone-link {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #0A2240;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-fast);
}

.commitment-phone-link:hover {
    color: var(--color-primary);
}

.commitment-phone-link i {
    color: var(--color-primary);
    font-size: 16px;
}

.commitment-subtext {
    font-size: 13.5px;
    line-height: 1.5;
    color: #64748b;
    max-width: 300px;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1100px) {
    .process-timeline-row {
        grid-template-columns: 280px 70px 1fr 30px;
        gap: 24px;
    }

    .commitment-banner-card {
        padding: 40px;
        gap: 32px;
    }

    .commitment-title {
        font-size: 28px;
    }
}

@media (max-width: 900px) {
    .process-hero-title {
        font-size: 44px;
    }

    .process-timeline-row {
        grid-template-columns: 260px 60px 1fr;
    }

    .step-arrow-guide {
        display: none;
    }

    .commitment-banner-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .commitment-divider {
        width: 100%;
        height: 1px;
    }

    .commitment-left {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .process-hero {
        min-height: auto;
        padding: 60px 0 70px 0;
    }

    .process-hero-title {
        font-size: 36px;
    }

    .process-hero-subtitle {
        font-size: 15.5px;
    }

    .process-timeline-section {
        padding: 70px 0 50px 0;
    }

    .process-timeline-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .step-media-card {
        height: 220px;
    }

    .step-node-col {
        display: none;
    }

    .step-content-col {
        padding-left: 0;
    }

    .step-title {
        font-size: 26px;
    }

    .commitment-banner-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .process-hero-title {
        font-size: 30px;
    }

    .step-title {
        font-size: 24px;
    }

    .commitment-title {
        font-size: 24px;
    }
}
