.crp-booking-container {
    max-width: 760px;
    margin: 25px auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(27, 73, 101, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #2d3748;
    box-sizing: border-box;
}

.crp-booking-container * {
    box-sizing: border-box;
}

.crp-header {
    background: linear-gradient(135deg, #1b4965 0%, #2a9d8f 100%);
    padding: 26px 28px;
    color: #ffffff;
}

.crp-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.crp-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.crp-subtitle {
    margin: 6px 0 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.crp-lang-selector {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.crp-lang-btn {
    border: none;
    background: transparent;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.crp-lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.crp-lang-btn.active {
    background: #ffffff;
    color: #1b4965;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.crp-form-body {
    padding: 28px;
}

.crp-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.crp-section:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.crp-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b4965;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crp-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.crp-row:last-child {
    margin-bottom: 0;
}

.crp-col {
    flex: 1;
    min-width: 240px;
}

.crp-col-full {
    flex: 1 1 100%;
}

.crp-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4a5568;
}

.crp-input,
.crp-select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 14.5px;
    color: #2d3748;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.crp-input:focus,
.crp-select:focus {
    outline: none;
    border-color: #2a9d8f;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.crp-input::placeholder {
    color: #a0aec0;
}

.crp-input[readonly] {
    cursor: pointer;
    background-color: #ffffff;
}

.crp-input:disabled {
    background-color: #edf2f7;
    cursor: not-allowed;
    color: #a0aec0;
}

.crp-conditional-box {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 14px;
    animation: crpFadeIn 0.3s ease;
}

@keyframes crpFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.crp-hidden {
    display: none !important;
}

.crp-checkbox-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.crp-checkbox-card:hover {
    background: #edf2f7;
}

.crp-checkbox-card input[type="checkbox"] {
    margin-top: 3px;
    width: 17px;
    height: 17px;
    accent-color: #2a9d8f;
    cursor: pointer;
}

.crp-checkbox-text {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.45;
}

.crp-checkbox-text a {
    color: #1b4965;
    text-decoration: underline;
    font-weight: 600;
}

.crp-checkbox-text a:hover {
    color: #2a9d8f;
}

.crp-submit-wrapper {
    margin-top: 20px;
}

.crp-btn-submit {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #2a9d8f 0%, #21867a 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.crp-btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #21867a 0%, #1a6b61 100%);
    box-shadow: 0 6px 16px rgba(42, 157, 143, 0.4);
    transform: translateY(-1px);
}

.crp-btn-submit:disabled {
    background: #a0aec0;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.crp-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: crpSpin 0.8s linear infinite;
}

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

@media (max-width: 600px) {
    .crp-form-body {
        padding: 20px 16px;
    }
    .crp-header {
        padding: 20px 18px;
    }
    .crp-header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .crp-lang-selector {
        width: 100%;
        justify-content: space-between;
    }
    .crp-lang-btn {
        padding: 5px 8px;
        font-size: 12px;
    }
    .crp-col {
        min-width: 100%;
    }
}
