/* ================================================
   PADEL VIDA - FUNNEL STYLES
   3-Step Lead Generation Funnel
   ================================================ */

/* ===== FUNNEL PAGE LAYOUT ===== */
.funnel-page {
    background: linear-gradient(135deg, #1A2B3C 0%, #2D5F7F 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== FUNNEL NAVIGATION ===== */
.funnel-nav {
    background: rgba(26, 43, 60, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.funnel-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(244, 207, 122, 0.15);
    border: 1px solid rgba(244, 207, 122, 0.3);
    border-radius: 50px;
    color: var(--color-golden);
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-golden);
}

/* ===== FUNNEL CONTAINER ===== */
.funnel-container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
}

/* ===== PROGRESS BAR ===== */
.funnel-progress {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-terra-cotta), var(--color-golden));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 33.33%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--color-terra-cotta), var(--color-golden));
    border-color: var(--color-golden);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(200, 107, 75, 0.4);
}

.progress-step.completed .step-circle {
    background: var(--color-olive);
    border-color: var(--color-olive);
    color: var(--color-white);
}

.step-label {
    font-family: var(--font-label);
    font-size: 0.813rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--color-white);
}

/* ===== FUNNEL FORM ===== */
.funnel-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.funnel-form {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    min-height: 500px;
}

.funnel-step {
    display: none;
    animation: fadeInSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.funnel-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-content {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--color-navy);
    text-align: center;
}

.step-description {
    font-size: 1.125rem;
    color: var(--color-olive);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ===== FORM FIELDS ===== */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
}

.form-field input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(107, 122, 90, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-navy);
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-field input:focus {
    outline: none;
    border-color: var(--color-terra-cotta);
    box-shadow: 0 0 0 4px rgba(200, 107, 75, 0.1);
}

.form-field input::placeholder {
    color: rgba(107, 122, 90, 0.4);
}

.field-hint {
    font-size: 0.875rem;
    color: var(--color-olive);
    font-style: italic;
}

/* ===== CAMP SELECTION ===== */
.camp-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    margin-bottom: 2rem;
}

.camp-option {
    position: relative;
}

.camp-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.camp-option label {
    display: block;
    padding: 1.25rem 1.5rem;
    background: var(--color-sand-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.camp-option:hover label {
    border-color: var(--color-terra-cotta);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.camp-option input[type="radio"]:checked + label {
    background: rgba(200, 107, 75, 0.1);
    border-color: var(--color-terra-cotta);
    box-shadow: var(--shadow-md);
}

.camp-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.camp-date {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
}

.camp-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-azure);
    color: var(--color-white);
    border-radius: 50px;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.camp-badge-special {
    background: var(--color-terra-cotta);
}

.camp-details {
    font-size: 0.938rem;
    color: var(--color-olive);
}

.camp-badge-available {
    background: var(--color-olive);
}

.camp-badge-soldout {
    background: #e74c3c;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.camp-waitlist-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e74c3c;
}

.camp-soldout label {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(149, 165, 166, 0.08));
    border: 2px solid #e74c3c;
    position: relative;
    overflow: hidden;
}

.camp-soldout label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.15), transparent);
    animation: shimmer-funnel 3s infinite;
}

@keyframes shimmer-funnel {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.camp-soldout:hover label {
    border-color: #c0392b;
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.25);
}

.camp-soldout input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(149, 165, 166, 0.15));
    border-color: #c0392b;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.camp-special label {
    background: linear-gradient(135deg, rgba(200, 107, 75, 0.08), rgba(244, 207, 122, 0.08));
    border-color: rgba(200, 107, 75, 0.3);
}

/* ===== STEP ACTIONS ===== */
.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-terra-cotta);
    color: var(--color-white);
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-terra-cotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 107, 75, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-ghost {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid rgba(107, 122, 90, 0.2);
}

