/* =========================================================
   PG-TRAUMWELTEN – PREMIUM STYLE (Block 1)
   Grunddesign + Steps + zweispaltiges Responsive Layout
   ========================================================= */

/* ----- Wrapper ----- */
.pg-buchung-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px;
}

/* ----- Steps (Fortschrittsanzeige oben) ----- */
.pg-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
}

.pg-step {
    width: 32%;
    background: #e9efff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #1b3e83;
    border: 1px solid #cdd7f8;
    opacity: 0.4;
    transition: 0.3s;
}

.pg-step.active {
    background: #1e4bbb;
    color: #fff;
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ----- Blöcke ----- */
.pg-section {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 34px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    border: 1px solid #e4e9f5;
}

/* Icons in Überschriften */
.pg-section-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0e3c7d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pg-section-title img {
    width: 28px;
    height: 28px;
}

/* ----- Flexbox Layout (2-Spalten Desktop) ----- */
.pg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

@media (max-width: 768px) {
    .pg-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PG-TRAUMWELTEN – PREMIUM STYLE (Block 2)
   Inputs, Buttons, Preisbox
   ========================================================= */

/* ----- Form Input ----- */
.pg-field {
    margin-bottom: 22px;
}

.pg-field label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    display: block;
    color: #0e3c7d;
}

.pg-field input,
.pg-field select,
.pg-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #c6ccda;
    padding: 14px 15px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.22s ease;
}

.pg-field input:focus,
.pg-field select:focus,
.pg-field textarea:focus {
    border-color: #1e4bbb;
    box-shadow: 0 0 0 3px rgba(30,75,187,0.25);
    outline: none;
}

textarea {
    min-height: 120px;
}

/* ----- Preisbox ----- */
.pg-pricebox {
    background: linear-gradient(180deg, #f6f8ff, #e8edff);
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 20px;
    border: 1px solid #d0d9ff;
    line-height: 1.6;
    box-shadow: inset 0 0 10px rgba(80,110,255,0.06);
}

.pg-pricebox strong {
    color: #0e3c7d;
}

/* ----- Submit Button ----- */
.pg-submit button {
    background: linear-gradient(90deg, #1e4bbb, #173c99);
    color: #fff !important;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, background 0.25s ease;
}

.pg-submit button:hover {
    background: linear-gradient(90deg, #173c99, #102b77);
    transform: translateY(-2px);
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
    .pg-section {
        padding: 26px 20px;
        border-radius: 14px;
    }
}
/* =========================================================
   PG-TRAUMWELTEN – PREMIUM STYLE (Block 3)
   Feinschliff & UX
   ========================================================= */

/* Placeholder */
::placeholder {
    color: #9aa3b8;
}

/* Select Pfeile */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%230e3c7d' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

/* Checkbox */
.pg-checkbox {
    margin-top: 24px;
    font-size: 15px;
}

.pg-checkbox input {
    margin-right: 8px;
    transform: scale(1.2);
}