@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
.gmt-booking-form {
    max-width: 1200px; margin: 0 auto; padding: 20px;
    background: rgba(255,255,255,0.9); border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.gmt-tabs {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 20px;
}
.gmt-tab-button {
    background: transparent; border: 2px solid #fff; color: #fff;
    padding: 10px 20px; border-radius: 25px; cursor: pointer;
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
}
.gmt-tab-button.active { background: rgba(255,255,255,0.2); }
.gmt-trip-type {
    display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; color: #fff;
}
.gmt-form-fields {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-bottom: 20px;
}
.gmt-field { display: flex; flex-direction: column; }
.gmt-field label { color: #fff; margin-bottom: 5px; }
.gmt-field input {
    padding: 10px; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px; background: rgba(255,255,255,0.1); color: #fff;
}
.gmt-book-now {
    display: block; width: 200px; margin: 0 auto; padding: 12px 24px;
    background: #4a90e2; color: #fff; border: none;
    border-radius: 25px; cursor: pointer; font-size: 16px;
    transition: background 0.3s ease;
}
.gmt-book-now:hover { background: #357abd; }
.gmt-hero-section {
    text-align: center; color: #fff; margin-top: 40px; padding: 0 20px;
}
.gmt-hero-section h1 { font-size: 48px; margin-bottom: 20px; }
.gmt-hero-section p { font-size: 18px; max-width: 800px; margin: 0 auto; }
