/* ============================================
   ANNUAL PASS PAGES
   Source: pass-enquiry.php, pass-payments.php
   ============================================ */

/* --- LAYOUT OVERRIDES --- */
.page-template-full-width #content_left {
    width: 100% !important;
    float: none !important;
    padding-right: 0 !important;
}

.left_title {
    display: block;
    width: 100%;
    clear: both;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.left_title h1 {
    color: var(--secondary-purple);
    font-weight: 800;
    margin-bottom: 5px;
    clear: both;
    display: block;
}

.left_title h2 {
    color: #e05d45;
    /* Keeping this specific accent unless it maps to orange */
    font-weight: 400;
    margin-top: 0;
    font-size: 1.4em;
    clear: both;
}

/* --- FORM CONTAINER --- */
.form_wrap {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-card);
    padding: 20px;
    margin-bottom: 20px;
    clear: both;
    display: block;
    position: relative;
}

/* --- INFO BOX --- */
.pass-info-box {
    background: #f0f8ff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius-card);
    padding: 25px;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-left: 5px solid var(--secondary-purple);
}

.pass-info-box h3 {
    color: var(--secondary-purple);
    margin-top: 0;
    font-size: 1.4em;
    font-weight: 600;
}

/* --- FEATURES LIST --- */
#content_left .pass-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#content_left .pass-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 35px;
    font-size: 1em;
    color: #444;
}

.pass-features li:before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.2em;
}

/* --- PRICING BADGES --- */
.pricing-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.price-badge {
    display: inline-block;
    background: var(--secondary-purple);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 15px;
    min-width: 90px;
    text-align: center;
}

.price-label {
    font-size: 1em;
    color: var(--text-dark);
    font-weight: 600;
}

.value-note {
    font-size: 0.8em;
    color: #e67e22;
    /* Specific orange */
    font-weight: bold;
    margin-left: 10px;
    text-transform: uppercase;
    background: #fff3e0;
    padding: 3px 8px;
    border-radius: 10px;
}

.info-divider {
    border-top: 1px dashed #cce5ff;
    margin: 20px 0;
}

/* --- FORM ELEMENTS --- */
.form_section_title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--secondary-purple);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin: 20px 0 15px 0;
}

.form_section_title:first-child {
    margin-top: 0;
}

.form_input input {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 15px;
}

.form_input input:focus {
    border-color: var(--secondary-purple);
    outline: none;
    box-shadow: 0 0 5px rgba(78, 32, 104, 0.2);
}

.child-row {
    background: #fafafa;
    padding: 15px;
    border-radius: var(--radius-card);
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.child-header {
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- BUTTONS --- */
.btn-action {
    background: #fff;
    border: 2px dashed var(--secondary-purple);
    color: var(--secondary-purple);
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.2s;
}

.btn-action:hover {
    background: #fdfdfd;
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-submit {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    display: block;
    transition: 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background: #96150b;
    transform: translateY(-1px);
}

.honey-pot {
    display: none;
}

/* --- PAYMENT PAGE STYLES --- */
.payment-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-card);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.amount-display {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-red);
    margin: 20px 0;
}

.btn-pay {
    background: var(--secondary-purple);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.btn-pay:hover {
    background: #3a154f;
}

.pass-list {
    text-align: left;
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-card);
    margin-bottom: 20px;
    border: 1px dashed #ccc;
}

.pass-item {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}