/* ===========================
   ENHANCED FORWARD MOTION v2
   =========================== */

/* --- 1. Section Layout --- */
.forward-motion {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(30, 30, 30, 0.4), transparent 70%);
}

.forward-motion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* --- 2. Action Cards Grid --- */
.action-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto 80px;
}

/* --- 3. Card Base Styles --- */
.action-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.action-card:hover {
    background: rgba(15, 15, 15, 0.6);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
    z-index: 10;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.03), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.action-card:hover .card-glow {
    opacity: 1;
}

/* --- 4. Card Header & Typography --- */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.card-badge.secure {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50px;
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.card-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- 5. Inputs & Options --- */
.package-selector,
.consultation-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.selector-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    display: block;
}

/* Shared Option Styles */
.package-option,
.consult-option {
    display: flex;
    align-items: center;
    /* Align center vertically */
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.package-option:hover,
.consult-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.consult-option {
    align-items: flex-start;
    /* Align top for consult options with lists */
    flex-direction: row-reverse;
    /* Put check on right like others if desired, or keep structure */
    justify-content: space-between;
}

/* Hide Default Radio */
.package-option input,
.consult-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Selected State (CSS Driven) */
.package-option:has(input:checked),
.consult-option:has(input:checked) {
    background: rgba(197, 160, 89, 0.08);
    /* Gold hint */
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
    /* crisp border */
}

/* Text & Layout inside options */
.option-content,
.option-card {
    flex: 1;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.option-name {
    font-weight: 500;
    color: #e5e5e5;
    font-size: 1rem;
}

.package-option:has(input:checked) .option-name,
.consult-option:has(input:checked) .option-name {
    color: var(--color-accent);
}

.option-price {
    font-weight: 600;
    color: var(--color-accent);
}

.option-description,
.option-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.option-badge.free {
    background: var(--color-accent);
    color: black;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* Consult Features List */
.option-features {
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.option-features li {
    font-size: 0.8rem;
    color: #a3a3a3;
    padding: 2px 0;
}

/* Check Circle */
.option-check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 15px;
    /* Separation from content */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: transparent;
}

/* Check SVG */
.option-check svg {
    width: 12px;
    height: 12px;
    color: black;
    /* Checkmark color */
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s cubic-bezier(0.5, 3, 0.5, 1);
    /* Bouncy */
}

/* Checked State for Check Circle */
.package-option input:checked~.option-check,
.consult-option input:checked~.option-check {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.package-option input:checked~.option-check svg,
.consult-option input:checked~.option-check svg {
    opacity: 1;
    transform: scale(1);
}


/* --- 6. Custom Amount Input --- */
.custom-amount-input {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 8px;
    width: 100px;
}

.currency-symbol {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-right: 4px;
}

.custom-amount-input input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    text-align: right;
    padding: 0;
}

/* --- 7. Time Slots (Consult) --- */
.time-slots-preview {
    margin: 25px 0;
}

.slots-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.slots-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slot-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: default;
    /* Just visuals */
    transition: all 0.2s;
}

.slot-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- 8. Order Summary (Payment) --- */
.order-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #a3a3a3;
}

.summary-row.total {
    margin-top: 15px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
}

.summary-row.total .summary-value {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* --- 9. CTAs --- */
.card-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    text-decoration: none;
}

.cta-arrow {
    transition: transform 0.3s;
}

.card-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.card-cta.primary {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.card-cta.primary:hover {
    background: var(--color-accent);
    color: black;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

.card-cta.gold {
    background: linear-gradient(135deg, #C5A059 0%, #E1B32A 100%);
    color: black;
    border: none;
}

.card-cta.gold:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

/* --- 10. Card Footer & Payment Methods --- */
.card-footer {
    margin-top: 20px;
    text-align: center;
}

.footer-note {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-methods {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.methods-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.methods-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #888;
}

.method-icon svg {
    transition: color 0.2s;
}

.method-icon:hover svg {
    color: white;
}

/* --- 11. Divider OR --- */
.cards-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* fixed width column */
    position: relative;
    margin: 0 auto;
}

.divider-text {
    width: 40px;
    height: 40px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
}

.cards-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

/* --- 12. Trust Section --- */
.trust-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.trust-title {
    display: block;
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    margin-bottom: 4px;
}

.trust-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- 13. Quick Help --- */
.quick-help {
    margin-top: 80px;
    text-align: center;
}

.help-label {
    display: block;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.help-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.help-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
    color: white;
}

/* --- 14. Responsive --- */
@media (max-width: 900px) {
    .action-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards-divider {
        height: 60px;
        width: 100%;
        margin: 20px 0;
    }

    .cards-divider::before {
        width: 100%;
        height: 1px;
    }

    .trust-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .help-links {
        flex-direction: column;
        align-items: center;
    }
}