 .cabbozar-container {
     width: 80%;
     max-width: 600px;
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
     border: 1px solid #2c3e50;
}
 .cabbozar-container .cabbozar-header {
     background: linear-gradient(90deg, #1a2a3a,#1a2a3a);
     color: white;
     padding: 10px;
     text-align: center;
     border-bottom: 1px solid #34495e;
}
 .cabbozar-container .cabbozar-header h2 {
     font-size: 22px;
     margin-bottom: 10px;
     font-weight: 700;
     color: #fff;
     text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
 .cabbozar-container .services {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
     font-size: 14px;
}
 .cabbozar-container .services p {
     display: flex;
     align-items: center;
	  margin-bottom: 5px;
     gap: 5px;
     font-weight: 500;
     color: #fff;
     text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
 .cabbozar-container .services p i {
     color: #f9d700;
     font-size: 14px;
}
 .cabbozar-container .tab-content {
     padding: 10px;
}
 .cabbozar-container .trip-options {
     display: flex;
     gap: 10px;
     margin-bottom: 10px;
}
 .cabbozar-container .trip-option {
     flex: 1;
     position: relative;
}
 .cabbozar-container .trip-option input[type="radio"] {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
}
 .cabbozar-container .trip-option label {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 10px 8px;
     background: #f8f9fa;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
     color: #495057;
     font-size: 14px;
     min-height: 75px;
}
 .cabbozar-container .trip-option label i {
     font-size: 18px;
     margin-bottom: 8px;
     color: #3498db;
}
 .cabbozar-container .trip-option input[type="radio"]:checked + label {
     background: #e3f2fd;
     border-color: #3498db;
     color: #1a5276;
     box-shadow: 0 3px 10px rgba(52, 152, 219, 0.2);
}
 .cabbozar-container .trip-option input[type="radio"]:hover + label {
     border-color: #3498db;
}
 .input-group {
     position: relative;
     margin-bottom: 15px;
}
 .input-group label {
     display: block;
     margin-bottom: 6px;
     font-weight: 600;
     color: #343a40;
     font-size: 14px;
}
 .input-group input[type="text"], .input-group input[type="tel"] {
     width: 100%;
     padding: 5px 10px;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 15px;
     transition: all 0.3s;
}
 .input-group input[type="text"]:focus, .input-group input[type="tel"]:focus {
     border-color: #3498db;
     outline: none;
     box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
 .destination-city-item {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-top: 8px;
     position: relative;
}
 .destination-city-item input {
     flex: 1;
}
 .destination-city-item .remove-city {
     background: #e74c3c;
     color: white;
     border: none;
     width: 35px;
     height: 35px;
     border-radius: 8px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
}
 .destination-city-item .remove-city:hover {
     background: #c0392b;
}
 .add-city {
     background: #f8f9fa;
     border: 2px dashed #ced4da;
     color: #3498db;
     padding: 10px;
     width: 100%;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: all 0.3s;
     margin-top: 8px;
     font-size: 14px;
}
 .add-city:hover {
     background: #e3f2fd;
     border-color: #3498db;
}
 .book-btn {
     background: #f9d700;
     color: #1a2a3a;
     border: none;
     padding: 14px;
     width: 100%;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: all 0.3s;
     margin-top: 20px;
     box-shadow: 0 4px 12px rgba(249, 215, 0, 0.3);
}
 .book-btn:hover {
     background: #e0c100;
     box-shadow: 0 6px 15px rgba(249, 215, 0, 0.4);
}
 .book-btn i {
     transition: transform 0.3s;
}
 .book-btn:hover i {
     transform: translateX(4px);
}
 .form-message {
     padding: 12px;
     border-radius: 8px;
     margin: 15px 0;
     text-align: center;
     font-weight: 500;
     display: none;
     font-size: 14px;
}
 .form-message.success {
     background: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
     display: block;
}
 .form-message.error {
     background: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
     display: block;
}
/* City Suggestions Styles */
 .suggestions-container {
     position: absolute;
     width: 100%;
     max-height: 180px;
     overflow-y: auto;
     background: white;
     border: 1px solid #ddd;
     border-radius: 0 0 8px 8px;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     z-index: 1000;
     display: none;
}
 .suggestion-item {
     padding: 8px 12px;
     cursor: pointer;
     transition: background-color 0.2s;
     font-size: 14px;
}
 .suggestion-item:hover {
     background-color: #f0f8ff;
}
 .suggestion-item.highlighted {
     background-color: #e3f2fd;
}
/* Responsive styles */
 @media (max-width: 768px) {
     .cabbozar-container .trip-options {
         flex-direction: column;
    }
     .cabbozar-container .services {
/*         flex-direction: column;*/
         gap: 8px;
    }
     .cabbozar-container .cabbozar-header {
         padding: 12px;
    }
     .cabbozar-container .cabbozar-header h2 {
         font-size: 20px;
    }
     .cabbozar-container .tab-content {
         padding: 15px;
    }
     .cabbozar-container .trip-option label {
         padding: 10px;
    }
}
 @media (max-width: 480px) {
     .cabbozar-container {
         width: 100%;
    }
     .cabbozar-container .cabbozar-header h2 {
         font-size: 18px;
    }
     .cabbozar-container .services p {
         font-size: 13px;
    }
     .cabbozar-container .trip-option label {
         padding: 8px;
         font-size: 13px;
    }
     .cabbozar-container .trip-option label i {
         font-size: 16px;
    }
     .input-group input[type="text"], .input-group input[type="tel"] {
         padding: 8px 10px;
         font-size: 14px;
    }
}
 