/* Ensure no gaps between sections */
* {
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: Roboto, sans-serif, Arial, sans-serif;
    color: #fff;
    direction: rtl;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.header-nav-section,
.hero-section,
.hero-header-image,
.hero-main-image {
    margin: 0 !important;
    padding: 0 !important;
}

.header-nav-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.header-nav-image {
    width: 100%;
    height: 75px;
    display: block;
    filter: sepia(30%) saturate(150%) hue-rotate(15deg) brightness(1.1);
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-header-image {
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: auto;
    text-align: center;
}

/* Booking Form - Updated to match video design */
.booking-form-container {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 450px;
    z-index: 4;
}

.booking-form {
    background: rgba(24, 23, 23, 0.6);
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-block;
    width: 100%;
    padding: 40px 50px;
}

/* Rotating Border Effect for Form */
.booking-form::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, #DFBC5D, transparent, #FFD700, transparent, #DFBC5D, transparent, #FFD700, transparent, #DFBC5D, transparent);
    z-index: -1;
    animation: border-rotate 4s linear infinite;
    border-radius: 20px;
}

.booking-form::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    border-radius: 17px;
}

/* Enhanced rotation when focused */
.booking-form:focus-within::before {
    animation: border-rotate-focus 2s linear infinite;
}

@keyframes border-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes border-rotate-focus {
    0% {
        transform: rotate(0deg);
        background: linear-gradient(45deg, transparent, #FFD700, transparent, #DFBC5D, transparent, #FFD700, transparent);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced glow when form is focused */
.booking-form:focus-within {
    animation: glowBorderFocus 2s ease-in-out infinite alternate;
}

@keyframes glowBorderFocus {
    0% {
        box-shadow:
            0 0 10px rgba(223, 188, 93, 0.6),
            0 0 20px rgba(223, 188, 93, 0.4),
            0 0 30px rgba(223, 188, 93, 0.3);
        border-color: #FFD700;
    }

    100% {
        box-shadow:
            0 0 20px rgba(223, 188, 93, 0.8),
            0 0 40px rgba(223, 188, 93, 0.5),
            0 0 60px rgba(223, 188, 93, 0.4);
        border-color: #FFD700;
    }
}

/* Glow Border Animation */
@keyframes glowBorder {
    0% {
        box-shadow:
            0 0 5px rgba(223, 188, 93, 0.3),
            0 0 10px rgba(223, 188, 93, 0.2),
            0 0 15px rgba(223, 188, 93, 0.1);
        border-color: #DFBC5D;
    }

    50% {
        box-shadow:
            0 0 10px rgba(223, 188, 93, 0.5),
            0 0 20px rgba(223, 188, 93, 0.3),
            0 0 30px rgba(223, 188, 93, 0.2);
        border-color: #FFD700;
    }

    100% {
        box-shadow:
            0 0 15px rgba(223, 188, 93, 0.7),
            0 0 30px rgba(223, 188, 93, 0.4),
            0 0 45px rgba(223, 188, 93, 0.3);
        border-color: #DFBC5D;
    }
}

/* Enhanced glow when form is focused */
.booking-form:focus-within {
    animation: glowBorderFocus 2s ease-in-out infinite alternate;
}

@keyframes glowBorderFocus {
    0% {
        box-shadow:
            0 0 10px rgba(223, 188, 93, 0.6),
            0 0 20px rgba(223, 188, 93, 0.4),
            0 0 30px rgba(223, 188, 93, 0.3);
        border-color: #FFD700;
    }

    100% {
        box-shadow:
            0 0 20px rgba(223, 188, 93, 0.8),
            0 0 40px rgba(223, 188, 93, 0.5),
            0 0 60px rgba(223, 188, 93, 0.4);
        border-color: #FFD700;
    }
}

.booking-form h3 {
    color: #DFBC5D;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(223, 188, 93, 0.3);
}

/* Rotating Border Effect for Form Title */
.booking-form h3::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, #DFBC5D, transparent, #FFD700, transparent, #DFBC5D, transparent);
    z-index: -1;
    animation: border-rotate 4s linear infinite;
    border-radius: 12px;
}

.booking-form h3::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
    border-radius: 9px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #DFBC5D;
    border-radius: 8px;
    color: #fff;
    /* padding: 12px 15px; */
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(223, 188, 93, 0.1);
}

.form-control:focus {
    border-color: #FFD700;
    box-shadow:
        0 0 10px rgba(223, 188, 93, 0.4),
        0 0 20px rgba(223, 188, 93, 0.2),
        0 0 30px rgba(223, 188, 93, 0.1);
    outline: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Select2 Custom Styling - Enhanced for visibility */
.select2-container--default .select2-selection--single {
    background: #0A0A0A !important;
    border: 2px solid #DFBC5D !important;
    border-radius: 15px !important;
    color: #fff !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 5px rgba(223, 188, 93, 0.2) !important;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #FFD700 !important;
    box-shadow:
        0 0 10px rgba(223, 188, 93, 0.4),
        0 0 20px rgba(223, 188, 93, 0.2),
        0 0 30px rgba(223, 188, 93, 0.1) !important;
    transform: translateY(-1px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    background: #0A0A0A !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    transform: translateY(-2px) !important;
    transition: transform 0.3s ease !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.1rem !important;
    transform: translateY(-2px) !important;
    transition: transform 0.3s ease !important;
}

/* Move text higher when focused */
.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__rendered {
    transform: translateY(-4px) !important;
}

.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__placeholder {
    transform: translateY(-4px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background: #0A0A0A !important;
    border-left: 2px solid #DFBC5D !important;
    transition: all 0.3s ease !important;
}

.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow {
    border-left-color: #FFD700 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
    transition: all 0.3s ease !important;
}

.select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow b {
    border-color: #FFD700 transparent transparent transparent !important;
}

.select2-dropdown {
    background: #0A0A0A !important;
    border: 2px solid #DFBC5D !important;
    border-radius: 15px !important;
    box-shadow:
        0 0 20px rgba(223, 188, 93, 0.3),
        0 0 40px rgba(223, 188, 93, 0.1) !important;
    margin-top: 5px !important;
}

.select2-container--default .select2-results__option {
    color: #fff !important;
    background: #0A0A0A !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #DFBC5D !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
    box-shadow: 0 0 10px rgba(223, 188, 93, 0.3) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #333 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* Force white text for selected option */
.select2-container--default .select2-selection--single .select2-selection__choice {
    color: #fff !important;
    background: #333 !important;
    border: 1px solid #DFBC5D !important;
    border-radius: 8px !important;
    padding: 4px 8px !important;
    margin: 2px !important;
}

.select2-container--default .select2-selection--single .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 5px !important;
}

/* Override all text colors to ensure visibility */
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered *,
.select2-container--default .select2-selection--single .select2-selection__rendered span,
.select2-container--default .select2-selection--single .select2-selection__rendered div {
    color: #fff !important;
    background: transparent !important;
}

/* Ensure dropdown text is visible */
.select2-results__option,
.select2-results__option * {
    color: #fff !important;
}

/* Selected text in dropdown */
.select2-results__option[aria-selected=true] {
    background: #DFBC5D !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
}

/* Additional fixes for better visibility */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    background: transparent !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
    color: #fff !important;
    background: transparent !important;
}

/* Ensure selected text is always white */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
}

/* Additional override rules for maximum visibility */
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered span,
.select2-container--default .select2-selection--single .select2-selection__rendered div,
.select2-container--default .select2-selection--single .select2-selection__rendered p {
    color: #fff !important;
    background: transparent !important;
    text-align: right !important;
    direction: rtl !important;
}

/* Force white color for all text elements in select2 */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    text-align: right !important;
    direction: rtl !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered * {
    color: #fff !important;
    text-align: right !important;
    direction: rtl !important;
}

/* Override any inline styles */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    text-align: right !important;
    direction: rtl !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
    color: #fff !important;
    text-align: right !important;
    direction: rtl !important;
}

/* Fix for dropdown options */
.select2-results__option {
    color: #fff !important;
    background: #0A0A0A !important;
    text-align: right !important;
    direction: rtl !important;
}

.select2-results__option:hover {
    background: #DFBC5D !important;
    color: #0a0a0a !important;
}

.select2-results__option[aria-selected=true] {
    background: #DFBC5D !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
}

/* Force white text in selection */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    text-align: right !important;
    direction: rtl !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered * {
    color: #fff !important;
    text-align: right !important;
    direction: rtl !important;
}

/* Radio Buttons - Updated styling */
.form-check {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.form-check:focus-within {
    transform: translateY(-1px);
}

.form-check-input[type="radio"] {
     top: -4px;
    accent-color: #DFBC5D;
    width: 17px;
    height: 25px;
    margin-right: 0px;
    cursor: pointer;
    transition: all 0.3sease;
    box-shadow: 0 0 5px rgba(223, 188, 93, 0.2);
}
@media (max-width: 767px) {
    .form-check-input[type="radio"] {
        right: 6px;
        top: -4px;
        accent-color: #DFBC5D;
        width: 17px;
        height: 25px;
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3sease;
        box-shadow: 0 0 5px rgba(223, 188, 93, 0.2);
    
    }
    
    .form-check label {
        margin-right: 5px;
        text-align: right;
    }
    
    .branch-label {
        margin-right: 42px !important;
        font-size: 1rem !important; 
        color: #fff !important;
        cursor: pointer !important;
        flex: 1 !important;
        transition: all 0.3s ease !important;
        text-align: right !important;
    }
}

@media (max-width: 576px) {
    .form-check-input[type="radio"] {
        margin-left: 10px;
    }
}

.form-check-input[type="radio"]:focus {
    box-shadow:
        0 0 10px rgba(223, 188, 93, 0.4),
        0 0 20px rgba(223, 188, 93, 0.2);
    transform: scale(1.1);
}

.form-check label {
    color: #fff;
    font-size: 1.1rem;
    margin-right: 25px;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    text-align: right;
}

.form-check:focus-within label {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(223, 188, 93, 0.3);
}

/* Submit Button - Updated to match image */
.btn_1 {
    background: #000;
    color: #DFBC5D;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(223, 188, 93, 0.2);
}

/* Rotating Border Effect for Button */
.btn_1::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, #DFBC5D, transparent, #FFD700, transparent, #DFBC5D, transparent);
    z-index: -1;
    animation: border-rotate 3s linear infinite;
    border-radius: 11px;
}

.btn_1::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #000;
    z-index: -1;
    border-radius: 6px;
}

