﻿/* Process Timeline */
.process-timeline-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1.5px solid #BD7F06;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BD7F06;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #5c3e18;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-text {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #5c3e18;
    text-align: center;
    white-space: nowrap;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(189, 127, 6, 0.2);
    margin-top: 25px;
    margin-left: -15px;
    margin-right: -15px;
    z-index: 1;
}

@media (max-width: 576px) {
    .step-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .step-text {
        font-size: 10px;
        margin-top: 8px;
    }

    .step-line {
        margin-top: 19px;
    }

    .step-dot {
        width: 15px;
        height: 15px;
        font-size: 9px;
    }
}

/* Price */
.cta-minimal {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 20px;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-price {
    font-weight: 700;
    color: #5c3e18;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.cta-sep {
    width: 1px;
    height: 14px;
    background: #cbd5e1;
}

.cta-meta {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

    .cta-meta i {
        color: #BD7F06;
        margin-right: 4px;
        font-size: 0.85rem;
    }

@media (max-width: 576px) {
    .cta-minimal {
        padding: 8px 16px;
    }

    .cta-price {
        font-size: 1rem;
    }

    .cta-meta {
        font-size: 0.8rem;
    }
}

/* Notice Form */
.form-container {
    background: #fffbf3;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(92, 62, 24, 0.1);
    padding: 2.5rem;
    margin: 3rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
}

    .form-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(92, 62, 24, 0.15);
    }

.form-section {
    margin-bottom: 2.5rem;
}

    .form-section h3 {
        font-size: 1.75rem;
        font-weight: 600;
        color: #5c3e18;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

        .form-section h3::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #BD7F06;
            position: absolute;
            bottom: -5px;
            left: 0;
            border-radius: 2px;
        }

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

    .form-group label {
        font-size: 0.95rem;
        font-weight: 500;
        color: #5c3e18;
        margin-bottom: 0.5rem;
        display: block;
        transition: color 0.3s ease;
    }

.form-control {
    border: 1px solid #5c3e18;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #5c3e18;
    transition: all 0.3s ease;
    background: #fff8e6;
}

    .form-control:focus {
        outline: none;
        border-color: #BD7F06;
        box-shadow: 0 0 0 3px rgba(189, 127, 6, 0.2);
        background: white;
    }

    .form-control::placeholder {
        color: #8b6f47;
    }

.nice-select {
    width: 100%;
    border: 1px solid #5c3e18;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: #fff8e6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 48px;
    line-height: normal;
}

    .nice-select .current {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nice-select:focus {
        border-color: #BD7F06;
        box-shadow: 0 0 0 3px rgba(189, 127, 6, 0.2);
    }

    .nice-select .list {
        border-radius: 0.5rem;
        box-shadow: 0 5px 15px rgba(92, 62, 24, 0.1);
        max-height: 200px;
        overflow-y: auto;
        background: #fff2d3;
    }

    .nice-select .option {
        padding: 0.75rem 1rem;
        color: #5c3e18;
        display: flex;
        align-items: center;
    }

        .nice-select .option:hover,
        .nice-select .option.selected {
            background: #BD7F06;
            color: white;
        }

.error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}


.btn-primary {
    background: linear-gradient(90deg, #BD7F06, #5c3e18);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px; /* Fixed height to ensure consistent centering */
    line-height: normal; /* Normalize line-height for text */
}

    .btn-primary:hover {
        background: linear-gradient(90deg, #5c3e18, #BD7F06);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(189, 127, 6, 0.4);
    }

.highlight-link {
    color: #BD7F06;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .highlight-link:hover {
        color: #5c3e18;
        text-decoration: underline;
    }

.notice-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5c3e18;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.notice-text p {
    font-size: 1.1rem;
    color: #5c3e18;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Ensure Font Awesome icons render */
.fas {
    display: inline-block;
    line-height: 1;
}

.faq-section {
    background-color: #f7f2e8 !important;
}

@media (max-width: 768px) {

    .notice-text h1 {
        font-size: 1.5rem;
        text-align: left;
    }

    .notice-text p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }

    .form-container {
        padding: 2rem 0.5rem;
        margin-top: 1rem;
    }

    .form-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .btn-primary {
        width: 100%;
        padding: 0.75rem;
        height: 44px; /* Adjusted for mobile */
    }

    .nice-select {
        height: 44px;
    }
}

/* TWO-COLUMN SPLIT */
.trust-split-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 28px;
}

    .trust-split-item:last-child {
        margin-bottom: 0;
    }

.trust-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
}

.trust-split-title {
    font-size: 16px;
    font-weight: 600;
    color: #24190a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.trust-split-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 576px) {
    .trust-split-item {
        padding-left: 22px;
        margin-bottom: 24px;
    }

    .trust-dot {
        width: 8px;
        height: 8px;
        top: 5px;
    }

    .trust-split-title {
        font-size: 14px;
    }

    .trust-split-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
}
