/* France Launch Cost Calculator Styles */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

#flcc-calculator {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    /* Brand gradient: deep navy -> teal */
    background: linear-gradient(180deg, #071033 0%, #064f5a 65%, #00778a 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    color: #ffffff;
}

#flcc-calculator h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

#flcc-calculator > p {
    text-align: center;
    color: #e8f4f8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.flcc-question {
    margin-bottom: 25px;
    padding: 25px;
    /* white cards on the dark brand background for contrast */
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(2,6,23,0.12);
    border: none;
    transition: all 0.3s ease;
    color: #163248;
}

.flcc-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.flcc-question h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.flcc-question label {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.18s ease;
    background: #f7fafc;
    border: 1px solid #e6eef2;
    font-weight: 500;
    color: #163248;
    font-family: 'Roboto', sans-serif;
}

.flcc-question label:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.flcc-question input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.15);
    accent-color: #00778a;
}

.flcc-question input[type="radio"]:checked + label,
.flcc-question input[type="radio"]:checked + * {
    background: linear-gradient(90deg,#00778a 0%,#064f5a 100%);
    color: #fff; /* ensure checked state has readable text */
    border-color: transparent;
}

#flcc-contact-info {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(2,6,23,0.08);
    border: 1px solid rgba(2,6,23,0.04);
}

#flcc-contact-info h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

#flcc-contact-info > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
    font-weight: 400;
}

#flcc-contact-info label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

#flcc-contact-info input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #d7e8ea;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.16s ease;
    background: #fbfdfe;
    color: #163248;
}

#flcc-contact-info input:focus {
    outline: none;
    border-color: #00778a;
    box-shadow: 0 6px 18px rgba(0,119,138,0.08);
}

#flcc-contact-info input::placeholder {
    color: #adb5bd;
}

#flcc-result {
    margin-top: 30px;
    padding: 28px;
    background: linear-gradient(90deg,#00778a 0%,#064f5a 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(2,6,23,0.08);
    border: none;
    color: white;
}

#flcc-result h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

#flcc-result p {
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
}

#flcc-cost-range {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 18px 0;
    text-shadow: 0 3px 6px rgba(2,6,23,0.25);
    display: block;
}

button {
    background: linear-gradient(90deg,#00778a 0%,#064f5a 100%);
    color: white;
    padding: 12px 26px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: all 0.22s ease;
    box-shadow: 0 6px 18px rgba(0,119,138,0.12);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

#flcc-send-report {
    background: linear-gradient(90deg,#28a745 0%,#20c997 100%);
    margin-top: 18px;
}

#flcc-send-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32,201,151,0.14);
}

/* Responsive Design */
@media (max-width: 768px) {
    #flcc-calculator {
        margin: 10px;
        padding: 20px;
        border-radius: 15px;
    }

    #flcc-calculator h2 {
        font-size: 2rem;
    }

    .flcc-question {
        padding: 20px;
    }

    #flcc-contact-info,
    #flcc-result {
        padding: 20px;
    }

    button {
        width: 100%;
        padding: 18px;
    }
}

/* Progress bar */
#flcc-progress { margin-bottom: 1rem; }
#flcc-progress-bar { background: #e6f2f1; border-radius: 8px; overflow: hidden; height: 10px; }
#flcc-progress-fill { background: linear-gradient(90deg,#0b7285,#198754); height: 100%; width: 0%; transition: width 300ms ease; }
#flcc-progress-text { font-size: 0.9rem; margin-top: 6px; color: #e8f4f8; }

.flcc-consent { margin-top: 12px; }
.flcc-consent input { margin-right: 8px; }