.btn_1:hover {
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow:
        0 0 15px rgba(223, 188, 93, 0.4),
        0 0 30px rgba(223, 188, 93, 0.2);
}

.btn_1:focus {
    color: #FFD700;
    transform: translateY(-1px);
    box-shadow:
        0 0 15px rgba(223, 188, 93, 0.5),
        0 0 30px rgba(223, 188, 93, 0.3),
        0 0 45px rgba(223, 188, 93, 0.2);
    outline: none;
}

.btn_1:hover::before {
    animation: border-rotate-focus 1.5s linear infinite;
}

/* Services Section - Slider Design */
.services-section {
    background: #0a0a0a;
    padding: 100px 0;
    position: relative;
}

.services-title {
    text-align: center;
    color: #DFBC5D;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(223, 188, 93, 0.4);
}

/* Services Slider */
.services-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.services-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 20px 0;
    flex: 1;
    overflow: visible;
    width: fit-content;
    transform: translateX(0);
    margin: 0 20px;
}

.service-card {
    background: rgba(26, 26, 26, 0.95);
    border: none;
    border-radius: 25px;
    padding: 0;
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin: 0;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    min-width: 60px;
    flex-shrink: 0;
}

.slider-btn {
    background: #0a0a0a;
    color: #DFBC5D;
    border: 2px solid #DFBC5D;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(223, 188, 93, 0.3);
    z-index: 10;
    position: relative;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #DFBC5D;
    color: #0a0a0a;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(223, 188, 93, 0.5);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #0a0a0a;
    color: rgba(223, 188, 93, 0.5);
}

