
:root {

  --blue-gradient: linear-gradient(135deg, #003866 0%, #0065b8 100%);
}



.booking-widget-trigger {
    position: relative;
    margin-bottom: 30px;
}

.booking-widget-trigger .widget-box {
    position: relative;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.1);
    transition: all 0.3s ease;
}

.booking-widget-trigger .widget-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.15);
}


.booking-widget-trigger .icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.booking-widget-trigger .icon-circle {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.booking-widget-trigger .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border: 3px solid #ea580c;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.booking-widget-trigger .widget-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.booking-widget-trigger .widget-content p {
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 1.6;
}

.booking-widget-trigger .trigger-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-widget-trigger .trigger-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.booking-widget-trigger .trigger-btn:hover::before {
    left: 100%;
}

.booking-widget-trigger .trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

.booking-widget-trigger .trigger-btn .btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.booking-widget-trigger .trigger-btn:hover .btn-icon {
    transform: translateX(5px);
}

.booking-widget-trigger .tribal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.booking-widget-trigger .tribal-dots span {
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
    opacity: 0.4;
}

.booking-widget-trigger .tribal-dots span:nth-child(2) {
    opacity: 0.6;
}

.booking-widget-trigger .tribal-dots span:nth-child(3) {
    opacity: 0.8;
}

/* ========================================
   BOOTSTRAP MODAL CUSTOMIZATION
   ======================================== */

.booking-modal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.booking-modal .modal-header {
    background: var(--blue-gradient);
    padding: 30px;
    border: none;
    position: relative;
}

.booking-modal .modal-header .modal-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.booking-modal .modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 0;
}

.booking-modal .modal-header .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.booking-modal .tribal-accent {
    position: relative;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 auto;
    border-radius: 2px;
}

.booking-modal .tribal-accent::before,
.booking-modal .tribal-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.booking-modal .tribal-accent::before {
    left: -15px;
}

.booking-modal .tribal-accent::after {
    right: -15px;
}

.booking-modal .modal-body {
    padding: 30px;
}

.booking-modal .intro-text {
    color: #64748b;
    font-size: 15px;
    text-align: center;
    margin-bottom: 25px;
}

/* Form Styling */
.booking-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.booking-form .form-label i {
    color: #ea580c;
    font-size: 16px;
}

.booking-form .required {
    color: #ea580c;
}


.booking-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Checkbox Styling */
.booking-form .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
}

.booking-form .form-check-input:checked {
    background-color: #ea580c;
    border-color: #ea580c;
}

.booking-form .form-check-input:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 0.25rem rgba(234, 88, 12, 0.1);
}

.booking-form .form-check-label {
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    padding-left: 8px;
}

.booking-form .form-check-label a {
    color: #ea580c;
    text-decoration: underline;
}

.booking-form .form-check-label a:hover {
    color: #c2410c;
}

/* Submit Button */
.theme-btn.booking-btn {
    padding: 16px 24px;
    background: var(--blue-gradient);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-btn.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.theme-btn.booking-btn:hover::before {
    left: 100%;
}

.theme-btn.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 54, 102, 0.3);
}

.theme-btn.booking-btn .btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.theme-btn.booking-btn:hover .btn-icon {
    transform: translateX(5px);
}

.theme-btn.booking-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    margin-bottom: 20px;
}
