.reservation-modal .modal-content {
    background-color: rgba(0,0,0,0.925);
    border-radius: 0;
    border: 1px solid #91765a;
    color: #fff;
    text-align: center;
}

.reservation-modal .modal-body {
    padding: 2.5rem;
}

.reservation-modal .modal-body p:last-of-type {
    font-weight: bold;
    margin-bottom: 1.5rem;
    background-color: #91765a;
    padding: .5rem 1rem;
    color:white;
}

.reservation-modal .modal-body .btn-style {
    margin: 0;
    font-size: 1rem;
    text-transform: none;
}

.reservation-form small {
    font-size: .9rem;
    line-height: 1.5;
    color: #91765a;
}

#cancelModalForm {
    display: block;
}

#errors-cancel-modal-reservation {
    -webkit-padding-start: 1.5rem;
            padding-inline-start: 1.5rem;
    list-style-type: disc;
    text-align: left;
    color: #fff;
    background-color: rgba(0,0,0,0.7);
}

#errors-cancel-modal-reservation>li {
    line-height: 1;
    font-size: .85rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    list-style-type: disc;
}

.active-lang {
    color: #91765a !important;
}

#resForm .dropdown-menu {
    background-color: #14100c;
    width: 100%;
}

#serviceMenuBtn {
    display: block;
    width: 100%;
    font-size: 15px;
    color: #14100c;
    padding: 15px 40px 15px 15px;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
}

#serviceDropdownContent .dropdown-header {
    color: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

#serviceDropdownContent .dropdown-header:last-of-type {
    margin-top: .25rem;
}

#serviceDropdownContent .dropdown-item {
    position: relative;
    padding: .25rem 1.5rem;
    border-bottom: none;
    margin: 0;
    color: #91765a;
}

#serviceDropdownContent .dropdown-item::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 10px);
    right: .5rem;
    width: 20px;
    height: 20px;
    background: url('../img/check.png') center / contain no-repeat;
    opacity: 0;
}

#serviceDropdownContent .dropdown-item:focus,
#serviceDropdownContent .dropdown-item:active,
#serviceDropdownContent .dropdown-item.active {
    color: #fff;
    background-color: initial;
}

#serviceDropdownContent .dropdown-item:hover::after {
    opacity: .5;
}

#serviceDropdownContent .dropdown-item.active::after {
    opacity: 1;
}

.blank {
    border: 1px solid red !important;
}

.ui-datepicker-trigger {
    display: none;
}

/* CUSTOM TOGGLE */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 22px;
    margin-bottom: 0;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #91765a;
    background-color: transparent;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: #91765a;
    -webkit-transition: .4s;
    transition: .4s;
}
  
input:checked + .slider {
    background-color: rgba(0,0,0,0.45);
}
  
input:focus + .slider {
    box-shadow: 0 0 1px rgba(0,0,0,0.45);
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
  
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
  
.slider.round:before {
    border-radius: 50%;
}

.remember-me-label {
    margin-bottom: 0px;
    color: #14100c !important;
    font-size: 1rem;
    margin-left: 10px;
    display: inline-block !important;
}

#resForm .time-list {
    display: none;
    margin-bottom: 1rem;
    font-size: .9rem;
    color: #14100c;
}

#resForm .time-list__title {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: .5rem;
    color: #14100c;
}

#resForm .time-list__title::after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(145,118,90,.25);
    margin-left: 1rem;
}

#resForm .time-list__body > span {
    display: inline-block;
    font-size: 1rem;
    padding: .25rem .75rem;
    border: 1px solid rgba(145,118,90,.25);
    cursor: pointer;
    transition: background-color .15s;
    color: #14100c;
}

#resForm .time-list__body > span:hover {
    background-color: rgba(145, 118, 90, .1);
}

#resForm .time-list__body > span.active {
    background-color: rgb(145,118,90);
    color: #fff;
}

/* CUSTOM CHECKBOX */
.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid rgb(145,118,90);
}
  
.custom-checkbox:hover input ~ .checkmark {
    background-color: rgba(145,118,90,0.45);
}
  
.custom-checkbox input:checked ~ .checkmark {
    background-color: rgba(145,118,90,0.45);
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
  
.custom-checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#errors-reservation {
    -webkit-padding-start: 2rem;
    padding-inline-start: 2rem;
    list-style-type: disc;
    text-align: left;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
}

#errors-reservation>li {
    line-height: 1;
    font-size: .85rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    list-style-type: disc;
}

/* Language Switcher Styles */
.navbar .dropdown-menu {
    background-color: #14100c;
    border: 1px solid #91765a;
    border-radius: 0;
    margin-top: 0;
}

.navbar .dropdown-item {
    color: #fff;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: #91765a;
    color: #fff;
}

.navbar .dropdown-item.active {
    background-color: #91765a;
    color: #fff;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-toggle i {
    margin-right: 0.5rem;
}