.btn-ghost:hover {
    background: rgba(107, 122, 90, 0.05);
    border-color: var(--color-olive);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ===== SUCCESS CONTENT ===== */
.funnel-success {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
}

.success-content {
    text-align: center;
    padding: 2rem 0;
}

/* Success Celebration */
.success-celebration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

.success-icon-large {
    position: relative;
    animation: successScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-emoji {
    position: absolute;
    font-size: 3rem;
    animation: floatEmoji 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes successScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Success Title */
.success-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Success Message */
.success-message {
    margin-bottom: 3rem;
}

.success-main {
    font-size: 1.25rem;
    color: var(--color-olive);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.success-sub {
    font-size: 1.125rem;
    color: rgba(26, 43, 60, 0.7);
    line-height: 1.6;
}

.success-sub strong {
    color: var(--color-terra-cotta);
    font-weight: 700;
}

/* Next Steps Section */
.success-next-steps {
    background: rgba(107, 122, 90, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.success-next-steps h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-terra-cotta), var(--color-golden));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.step-text {
    flex: 1;
}

.step-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.step-text span {
    display: block;
    font-size: 0.938rem;
    color: rgba(26, 43, 60, 0.7);
    line-height: 1.5;
}

/* Success Actions */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Success Footer */
.success-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.success-footer p {
    font-size: 0.938rem;
    color: rgba(26, 43, 60, 0.6);
    margin: 0;
}

.success-footer a {
    color: var(--color-terra-cotta);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.success-footer a:hover {
    color: var(--color-terra-cotta-dark);
    text-decoration: underline;
}

/* Old success styles (deprecated) */
.success-icon {
    margin: 0 auto 2rem;
    animation: successScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
}

.success-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-navy);
    font-weight: 500;
}

.success-info-item svg {
    flex-shrink: 0;
    color: #27ae60;
}

/* ===== TRUST ELEMENTS ===== */
.funnel-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 60, 0.95);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10000;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-golden);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .funnel-nav {
        padding: 1rem 0;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .funnel-container {
        padding: 2rem 0;
    }

    .funnel-form {
        padding: 2rem 1.5rem;
        min-height: 450px;
    }

    .step-content {
        min-height: 350px;
    }

    .step-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .progress-steps {
        gap: 0.5rem;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .step-actions {
        flex-direction: column-reverse;
    }

    .btn {
        width: 100%;
    }

    .funnel-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .camp-option label {
        padding: 1rem;
    }

    .camp-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .funnel-form {
        padding: 1.5rem 1rem;
    }

    .form-field input {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .success-info {
        padding: 1.5rem 1rem;
    }

    .funnel-success {
        padding: 2rem 1.5rem;
    }

    .success-celebration {
        margin-bottom: 2rem;
    }

    .success-icon-large svg {
        width: 100px;
        height: 100px;
    }

    .success-emoji {
        font-size: 2.5rem;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-main {
        font-size: 1.125rem;
    }

    .success-sub {
        font-size: 1rem;
    }

    .success-next-steps {
        padding: 1.5rem;
    }

    .success-next-steps h3 {
        font-size: 1.25rem;
    }

    .step-item {
        padding: 1rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .step-text strong {
        font-size: 1rem;
    }

    .step-text span {
        font-size: 0.875rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* ===== MONTH SELECTION (Step 2) ===== */
.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.month-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.month-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-terra-cotta);
}

.month-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1rem;
}

.month-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.month-info {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-olive);
}

.month-info.month-soldout {
    color: #95a5a6;
}

.month-dates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month-dates-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-left: 3px solid var(--color-olive);
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-navy);
    transition: all 0.2s ease;
    position: relative;
}

.month-dates-list li:hover {
    background: #e9ecef;
    border-left-color: var(--color-terra-cotta);
    transform: translateX(3px);
}

.month-dates-list li:last-child {
    margin-bottom: 0;
}

.month-dates-list li::before {
    content: "📅";
    margin-right: 0.5rem;
    font-size: 1rem;
}

.month-dates-list li.special-date {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left-color: #e74c3c;
    font-weight: 600;
}

.month-dates-list li.special-date .special-label {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    background: #e74c3c;
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.month-dates-list li.soldout-date {
    background: #f5f5f5;
    border-left-color: #95a5a6;
    color: #999;
    opacity: 0.7;
}

.month-dates-list li.soldout-date::before {
    content: "🚫";
}

/* ===== PACKAGE SELECTION (Step 3) ===== */
.package-selection,
.upsell-selection {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(200, 107, 75, 0.2);
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-option {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.package-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(200, 107, 75, 0.1), rgba(244, 207, 122, 0.1));
}

.package-option input[type="radio"]:checked ~ .package-selected {
    display: block;
}

.package-option label {
    display: block;
    padding: 2rem;
    cursor: pointer;
    min-height: 100%;
}

.package-premium {
    border-color: var(--color-terra-cotta);
}

.package-badge-inline {
    display: inline-block;
    background: var(--color-terra-cotta);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.package-header h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-navy);
}

.package-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-terra-cotta);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-navy);
    font-size: 0.938rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-savings {
    background: var(--color-terra-cotta);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.938rem;
}

