/* ==== BEAUTIFUL STICKY FORM REDESIGN ==== */

.bottom-sticky-form {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Buttons Container */
.form-trigger-buttons {
    padding: 0.75rem;
}

.floating-buttons-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Modern Floating Buttons */
.floating-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 65px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.floating-btn:active {
    transform: translateY(-4px) scale(1.01);
}

/* Button Glow Effect */
.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.car-hire-btn .btn-glow {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(39, 174, 96, 0.1) 100%);
}

.transfer-btn .btn-glow {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.1) 100%);
}

.floating-btn:hover .btn-glow {
    opacity: 1;
}

/* Button Content */
.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Button Icon */
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.car-hire-btn .btn-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.transfer-btn .btn-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.floating-btn:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Button Text */
.btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    flex: 1;
}

.btn-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 500;
    line-height: 1.2;
}

/* Button Ripple Effect */
.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.floating-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Form Content Wrapper */
.form-content-wrapper {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.98) 0%, rgba(41, 128, 185, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    animation: slideUpForm 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes slideUpForm {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Header */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-title-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title-content h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Close Button */
.close-form-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.close-form-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Form Content */
.form-content {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.booking-form.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group label i {
    font-size: 1rem;
    opacity: 0.9;
    width: 16px;
    text-align: center;
}

/* Form Inputs */
.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-height: 45px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #95a5a6;
    font-weight: 500;
}

/* Price Display */
.price-display-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInPrice 0.4s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes fadeInPrice {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-value {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Price Breakdown */
.price-breakdown {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.breakdown-item:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breakdown-value {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-book-now {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    height: 60px;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #229954 0%, #1e7e34 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}

.btn-book-now:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-book-now .btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.btn-book-now .btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-book-now:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.btn-book-now .btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    flex: 1;
}

.btn-book-now .btn-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.btn-book-now .btn-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    border-radius: 15px;
}

.btn-book-now:hover .btn-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .floating-btn {
        min-height: 60px;
    }
    
    .btn-content {
        padding: 1rem 1.25rem;
    }
    
    .btn-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .btn-title {
        font-size: 0.95rem;
    }
    
    .btn-subtitle {
        font-size: 0.75rem;
    }
    
    .form-header {
        padding: 1.25rem;
    }
    
    .form-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .form-title-content h3 {
        font-size: 1.1rem;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
    }
    
    .form-content {
        padding: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        min-height: 42px;
    }
    
    .btn-book-now {
        min-width: 100%;
        height: 55px;
    }
    
    .btn-book-now .btn-content {
        padding: 0.875rem 1.25rem;
    }
    
    .btn-book-now .btn-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .btn-book-now .btn-title {
        font-size: 0.95rem;
    }
    
    .btn-book-now .btn-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .form-trigger-buttons {
        padding: 0.5rem;
    }
    
    .floating-btn {
        min-height: 55px;
    }
    
    .btn-content {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }
    
    .btn-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .btn-title {
        font-size: 0.9rem;
    }
    
    .btn-subtitle {
        font-size: 0.7rem;
    }
    
    .form-header {
        padding: 1rem;
    }
    
    .form-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .form-title-content h3 {
        font-size: 1rem;
    }
    
    .form-subtitle {
        font-size: 0.75rem;
    }
    
    .form-content {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .btn-book-now {
        height: 50px;
    }
    
    .btn-book-now .btn-content {
        padding: 0.75rem 1rem;
    }
    
    .btn-book-now .btn-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .btn-book-now .btn-title {
        font-size: 0.9rem;
    }
    
    .btn-book-now .btn-subtitle {
        font-size: 0.7rem;
    }
}

/* Body Padding */
body {
    padding-bottom: 85px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }
}

/* Notification Styles */
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}