/* Simple Reservation Form Styling */
.booking-box {
    background: rgba(20, 16, 12, 0.9);
    border: 2px solid #91765a;
    padding: 25px;
}

.booking-box .btn-form1-submit {
    background: linear-gradient(45deg, #91765a, #c49c5d);
    border: 2px solid #91765a;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-box .btn-form1-submit:hover {
    background: linear-gradient(45deg, #c49c5d, #91765a);
    transform: translateY(-2px);
}

/* Form Text Visibility */
.booking-box label {
    color: #c49c5d !important;
    font-weight: 500;
}

.booking-box input,
.booking-box select {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #91765a !important;
}

.booking-box input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Input focus styling */
.booking-box input:focus,
.booking-box select:focus,
.booking-box .input1_inner input:focus,
.booking-box .input2_inner input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #c49c5d !important;
    box-shadow: 0 0 0 2px rgba(196, 156, 93, 0.2) !important;
    outline: none !important;
    color: #fff !important;
}

/* Hide browser autofill icons */
.booking-box input::-webkit-contacts-auto-fill-button,
.booking-box input::-webkit-credentials-auto-fill-button {
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
    position: absolute !important;
    right: 0 !important;
}

.booking-box input::-webkit-calendar-picker-indicator {
    display: none !important;
}

/* Date picker icon styling */
.booking-box .input1_inner:after {
    color: #c49c5d !important;
}

.booking-box .custom-checkbox {
    color: #c49c5d !important;
}

.booking-box .time-list__title {
    color: #c49c5d !important;
}

.booking-box .time-list__body > span,
.booking-box .time-list__body .all-times-pick {
    background: rgba(145, 118, 90, 0.2) !important;
    border: 1px solid #91765a !important;
    color: #c49c5d !important;
    padding: 8px 12px !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-align: center !important;
    min-width: 60px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    margin: 3px !important;
}

.booking-box .time-list__body > span:hover,
.booking-box .time-list__body .all-times-pick:hover {
    background: linear-gradient(135deg, #91765a, #c49c5d) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(145, 118, 90, 0.3) !important;
}

.booking-box .time-list__body > span.active,
.booking-box .time-list__body .all-times-pick.active {
    background: linear-gradient(135deg, #91765a, #c49c5d) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 8px rgba(145, 118, 90, 0.4) !important;
}

.booking-box .time-list__body > span.active:after,
.booking-box .time-list__body .all-times-pick.active:after {
    content: '✓' !important;
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #fff !important;
    color: #c49c5d !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: bold !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Form Title and Background Styling */
.booking-box .head-box h4 {
    color: #c49c5d !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px !important;
}

.reservation-part {
    background: linear-gradient(135deg, rgba(20, 16, 12, 0.95), rgba(145, 118, 90, 0.1)) !important;
}

/* Team Card Button Styling */
.team-card .button-1 {
    background: linear-gradient(45deg, #91765a, #c49c5d) !important;
    border: 2px solid #91765a !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.team-card .button-1:hover {
    background: linear-gradient(45deg, #c49c5d, #91765a) !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Service Dropdown Styling */
.select1_wrapper {
    position: relative;
    margin-bottom: 20px;
}

.select1_wrapper .btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #91765a !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 12px 20px !important;
    width: 100% !important;
    text-align: left !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
}

.select1_wrapper .btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #c49c5d !important;
}

.select1_wrapper .btn:after {
    content: '▼' !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #c49c5d !important;
    transition: all 0.3s ease !important;
    font-size: 12px !important;
}

.select1_wrapper .btn.active:after {
    transform: translateY(-50%) rotate(180deg) !important;
}

.service-dropdown-content {
    background: rgba(20, 16, 12, 0.95) !important;
    border: 2px solid #91765a !important;
    border-top: none !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    position: absolute !important;
    width: 100% !important;
    top: 100% !important;
    left: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Modern scrollbar for service dropdown */
.service-dropdown-content::-webkit-scrollbar {
    width: 8px !important;
}

.service-dropdown-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
}

.service-dropdown-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #91765a, #c49c5d) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.service-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c49c5d, #91765a) !important;
}

.service-dropdown-content .dropdown-header {
    background: linear-gradient(135deg, #91765a, #c49c5d) !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 14px !important;
}

.service-dropdown-content .dropdown-item {
    color: #fff !important;
    background: transparent !important;
    border: none !important;
    padding: 12px 20px !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.service-dropdown-content .dropdown-item:hover {
    background: rgba(145, 118, 90, 0.2) !important;
    color: #c49c5d !important;
    padding-left: 25px !important;
}

.service-dropdown-content .dropdown-item.active {
    background: linear-gradient(135deg, #91765a, #c49c5d) !important;
    color: #fff !important;
    font-weight: 600 !important;
    position: relative !important;
}

.service-dropdown-content .dropdown-item.active::after {
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
}

/* Selected services in button */
.select1_wrapper .btn .d-block {
    display: block !important;
    padding: 2px 0 !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.select1_wrapper .btn .d-block:last-child {
    border-bottom: none !important;
}

/* Slider Buttons Styles */
.slider-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-buttons .button-1 {
    margin: 0;
    min-width: 180px;
    transition: all 0.3s ease;
}

.slider-buttons .button-primary {
    background: linear-gradient(45deg, #91765a, #c49c5d);
    border: 2px solid #91765a;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(145, 118, 90, 0.3);
}

.slider-buttons .button-primary:hover {
    background: linear-gradient(45deg, #c49c5d, #91765a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 118, 90, 0.4);
}

/* Google Reviews Styling */
.testimonials .info .cont {
    text-align: center;
    margin-top: 20px;
}

.testimonials .info .cont h6 {
    color: #c49c5d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.testimonials .info .cont span {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonials .item p {
    color: #fff;
    font-style: italic;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 16px;
}

/* PWA Install Instructions */
.pwa-install-instructions {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 20px 0;
    flex-wrap: wrap;
}

.instruction-item {
    text-align: center;
    padding: 15px;
    margin: 10px;
    background: rgba(145, 118, 90, 0.1);
    border: 1px solid #91765a;
    border-radius: 8px;
    min-width: 200px;
}

.instruction-item h6 {
    color: #c49c5d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.instruction-item p {
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.instruction-item strong {
    color: #c49c5d;
    font-weight: 600;
}

/* Location Section Styling */
.footer-location .location-info {
    text-align: center;
}

.footer-location .location-info p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-map {
    margin-bottom: 20px;
}

.map-iframe-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #91765a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-iframe-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(145, 118, 90, 0.3);
}

.map-iframe-container iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

.location-actions .button-1 {
    background: transparent;
    border: 2px solid #91765a;
    color: #91765a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.location-actions .button-1:hover {
    background: #91765a;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.location-actions .button-1 i {
    margin-right: 8px;
}

/* Testimonials Dots Styling */
.testimonials .owl-dots {
    margin-top: 30px;
}

.testimonials .owl-dots .owl-dot span {
    background: rgba(145, 118, 90, 0.3) !important;
    border: 2px solid #91765a !important;
}

.testimonials .owl-dots .owl-dot.active span,
.testimonials .owl-dots .owl-dot:hover span {
    background: #91765a !important;
    border-color: #c49c5d !important;
}

.slider-buttons .button-secondary {
    background: transparent;
    border: 2px solid #91765a;
    color: #91765a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-buttons .button-secondary:hover {
    background: linear-gradient(45deg, #c49c5d, #91765a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 118, 90, 0.4);
}

/* Pricing Section Responsive Styling */
.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.pricing-row .title {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    color: #c49c5d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-row .dots {
    flex: 0 0 auto;
    min-width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #91765a, transparent);
    margin: 0 10px;
}

.pricing-row .price {
    flex: 0 0 auto;
    font-weight: 700;
    color: #c49c5d;
    text-align: right;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .slider-buttons .button-1 {
        min-width: 200px;
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pricing-row .title {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .pricing-row .dots {
        display: none;
    }
    
    .pricing-row .price {
        align-self: flex-end;
        background: rgba(145, 118, 90, 0.2);
        padding: 5px 10px;
        border-radius: 4px;
        border: 1px solid #91765a;
        color: #c49c5d;
    }
}

@media (max-width: 480px) {
    .pricing-row .title {
        font-size: 14px;
    }
    
    .pricing-row .price {
        font-size: 14px;
        padding: 4px 8px;
    }
}

/* Banner Placeholder Styling */
.banner-placeholder {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(145, 118, 90, 0.2) !important;
    padding: 20px 25px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.banner-placeholder:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(145, 118, 90, 0.3) !important;
}

.banner-placeholder i {
    color: #91765a !important;
    font-size: 24px !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.banner-placeholder h4 {
    color: #c49c5d !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 16px !important;
}

.banner-placeholder p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 12px !important;
    font-size: 13px !important;
}

.banner-link {
    color: #c49c5d !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.banner-link:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.banner-link i {
    margin-right: 5px !important;
    font-size: 14px !important;
}

/* Team Cards Equal Height */
.owl-carousel .team-card {
    height: auto !important;
    min-height: 350px !important;
}

/* Job Image with Icon Overlay */
.job-image-container {
    position: relative !important;
}

.job-icon-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
    transition: opacity 0.3s ease !important;
}

.job-card:hover .job-icon-overlay {
    opacity: 0 !important;
}

.job-icon-overlay i {
    font-size: 80px !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* Team Dots Styling */
.team .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.team .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.team .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(145, 118, 90, 0.3) !important;
    border: 2px solid #91765a !important;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.team .owl-dots .owl-dot.active span,
.team .owl-dots .owl-dot:hover span {
    background: #91765a !important;
    border-color: #c49c5d !important;
    transform: scale(1.2);
}