/* Booking to WhatsApp Styles */
.btw-container { max-width: 600px; margin: 40px auto; padding: 20px; direction: rtl; }
.btw-form-wrapper { background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); padding: 40px; position: relative; overflow: hidden; }
.btw-header { text-align: center; margin-bottom: 35px; position: relative; z-index: 1; }
.btw-icon { display: inline-block; margin-bottom: 20px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.btw-title { font-size: 32px; font-weight: 700; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 0 0 10px 0; }
.btw-subtitle { color: #6c757d; font-size: 16px; margin: 0; }
.btw-form { position: relative; z-index: 1; }
.btw-form-group { margin-bottom: 25px; }
.btw-label { display: block; font-size: 16px; font-weight: 600; color: #2c3e50; margin-bottom: 10px; text-align: right; }
.btw-input, .btw-textarea { width: 100%; padding: 15px 20px; border: 2px solid #e0e7ff; border-radius: 12px;
    font-size: 16px; transition: all 0.3s ease; background: #fff; color: #2c3e50; direction: rtl; box-sizing: border-box; }
.btw-input:focus, .btw-textarea:focus { outline: none; border-color: #25D366; 
    box-shadow: 0 0 0 4px rgba(37,211,102,0.1); transform: translateY(-2px); }
.btw-textarea { resize: vertical; min-height: 120px; }
.btw-submit-btn { width: 100%; padding: 18px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white; border: none; border-radius: 12px; font-size: 20px; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.btw-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.btw-footer { text-align: center; margin-top: 25px; color: #6c757d; font-size: 14px; }
.btw-footer p { margin: 0; padding: 12px; background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 8px; display: inline-block; }
@media (max-width: 768px) {
    .btw-container { padding: 10px; margin: 20px auto; }
    .btw-form-wrapper { padding: 25px 20px; }
    .btw-title { font-size: 26px; }
    .btw-input, .btw-textarea { padding: 12px 15px; font-size: 15px; }
}