﻿/* Background watermark */
.background-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Main container styling */
.container-fluid {
    position: relative;
    background: white;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Progress indicator */
.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.step {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
    transition: color 0.3s ease;
}

    .step span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #e9ecef;
        color: #6c757d;
        margin-right: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .step.active {
        color: #007bff;
    }

        .step.active span {
            background: #007bff;
            color: white;
        }

    .step.completed {
        color: #28a745;
    }

        .step.completed span {
            background: #28a745;
            color: white;
        }

/* Button group styling */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.rounded-button {
    border: none;
    border-radius: 25px;
    padding: 15px 25px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    white-space: normal;
}

    .rounded-button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .rounded-button.selected {
        background-color: #28a745;
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(40, 167, 69, 0.3);
        border: 2px solid #1e7e34;
        color: white !important;
    }

        .rounded-button.selected:hover {
            background-color: #218838 !important;
            color: white !important;
        }

/* Well styling */
.wellparent {
    width: 100%;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

@media (min-width: 1024px) {
    .wellparent {
        width: 70%;
        margin: 0 auto 20px auto;
    }
}

/* Tooltip styling */
.event-tooltip {
    display: none;
    color: #222;
    width: 300px;
    height: auto;
    background-color: #f5f5f5;
    position: fixed;
    right: 20px;
    top: 20px;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #e3e3e3;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .event-tooltip {
        display: block;
    }
}

.event-tooltip p {
    font-size: 16px;
    color: #222;
    text-decoration: none;
    margin-bottom: 10px;
}

.tooltip-divider {
    width: 80%;
    height: 2px;
    background-color: #222;
    margin: 10px auto;
}

/* Form styling */
.control-label {
    text-align: left;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (min-width: 1024px) {
    .control-label {
        text-align: right;
    }
}


/* Radio button styling */
.radio-inline {
    display: inline-block;
    margin-right: 15px;
    font-weight: normal;
}

    .radio-inline input[type="radio"] {
        margin-right: 5px;
    }

/* Contact button styling */
.contact-btn {
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        transform: translateY(-1px);
    }

/* Alert styling */
.alert {
    border-radius: 4px;
    padding: 12px;
    margin-top: 10px;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Button styling */
.btn {
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn:hover:not(:disabled) {
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rounded-button {
        width: 100%;
        margin-bottom: 10px;
    }

    .event-tooltip {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        margin-bottom: 20px;
    }

    .wellparent {
        padding: 15px;
    }

    .step-indicators {
        flex-direction: column;
        gap: 10px;
    }

    .step {
        justify-content: center;
    }
}

/* Form validation styling */
.has-error .form-control {
    border-color: #dc3545;
}

.text-danger {
    color: #dc3545;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Smooth transitions */
* {
    transition: opacity 0.3s ease;
}

/* Hide/show animations */
[data-bind*="visible"] {
    transition: all 0.3s ease;
}

/* Icon styling */
.fa-question-circle {
    cursor: help;
    margin-left: 5px;
}

    .fa-question-circle:hover {
        color: #0056b3 !important;
    }

/* Improved spacing */
.mt-4 {
    margin-top: 2rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

/* Progress bar styling */
.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: #007bff;
    transition: width 0.6s ease;
}

/* Enhanced form styling */
.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

/* Spinner styling */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Gap utility */
.gap-3 {
    gap: 1rem;
}

.footer-bot {
    background-color: #0870B7;
}

.footer-bot a:hover {
    text-decoration:none;
    color: #E5157E !important;
}

    .footer-bot a {
        background-color:transparent;
        color:white;
    }

.footer-bot a:hover a:active {
        outline:0;
 }

    .footer-bot h3 {
        font-family: "neue-haas-grotesk-display", Sans-serif;
        font-weight: 700;
        font-size: 38px;
        color: white;
    }

    .footer-bot h5 {
        font-family: "neue-haas-grotesk-display", Sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
        color: white;
    }
footer#colophon {
    font-size: 85%;
}

    .footer-bot p {
        color: white;
        font-size: 1.1em;
        letter-spacing: 0.6px;
        padding: initial;
        height: auto;
        font-family: "neue-haas-grotesk-display", Sans-serif;
        font-weight: 400;
    }

.footer-mid {
    text-align: center;
    font-family: "neue-haas-grotesk-display", Sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    letter-spacing: 0.6px;
}

.footer-right {
    text-align: right;
}


/* Flex utilities */
.d-flex {
    display: flex;
}

/* Text utilities */
.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
