/* ===== FORMS ===== */
.form-section {
    background: #fffbf5;
    padding: 60px 24px 80px;
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
}
.form-intro {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 36px;
    text-align: center;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}
.form-group label .required {
    color: #e57373;
    margin-left: 2px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2d3436;
    background: #fff;
    border: 2px solid #f0ebe4;
    border-radius: 12px;
    transition: all 0.25s ease;
    outline: none;
}
.form-control:focus {
    border-color: #e8734a;
    box-shadow: 0 0 0 4px rgba(232, 115, 74, 0.1);
}
.form-control::placeholder {
    color: #bbb;
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-submit {
    margin-top: 32px;
    text-align: center;
}
.form-submit .btn {
    min-width: 220px;
}
.form-note {
    font-size: 0.82rem;
    color: #888;
    margin-top: 12px;
}
.form-hero {
    position: relative;
    min-height: 35vh;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #2c1e13, #3a261a);
    padding: 0 24px 50px;
}
.form-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.form-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 8px;
}
.form-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

/* ===== CONTACT PAGE — 2-Column Layout ===== */
.form-row-2col {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: start;
}
.form-section .form-row-2col h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.55rem;
    color: #2d3436;
    margin-bottom: 12px;
}
.form-section .form-row-2col > div > p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}
.form-section .form-container {
    max-width: 1100px;
}

/* Contact Info Boxes */
.contact-info-box {
    background: #fff;
    border: 1px solid #f0ebe4;
    border-radius: 1rem;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.contact-info-box h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ebe4;
}
.contact-info-highlight {
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.06), rgba(232, 115, 74, 0.02));
    border-color: rgba(232, 115, 74, 0.15);
}
.contact-info-highlight h3 {
    color: #c2693d;
}

/* Contact Items (icon + text rows) */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
}
.contact-item:not(:last-child) {
    border-bottom: 1px solid rgba(240, 235, 228, 0.6);
}
.contact-item > i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fef3e2, #fde2c8);
    color: #e8734a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 2px;
}
.contact-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.text-small {
    font-size: 0.82rem !important;
    color: #999 !important;
}

/* Contact Info Cards (grid variant) */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.contact-info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(232, 115, 74, 0.08);
}
.contact-info-card i {
    font-size: 1.5rem;
    color: #e8734a;
    margin-bottom: 12px;
}
.contact-info-card h3 {
    font-size: 1.05rem;
    color: #2d3436;
    margin-bottom: 8px;
}
.contact-info-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}
.contact-info-card a {
    color: #e8734a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .form-row-2col { grid-template-columns: 1fr; gap: 40px; }
    .form-hero h1 { font-size: 2.2rem; }
    .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .form-hero h1 { font-size: 1.8rem; }
}