/* ===== UPSELL SELECTION ===== */
.upsell-description {
    text-align: center;
    color: rgba(26, 43, 60, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.upsell-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.upsell-option {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.upsell-option:hover {
    border-color: var(--color-terra-cotta);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.upsell-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.upsell-option input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, rgba(200, 107, 75, 0.1), rgba(244, 207, 122, 0.1));
}

.upsell-option label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
}

.upsell-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.upsell-info {
    flex: 1;
}

.upsell-info h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.upsell-info p {
    color: rgba(26, 43, 60, 0.7);
    font-size: 0.938rem;
    margin: 0;
}

.upsell-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-terra-cotta);
    flex-shrink: 0;
}

/* ===== PRICE SUMMARY ===== */
.price-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-terra-cotta), var(--color-golden));
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.price-summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.total-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
}

/* ===== SUMMARY (Step 4) ===== */
.funnel-summary {
    background: rgba(107, 122, 90, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.funnel-summary h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.summary-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-navy);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-upsells {
    list-style: none;
    padding: 0.5rem 0 0 1rem;
    margin: 0;
}

.summary-upsells li {
    padding: 0.25rem 0;
    color: rgba(26, 43, 60, 0.8);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--color-terra-cotta);
}

.summary-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-terra-cotta);
}


/* Additional styles for new elements */
.camp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.camp-price {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-terra-cotta);
}

.camp-spots {
    font-size: 0.875rem;
    color: var(--color-olive);
    font-weight: 600;
}

.camp-special {
    display: block;
    font-size: 0.875rem;
    color: var(--color-terra-cotta);
    font-weight: 600;
    margin-top: 0.25rem;
}

.btn-secondary {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid rgba(107, 122, 90, 0.2);
}

.btn-secondary:hover {
    background: rgba(107, 122, 90, 0.05);
    border-color: var(--color-olive);
}

.form-field select {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(107, 122, 90, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-navy);
    transition: all 0.3s ease;
    background: var(--color-white);
    cursor: pointer;
}

.form-field select:focus {
    outline: none;
    border-color: var(--color-terra-cotta);
    box-shadow: 0 0 0 4px rgba(200, 107, 75, 0.1);
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.camp-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===== LEGAL CHECKBOXES ===== */
.legal-checkboxes {
    margin-top: 2rem;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-field label {
    cursor: pointer;
    font-size: 0.938rem;
    line-height: 1.5;
    color: var(--color-navy);
}

.checkbox-field label a {
    color: var(--color-terra-cotta);
    text-decoration: underline;
}

.checkbox-field label a:hover {
    color: var(--color-terra-cotta-dark);
}

