/* Bottom Bar Styles */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff6b35; /* Orange background */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Hide on desktop/PC */
    display: none;
}

/* Show bottom bar only on mobile devices */
@media (max-width: 768px) {
    .bottom-bar {
        display: block;
    }
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.bottom-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    padding: 10px 8px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 55px;
    text-decoration: none;
    font-family: inherit;
    position: relative;
}

.bottom-bar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bottom-bar-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

.bottom-bar-btn i {
    font-size: 20px;
    margin-bottom: 4px;
    color: white;
}

.bottom-bar-btn span {
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.2;
}

/* Button-specific styles */
.call-btn i {
    color: #4CAF50;
}

.whatsapp-btn i {
    color: #25D366;
}

.enquiry-btn i {
    color: #2196F3;
}

/* Add subtle separators between buttons */
.bottom-bar-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Enquiry Modal Styles */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.enquiry-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.enquiry-modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.3s ease;
}

.enquiry-modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.enquiry-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-btn i {
    font-size: 16px;
}

.enquiry-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #000000;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #000000;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #000000;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: #f44336;
}

.notification.info {
    background: #2196F3;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .bottom-bar-btn {
        padding: 8px 6px;
        min-height: 50px;
    }
    
    .bottom-bar-btn i {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .bottom-bar-btn span {
        font-size: 10px;
    }
    
    .enquiry-modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .enquiry-form {
        padding: 20px 16px;
    }
    
    .form-actions {
        flex-direction: row;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .bottom-bar-btn {
        padding: 6px 4px;
        min-height: 45px;
    }
    
    .bottom-bar-btn i {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .bottom-bar-btn span {
        font-size: 9px;
    }
    
    .enquiry-form {
        padding: 16px 12px;
    }
    
    .form-actions {
        flex-direction: row;
        gap: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        flex: 1;
        min-width: 0;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Enquiry Form Styles - High Specificity */
.enquiry-modal .enquiry-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #000000 !important;
    font-size: 14px;
}

.enquiry-modal .enquiry-form .form-group input,
.enquiry-modal .enquiry-form .form-group select,
.enquiry-modal .enquiry-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #000000 !important;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff !important;
    color: #000000 !important;
    box-sizing: border-box;
}

.enquiry-modal .enquiry-form .form-group input:focus,
.enquiry-modal .enquiry-form .form-group select:focus,
.enquiry-modal .enquiry-form .form-group textarea:focus {
    outline: none !important;
    border-color: #000000 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}

/* Override any placeholder text color */
.enquiry-modal .enquiry-form .form-group input::placeholder,
.enquiry-modal .enquiry-form .form-group textarea::placeholder {
    color: #666666 !important;
}

/* Override any select dropdown text color */
.enquiry-modal .enquiry-form .form-group select option {
    color: #000000 !important;
    background: #ffffff !important;
}

/* Confirmation Dialog Styles */
.confirmation-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.confirmation-dialog.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.confirmation-dialog .dialog-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        transform: translateY(30px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.confirmation-dialog .dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.confirmation-dialog .dialog-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
}

.confirmation-dialog .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.confirmation-dialog .close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.confirmation-dialog .dialog-body {
    padding: 20px 24px;
}

.confirmation-dialog .dialog-body p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    font-family: 'Poppins', sans-serif;
}

.confirmation-dialog .dialog-body p:last-child {
    margin-bottom: 0;
}

.confirmation-dialog .dialog-body strong {
    color: #1f2937;
    font-weight: 600;
}

.confirmation-dialog .dialog-footer {
    padding: 16px 24px 24px 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.confirmation-dialog .cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.confirmation-dialog .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.confirmation-dialog .cta-button:active {
    transform: translateY(0);
}

/* Mobile Responsive for Confirmation Dialog */
@media (max-width: 768px) {
    .confirmation-dialog .dialog-content {
        width: 95%;
        margin: 20px;
        border-radius: 16px;
    }
    
    .confirmation-dialog .dialog-header {
        padding: 20px 20px 16px 20px;
    }
    
    .confirmation-dialog .dialog-header h3 {
        font-size: 20px;
    }
    
    .confirmation-dialog .dialog-body {
        padding: 16px 20px;
    }
    
    .confirmation-dialog .dialog-body p {
        font-size: 15px;
    }
    
    .confirmation-dialog .dialog-footer {
        padding: 16px 20px 20px 20px;
        flex-direction: column;
    }
    
    .confirmation-dialog .cta-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 15px;
    }
}
