:root {
    --bonds-green: #7D9B3F;
    --bonds-green-dark: #6B852F;
    --bonds-orange: #E67E22;
    --bonds-orange-dark: #D35400;
    --bonds-white: #FFFFFF;
    --bonds-text-gray: #666666;
    --bonds-light-gray: #f5f5f5;
}

/* --- Testimonials Carousel (Compact) --- */
.bonds-testimonials-carousel { position: relative; padding: 30px 0; max-width: 1200px; margin: 0 auto; }
.bonds-testimonials-track { display: flex; gap: 25px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 20px 10px; scrollbar-width: none; }
.bonds-testimonials-track::-webkit-scrollbar { display: none; }
.bonds-testimonial-card { flex: 0 0 100%; max-width: 100%; scroll-snap-align: center; background: var(--bonds-white); border-radius: 16px; padding: 25px; box-shadow: 0 8px 30px rgba(125, 155, 63, 0.08); transition: all 0.3s ease; border-top: 4px solid var(--bonds-orange); position: relative; overflow: hidden; box-sizing: border-box; }
@media (min-width: 768px) { .bonds-testimonial-card { flex: 0 0 calc(50% - 12.5px); max-width: calc(50% - 12.5px); } }
.bonds-testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(125, 155, 63, 0.15); }
.bonds-quote-icon { font-size: 80px; color: var(--bonds-green); opacity: 0.08; position: absolute; top: 10px; right: 15px; font-family: Georgia, serif; line-height: 1; }
.bonds-testimonial-content { position: relative; z-index: 1; }
.bonds-testimonial-rating { display: flex; gap: 3px; margin-bottom: 15px; }
.star { font-size: 18px; color: #e0e0e0; }
.star.filled { color: var(--bonds-orange); }
.bonds-testimonial-text { font-size: 15px; line-height: 1.6; color: var(--bonds-text-gray); margin-bottom: 20px; font-style: italic; max-height: 120px; overflow: hidden; }
.bonds-testimonial-author { border-top: 1px solid #f0f0f0; padding-top: 15px; }
.bonds-testimonial-name { font-size: 18px; font-weight: 700; color: var(--bonds-green); margin: 0 0 5px 0; }
.bonds-testimonial-meta { font-size: 13px; color: #888; margin-bottom: 5px; }
.bonds-testimonial-title { font-weight: 600; color: #555; }
.bonds-testimonial-separator { margin: 0 6px; color: #ccc; }
.bonds-testimonial-company { font-weight: 500; }
.bonds-testimonial-country { font-size: 13px; color: var(--bonds-orange); font-weight: 600; }
.bonds-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; border-radius: 50%; background: var(--bonds-white); border: 2px solid var(--bonds-green); color: var(--bonds-green); font-size: 22px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 10; display: flex; align-items: center; justify-content: center; }
.bonds-carousel-btn:hover { background: var(--bonds-green); color: var(--bonds-white); }
.bonds-carousel-btn.prev { left: -22px; }
.bonds-carousel-btn.next { right: -22px; }
@media (max-width: 1250px) { .bonds-carousel-btn.prev { left: 10px; } .bonds-carousel-btn.next { right: 10px; } }
.bonds-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.bonds-carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: #e0e0e0; cursor: pointer; transition: all 0.3s ease; }
.bonds-carousel-dot.active { background: var(--bonds-orange); transform: scale(1.3); }

/* --- Room Details Widget (Left Column) --- */
.bonds-room-details-card { background: var(--bonds-white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border: 1px solid #eaeaea; max-width: 600px; padding: 20px; }
.bonds-room-details-image { position: relative; width: 100%; height: 320px; overflow: hidden; margin-bottom: 20px; border-radius: 12px; }
.bonds-room-details-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.bonds-room-details-badge { position: absolute; bottom: 20px; left: 20px; background: var(--bonds-white); color: var(--bonds-green); padding: 8px 20px; border-radius: 30px; font-weight: 700; font-size: 13px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.bonds-room-details-content { padding: 10px 15px 20px 15px; }
.bonds-room-details-title { font-size: 28px; color: var(--bonds-green); margin: 10px 0 12px 0; font-weight: 800; }
.bonds-room-details-desc { color: var(--bonds-text-gray); line-height: 1.6; margin-bottom: 25px; font-size: 15px; }
.bonds-room-details-features { list-style: none; padding: 0; margin: 0 0 25px 0; }
.bonds-room-details-features li { padding: 10px 0 10px 30px; color: #444; font-size: 15px; border-bottom: 1px solid #f0f0f0; position: relative; }
.bonds-room-details-features li:before { content: "✓"; position: absolute; left: 0; color: var(--bonds-orange); font-weight: bold; font-size: 16px; }
.bonds-room-details-features li:last-child { border-bottom: none; }
.bonds-room-details-price { font-size: 28px; font-weight: 800; color: var(--bonds-orange); margin-top: 25px; padding-bottom: 10px; }
.bonds-room-details-price span { font-size: 16px; color: var(--bonds-text-gray); font-weight: 400; }

/* --- Booking Form Widget (Right Column) --- */
.bonds-booking-form-wrapper { background: var(--bonds-white); padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border-top: 5px solid var(--bonds-orange); }
.bonds-form-header { text-align: center; margin-bottom: 30px; }
.bonds-form-title { font-size: 32px; color: var(--bonds-green); margin: 0 0 8px 0; font-weight: 800; }
.bonds-form-subtitle { font-size: 16px; color: var(--bonds-orange); margin: 0; font-weight: 600; }
.bonds-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bonds-form-group { margin-bottom: 20px; }
.bonds-form-group.full-width { grid-column: 1 / -1; }
.bonds-form-group label { display: block; font-weight: 700; color: var(--bonds-green); margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.bonds-form-group .required { color: var(--bonds-orange); }
.bonds-form-group input, .bonds-form-group select, .bonds-form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 15px; transition: all 0.3s ease; box-sizing: border-box; background: #fafafa; }
.bonds-form-group input:focus, .bonds-form-group select:focus, .bonds-form-group textarea:focus { border-color: var(--bonds-orange); outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1); }
.bonds-submit-btn { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--bonds-orange) 0%, var(--bonds-orange-dark) 100%); color: var(--bonds-white); border: none; border-radius: 8px; font-size: 16px; font-weight: 800; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3); }
.bonds-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4); }
.bonds-form-message { margin-top: 20px; padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; display: none; }
.bonds-form-message.success { background: #d4edda; color: #155724; display: block; }
.bonds-form-message.error { background: #f8d7da; color: #721c24; display: block; }

/* --- Rooms Display Widget --- */
.bonds-rooms-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; padding: 20px 0; }
.bonds-room-card { background: var(--bonds-white); border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; border: 2px solid transparent; }
.bonds-room-card.green { border-color: var(--bonds-green); }
.bonds-room-card.orange { border-color: var(--bonds-orange); }
.bonds-room-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(125, 155, 63, 0.2); }
.bonds-room-image { height: 240px; position: relative; }
.bonds-room-badge { position: absolute; top: 20px; right: 20px; z-index: 2; background: var(--bonds-white); color: var(--bonds-green); padding: 8px 20px; border-radius: 30px; font-weight: 700; font-size: 13px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); }
.bonds-room-badge.badge-orange { color: var(--bonds-orange); }
.bonds-room-details { padding: 30px; }
.bonds-room-title { font-size: 26px; color: var(--bonds-green); margin: 0 0 15px 0; font-weight: 800; }
.bonds-room-card.orange .bonds-room-title { color: var(--bonds-orange); }
.bonds-room-desc { color: var(--bonds-text-gray); line-height: 1.7; margin-bottom: 20px; font-size: 15px; }
.bonds-room-features { list-style: none; padding: 0; margin: 0 0 25px 0; }
.bonds-room-features li { padding: 10px 0 10px 28px; color: #444; font-size: 15px; border-bottom: 1px solid #f0f0f0; position: relative; }
.bonds-room-features li:before { content: "✓"; position: absolute; left: 0; color: var(--bonds-orange); font-weight: bold; }
.bonds-room-features li:last-child { border-bottom: none; }
.bonds-room-price { font-size: 32px; font-weight: 800; color: var(--bonds-orange); margin-bottom: 25px; }
.bonds-room-price span { font-size: 16px; color: var(--bonds-text-gray); font-weight: 400; }
.bonds-room-btn { display: block; width: 100%; text-align: center; padding: 16px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.bonds-room-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }

/* --- Table Booking Widget & Confirmation --- */
.bonds-table-booking-wrapper { max-width: 800px; margin: 0 auto; background: var(--bonds-white); padding: 40px; border-radius: 20px; box-shadow: 0 15px 40px rgba(125, 155, 63, 0.1); border-top: 5px solid var(--bonds-green); }
.bonds-table-confirmation { background: #f9fdf9; border: 2px dashed var(--bonds-green); border-radius: 16px; padding: 30px; text-align: center; animation: slideUp 0.5s ease; margin-top: 20px; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.bonds-confirmation-icon { width: 60px; height: 60px; background: var(--bonds-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: bold; margin: 0 auto 15px auto; }
.bonds-confirmation-header h3 { color: var(--bonds-green); font-size: 24px; margin: 0 0 10px 0; }
.bonds-confirmation-header p { color: var(--bonds-text-gray); margin-bottom: 25px; }
.bonds-confirmation-details { background: white; border-radius: 12px; padding: 20px; text-align: left; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px; }
.bonds-conf-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.bonds-conf-row:last-child { border-bottom: none; }
.bonds-conf-label { font-weight: 700; color: var(--bonds-green); text-transform: uppercase; font-size: 13px; }
.bonds-conf-value { color: #333; font-weight: 600; font-size: 15px; }
.bonds-conf-footer { font-size: 14px; color: #888; font-style: italic; margin: 0; }

@media (max-width: 768px) {
    .bonds-form-row { grid-template-columns: 1fr; }
    .bonds-booking-form-wrapper, .bonds-table-booking-wrapper { padding: 30px; }
    .bonds-rooms-container { grid-template-columns: 1fr; }
}