/* ===== TOUR BOOKING WIDGET ===== */
.tour-type-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}
.tour-type-card {
    background: #fff;
    border: 2px solid #f0ebe4;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.tour-type-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.tour-type-card .tour-type-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #888;
}
.tour-type-card h4 {
    font-size: 0.95rem;
    color: #2d3436;
    margin-bottom: 6px;
}
.tour-type-card > p {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 10px;
}
.tour-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.tour-type-features li {
    font-size: 0.78rem;
    color: #555;
    padding: 2px 0;
}
.tour-type-features li i {
    color: #aaa;
    font-size: 0.7rem;
    margin-right: 4px;
}
.tour-type-card.selected-standard {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(16,185,129,0.02));
}
.tour-type-card.selected-standard .tour-type-icon { color: #10b981; }
.tour-type-card.selected-standard .tour-type-features li i { color: #10b981; }
.tour-type-card.selected-custom {
    border-color: #e8734a;
    background: linear-gradient(135deg, rgba(232,115,74,0.05), rgba(232,115,74,0.02));
}
.tour-type-card.selected-custom .tour-type-icon { color: #e8734a; }
.tour-type-card.selected-custom .tour-type-features li i { color: #e8734a; }

.customization-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, rgba(232,115,74,0.08), rgba(232,115,74,0.03));
    border: 1px solid rgba(232,115,74,0.2);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
}
.customization-info i {
    color: #e8734a;
    font-size: 1rem;
    margin-top: 2px;
}
.customization-info p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.quick-booking-form {
    border-top: 1px solid #f0ebe4;
    padding-top: 16px;
    margin-bottom: 16px;
}
.quick-booking-form .form-group {
    margin-bottom: 14px;
}
.quick-booking-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 6px;
    display: block;
}
.quick-booking-form .form-control {
    padding: 10px 14px;
    font-size: 0.9rem;
}
.btn-block {
    display: block;
    width: 100%;
}

/* ===== BUCHUNG PAGE ===== */
.booking-summary {
    background: #fff;
    border: 2px solid #f0ebe4;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 32px;
}
.booking-summary h3 {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 16px;
}
.summary-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}
.summary-item i {
    color: #e8734a;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.summary-item strong {
    color: #2d3436;
}
.no-booking-data {
    text-align: center;
    padding: 40px 20px;
}
.no-booking-data i {
    font-size: 2.5rem;
    color: #ddd;
    margin-bottom: 16px;
}
.no-booking-data h3 {
    color: #2d3436;
    margin-bottom: 8px;
}
.no-booking-data p {
    color: #777;
    margin-bottom: 20px;
}

.hotel-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.hotel-option {
    position: relative;
}
.hotel-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.hotel-option label {
    display: block;
    background: #fff;
    border: 2px solid #f0ebe4;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.hotel-option label:hover {
    border-color: #e8734a;
}
.hotel-option input[type="radio"]:checked + label {
    border-color: #e8734a;
    background: linear-gradient(135deg, rgba(232,115,74,0.06), rgba(232,115,74,0.02));
}
.hotel-option label .hotel-stars {
    color: #f5a623;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
}
.hotel-option label .hotel-name {
    font-weight: 600;
    color: #2d3436;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
}
.hotel-option label .hotel-desc {
    font-size: 0.78rem;
    color: #888;
}

.customization-section {
    background: linear-gradient(135deg, rgba(232,115,74,0.06), rgba(232,115,74,0.02));
    border: 1px solid rgba(232,115,74,0.15);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
}
.customization-section h3 {
    color: #e8734a;
    font-size: 1rem;
    margin-bottom: 12px;
}

.form-narrow {
    max-width: 700px;
    margin: 0 auto;
}

/* Booking Steps Progress */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}
.step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.step.active { opacity: 1; }
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e8734a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3436;
}

/* Info box */
.info-box {
    background: #fff;
    border: 1px solid #f0ebe4;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
}
.info-box h2, .info-box h3 {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 12px;
}

/* Trust grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.trust-item {
    background: #fff;
    border: 1px solid #f0ebe4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.trust-item i {
    font-size: 1.4rem;
    color: #e8734a;
    margin-bottom: 10px;
}
.trust-item h3 {
    font-size: 0.95rem;
    color: #2d3436;
    margin-bottom: 4px;
}
.trust-item p {
    font-size: 0.82rem;
    color: #777;
}

/* Form step visibility */
.form-step { display: none; }
.form-step.active { display: block; }

/* Booking process list */
.booking-process {
    padding-left: 20px;
    margin: 16px 0;
}
.booking-process li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: #555;
}
.check-list li i {
    color: #10b981;
    margin-right: 8px;
}

/* Radio & checkbox groups */
.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}
.radio-label input, .checkbox-label input {
    accent-color: #e8734a;
}

/* Form rows */
.form-row-3col {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Form buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.form-buttons-right {
    justify-content: flex-end;
}

/* Error messages */
.error-message {
    color: #e57373;
    font-size: 0.82rem;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .tour-type-cards { grid-template-columns: 1fr; }
    .summary-items { grid-template-columns: 1fr; }
    .hotel-options { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .form-row-3col { grid-template-columns: 1fr; }
    .booking-steps { flex-wrap: wrap; }
}
