/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* Section background */
.contact-section {
    background-color: #f8f9fa !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

    /* Card styling */
    .contact-section .card {
        border: none !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    }

    /* Card body spacing */
    .contact-section .card-body {
        padding: 25px !important;
    }

    /* Headings */
    .contact-section h3 {
        font-weight: 600 !important;
        margin-bottom: 20px !important;
        color: #1f2937 !important;
    }

    /* Form labels */
    .contact-section .form-label {
        font-weight: 500 !important;
        color: #374151 !important;
        margin-bottom: 6px !important;
    }

    /* Inputs & textarea */
    .contact-section .form-control {
        height: 48px !important;
        border-radius: 6px !important;
        border: 1px solid #d1d5db !important;
        font-size: 14px !important;
        padding: 10px 14px !important;
        box-shadow: none !important;
    }

    /* Textarea specific */
    .contact-section textarea.form-control {
        height: auto !important;
        resize: none !important;
    }

    /* Input focus */
    .contact-section .form-control:focus {
        border-color: #2563eb !important;
        box-shadow: 0 0 0 2px rgba(37,99,235,0.15) !important;
    }

    /* Submit button */
    .contact-section .btn-primary {
        background-color: #2563eb !important;
        border-color: #2563eb !important;
        border-radius: 30px !important;
        padding: 10px 30px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
    }

        /* Button hover */
        .contact-section .btn-primary:hover {
            background-color: #1d4ed8 !important;
            border-color: #1d4ed8 !important;
        }

    /* Contact info cards */
    .contact-section .card-body i {
        font-size: 28px !important;
        color: #2563eb !important;
    }

    /* Contact info text */
    .contact-section .card-body h6 {
        font-weight: 600 !important;
        margin-bottom: 4px !important;
        color: #111827 !important;
    }

    .contact-section .card-body p {
        margin-bottom: 0 !important;
        color: #6b7280 !important;
        font-size: 14px !important;
    }

.step {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: #ccc !important;
    color: #fff !important;
    margin: 0 10px !important;
}

    .step.active {
        background: #28a745 !important;
    }

/* Make sure modal always stays on top */
.modal {
    z-index: 10650 !important;
}

#consultationModal {
    z-index: 10650 !important;
}

.modal-backdrop {
    z-index: 999 !important;
}

/* Keep header below modal */
.header-area {
    z-index: 1030 !important;
}



/* MODAL */
.booking-modal-content {
    border-radius: 12px;
    overflow: hidden;
  
}

.booking-modal-header {
    background: #da0000;
    color: #fff;
}

.booking-modal-title {
    font-weight: 600;
    color: white;
}

.booking-modal-body {
    max-height: 450px;
    overflow-y: auto;
    padding: 20px;
   
}

.booking-steps {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.booking-step {
    text-align: center;
    opacity: 0.5;
}

    .booking-step span {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #dee2e6;
        border-radius: 50%;
        font-weight: bold;
    }

    .booking-step.active {
        opacity: 1;
    }

        .booking-step.active span {
            background-color: black;
            color: #fff;
        }

.booking-field {
    margin-bottom: 15px;
}

.booking-input,
.booking-textarea {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px;
}

.booking-textarea {
    height: 80px;
}

.booking-btn-primary {
    width: 100%;
    background: #da0000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
}

.booking-btn-secondary {
    width: 48%;
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
}

.booking-btn-success {
    width: 48%;
    background: #da0000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
}

.booking-btn-group {
    display: flex;
    justify-content: space-between;
}


.booking-summary p {
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 8px;
    justify-content: space-between;
    display: flex;
}

