/* =====================================================
   RESUME TARGET - SHARED PAGES CSS
   /asset/css/templates/shared-pages.css
   Common styles for Process and Service pages
   v20260123
   ===================================================== */

/* =====================================================
   TOP BAR (Navy) - Consistent across all pages
   ===================================================== */
.top-bar {
    background: var(--color-navy, #1f295e);
    color: #fff;
    font-size: 13px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar .seo-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .top-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.top-bar .top-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar .top-phone {
    color: var(--color-green, #47BB5C);
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.top-bar .top-phone:hover {
    background: rgba(71, 187, 92, 0.15);
    color: #5fcf70;
}

/* =====================================================
   BREADCRUMB NAVIGATION
   ===================================================== */
.breadcrumb {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #47BB5C;
}

.breadcrumb .separator {
    color: #cbd5e1;
    font-size: 12px;
}

.breadcrumb .current {
    color: #1f295e;
    font-weight: 600;
}

/* =====================================================
   SHARED BUTTONS
   ===================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #47BB5C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #3da34d;
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #fff;
    color: #1f295e;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    border-color: #47BB5C;
    background: #f8fafc;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

/* =====================================================
   SHARED CONTAINER
   ===================================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   CTA SECTION (Shared)
   ===================================================== */
.cta-section {
    background: #1f295e;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-note {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* =====================================================
   NAVIGATION (Prev/Next) - Shared
   ===================================================== */
.process-nav,
.service-nav {
    background: #f8fafc;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.process-nav .container,
.service-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
}

.process-nav-item,
.service-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.process-nav-item:hover,
.service-nav-item:hover {
    border-color: #47BB5C;
    box-shadow: 0 4px 12px rgba(71, 187, 92, 0.1);
}

.process-nav-item.prev,
.service-nav-item.prev {
    align-items: flex-start;
}

.process-nav-item.next,
.service-nav-item.next {
    align-items: flex-end;
    text-align: right;
}

.process-nav-label,
.service-nav-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 8px;
}

.process-nav-title,
.service-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
}

.process-nav-placeholder,
.service-nav-placeholder {
    flex: 1;
}

/* =====================================================
   SECTION TITLES (Shared)
   ===================================================== */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f295e;
    text-align: center;
    margin-bottom: 40px;
}

.section-title-service {
    font-size: 32px;
    font-weight: 700;
    color: #1f295e;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* =====================================================
   ALTERNATE SECTION (Gray BG)
   ===================================================== */
.section-alt {
    background: #f8fafc;
    padding: 80px 0;
}

/* =====================================================
   GUARANTEE BOX (Shared)
   ===================================================== */
.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #47BB5C;
    border-radius: 20px;
    text-align: center;
}

.guarantee-box .guarantee-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(71, 187, 92, 0.2);
}

.guarantee-box .guarantee-icon svg {
    width: 36px;
    height: 36px;
    color: #47BB5C;
}

.guarantee-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 16px;
}

.guarantee-box p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.guarantee-box .btn-outline {
    background: #fff;
}

.guarantee-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(71, 187, 92, 0.3);
}

.guarantee-detail {
    font-size: 15px;
    color: #475569;
}

/* =====================================================
   INFO CARDS (Shared)
   ===================================================== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    padding: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.info-card a {
    color: #47BB5C;
    font-weight: 600;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* =====================================================
   TRUST CARDS (Shared)
   ===================================================== */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.trust-card {
    text-align: center;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.trust-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f295e;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* =====================================================
   RESPONSIVE - SHARED
   ===================================================== */
@media (max-width: 991px) {
    .process-nav .container,
    .service-nav .container {
        flex-direction: column;
    }
    
    .process-nav-item.next,
    .service-nav-item.next {
        align-items: flex-start;
        text-align: left;
    }
    
    .trust-cards {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .breadcrumb {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .breadcrumb .container {
        gap: 6px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title-service {
        font-size: 26px;
    }
    
    .guarantee-box {
        padding: 32px 24px;
    }
    
    .guarantee-details {
        flex-direction: column;
        gap: 16px;
    }
}