/* Rotating Border Effect for Service Cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, #DFBC5D, transparent, #FFD700, transparent, #DFBC5D, transparent);
    z-index: -1;
    animation: border-rotate 4s linear infinite;
    border-radius: 28px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(26, 26, 26, 0.95);
    z-index: -1;
    border-radius: 23px;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card:hover::before {
    animation: border-rotate-focus 2s linear infinite;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.service-icon {
    font-size: 1.2rem;
    color: #DFBC5D;
}

.service-card h4 {
    color: #DFBC5D;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-align: right;
}

.price {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.currency {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-description {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: right;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    background: #0a0a0a;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(223, 188, 93, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.testimonials-title {
    text-align: center;
    color: #DFBC5D;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    margin-top: 0;
    text-shadow: 0 0 20px rgba(223, 188, 93, 0.4);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid #DFBC5D;
    border-radius: 25px;
    padding: 40px 30px 30px 30px;
    margin: 20px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 60px;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #DFBC5D;
    margin: -85px auto 23px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 3;
}

.testimonial-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.testimonial-card .name {
    color: #DFBC5D;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Payment Methods */
.payment-methods {
    margin: 30px 0;
}

.payment-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.payment-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 40px;
    height: 19px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Privacy Policy */
.privacy-policy {
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
}

.privacy-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.privacy-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ff6666;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
    }

    .hero-main-image {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: cover;
    }

    .hero-logo {
        position: absolute;
        top: 2%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        min-height: auto;
        justify-content: flex-start;
    }

    .booking-form-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: 20px auto;
        z-index: 4;
    }

    .booking-form {
        padding: 25px 20px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
    }

    .hero-main-image {
        max-height: 50vh;
    }

    .hero-logo {
        top: 2%;
    }

    .hero-content {
        min-height: auto;
        padding: 15px;
    }

    .booking-form-container {
        width: 95%;
        margin: 15px auto;
    }

    .booking-form {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .hero-main-image {
        max-height: 45vh;
    }

    .hero-logo {
        top: 1%;
    }

    .booking-form-container {
        width: 98%;
        margin: 10px auto;
    }

    .booking-form {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .hero-main-image {
        max-height: 40vh;
    }

    .hero-logo {
        top: 1%;
    }

    .booking-form-container {
        width: 100%;
        margin: 5px auto;
        padding: 0 10px;
    }

    .booking-form {
        padding: 15px 10px;
    }
}

/* General Responsive Design */
@media (max-width: 1400px) {
    .hero-content {
        padding: 0 30px;
    }

    .form-control {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .btn_1 {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 25px;
    }

    .form-control {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .btn_1 {
        font-size: 0.9rem;
        padding: 9px 16px;
    }

    .payment-text {
        font-size: 0.9rem;
    }

    .privacy-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding: 0 20px;
    }

    .form-control {
        font-size: 0.8rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .btn_1 {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .payment-text {
        font-size: 0.85rem;
    }

    .privacy-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 0 15px;
    }

    .form-control {
        font-size: 0.75rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .btn_1 {
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    .payment-text {
        font-size: 0.8rem;
    }

    .privacy-text {
        font-size: 0.8rem;
    }

    .payment-container {
        flex-direction: row;
        gap: 10px;
        text-align: right;
        justify-content: space-between;
        align-items: center;
    }

    .payment-text {
        order: 1;
        flex-shrink: 0;
        margin: 0;
        font-size: 0.75rem;
    }

    .payment-icons {
        order: 2;
        justify-content: flex-start;
        flex-shrink: 0;
    }

    .payment-icons img {
        width: 42px;
        height: 17px;
    }

    .testimonial-card {
        margin: 25px 10px;
        padding: 35px 25px;
    }

    /* App Download Section - Small mobile spacing */
    .app-download-section .row {
        gap: 15px;
    }

    .app-download-section .col-md-3 {
        margin-bottom: 12px;
    }

    .app-download-section .col-md-3:last-child {
        margin-bottom: 0;
    }

    .serives {
        padding-left: 60px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Testimonials Section - Enhanced mobile spacing */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 20px 0;
    }

    .testimonials-title {
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .testimonial-card {
        margin: 20px 10px;
        padding: 30px 20px;
    }

    .testimonials-section .row {
        gap: 20px;
        margin: 0;
    }

    /* Additional spacing for testimonial cards container */
    .testimonials-section .container {
        padding: 0 20px;
    }

    .testimonials-section .row {
        gap: 30px;
        margin: 0;
    }

    .testimonials-section .col-md-6,
    .testimonials-section .col-lg-4,
    .testimonials-section .col-xl-3 {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* Ensure cards don't stick together */
    .testimonial-card+.testimonial-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 20px 0;
    }

    .testimonials-title {
        margin-bottom: 40px;
    }

    .testimonial-card {
        margin: 35px 15px;
        padding: 35px 25px;
    }

    /* Additional spacing for testimonial cards container */
    .testimonials-section .container {
        padding: 0 15px;
    }

    .testimonials-section .row {
        gap: 25px;
        margin: 0;
    }

    .testimonials-section .col-md-6,
    .testimonials-section .col-lg-4,
    .testimonials-section .col-xl-3 {
        margin-bottom: 25px;
        padding: 0 8px;
    }

    /* Ensure cards don't stick together */
    .testimonial-card+.testimonial-card {
        margin-top: 35px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        margin: 20px 5px;
        padding: 30px 20px 20px 20px;
        margin-top: 50px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
        margin: -57px auto 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .stars {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .customer-name {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .customer-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin: 15px 5px;
        padding: 25px 15px 15px 15px;
        margin-top: 40px;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
        margin: -57px auto 12px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .stars {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .customer-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .customer-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        margin-top: 50px;
        padding: 30px 20px 20px 20px;
    }
    
    .testimonial-image {
        margin: -50px auto 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        margin-top: 40px;
        padding: 25px 15px 15px 15px;
    }
    
    .testimonial-image {
        margin: -57px auto 12px;
    }
}

/* App Download Section - Mobile spacing improvements */
@media (max-width: 767px) {
    .app-download-section {
        padding: 60px 0;
    }

    .app-download-section h2 {
        margin-bottom: 30px;
    }

    .app-download-section .row {
        gap: 20px;
        justify-content: center;
    }

    .app-download-section .col-md-3 {
        margin-bottom: 15px;
        text-align: center;
    }

    .app-download-section .col-md-3:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .app-download-section {
        padding: 50px 0;
    }

    .app-download-section h2 {
        margin-bottom: 25px;
        font-size: 2.5rem;
    }

    .app-download-section .row {
        gap: 15px;
        justify-content: center;
    }

    .app-download-section .col-md-3 {
        margin-bottom: 12px;
        text-align: center;
    }

    .app-download-section .col-md-3:last-child {
        margin-bottom: 0;
    }
}

.header-nav-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

.header-nav-image {
    width: 100%;
    height: 75px;
    display: block;
    filter: sepia(30%) saturate(150%) hue-rotate(15deg) brightness(1.1);
}

/* Moving Text Overlay */
.moving-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 60px;
    overflow: hidden;
    background: transparent;
}

.moving-text {
    white-space: nowrap;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 60px;
    animation: scroll-text 25s linear infinite;
    direction: rtl;
    /*font-family: 'Arial', sans-serif;*/
}

@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .moving-text {
        font-size: 8px;
        animation-duration: 20s;
    }

    .moving-text-overlay {
        height: 50px;
    }

    .moving-text {
        line-height: 50px;
    }
    .header-nav-image {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .moving-text {
        font-size: 8px;
        animation-duration: 18s;
    }

    .moving-text-overlay {
        height: 45px;
    }

    .moving-text {
        line-height: 45px;
    }
    .header-nav-image {
        height: 20px;
    }
}

.hero-logo {
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-logo img {
    max-width: 340px;
    width: 100%;
    height: auto;
}




@media (max-width: 1400px) {
    .hero-logo img {
        max-width: 280px;
    }
}

@media (max-width: 1200px) {
    .hero-logo img {
        max-width: 250px;
        
    }
}

@media (max-width: 991px) {
    .hero-logo {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
}

@media (max-width: 767px) {
    .hero-logo img {
        max-width: 180px;
    }
    .hero-logo {
        position: absolute;
        top: 2%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
}

@media (max-width: 576px) {
    .hero-logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {

    .hero-logo {
        position: absolute;
        top: 2%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    .hero-logo img {
        max-width: 170px;
    }
}

@media (max-width: 360px) {
    .hero-logo img {
        max-width: 100px;
    }
}


.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 28px;
    position: absolute;
    top: 12px;
    right: 3px;
    width: 34px;

}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{
    top: 11px;
    left: 2px;
    right: 330px;

}




@media (max-width: 576px) {
    .form-check-input[type="radio"] {
        margin-left: 10px;
    }
}

