* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    line-height: 1.6;
	padding: 0px;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.van {
    background-image: 
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.6),
            transparent,
            transparent,
            transparent),
        url("https://static.wixstatic.com/media/dab420_497d414d9e3845d58afc4f468d7886e9~mv2.webp");
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
}

.header {
    background-color: #000080;
    padding: 5px 0;
}


.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    outline: none;
	text-decoration: none;
}
.hero {
    height: 70vh;
    padding-top: 3%;
    padding-left: 15%;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

 

.hero h2 {
    font-size: 2.5rem; 
    font-weight: 500;
    margin-bottom: 0rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 500;
    max-width: 600px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.about-main {
    flex: 1;
    max-width: 650px;
}

.about-main h2 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-main p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.about-more {
    flex: 0 0 350px;
}

.about-more h2 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.info-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #666;
}

.info-value {
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
}

/* Booking Section */
.booking-section {
    background-image: 
        linear-gradient(to right, 
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.3),
            transparent,
            transparent,
            transparent),
        url("https://static.wixstatic.com/media/dab420_497d414d9e3845d58afc4f468d7886e9~mv2.webp");
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 4rem 2rem;
}

.booking-content {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-content h1 {
    color: white;
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 500;
}

.booking-content p {
    color: white;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
}

.btn-book {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.btn-book:hover {
    color: #3995f1;
}

        .form {
            background-color: #fff;
            padding: 10px 20px 15px 20px;
            box-shadow: none;
            border: 0px solid #e0e0e0;
            background-color: #F2F4F8;
            border-radius: 10px;
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
        	margin-bottom: 15px !important;
            margin-top: 15px !important;
        }

        .form span {
            color: black;
        }

        /* Input Fields */
        input[type="text"],
        input[type="number"],
        select,
        input[type="date"],
        input[type="time"] {
            width: 100%;
            height: 35px;
            padding: 10px;
            font-size: 13px;
            border: 0px solid #e2e2e2;
            background-color: #fff;
            border-radius: 4px;
            box-sizing: border-box;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
        }

        input[type="text"]:focus,
        input[type="number"]:focus,
        select:focus,
        input[type="date"]:focus,
        input[type="time"]:focus {
            outline: none;
            border: none;
        }

        /* Labels */
        .label {
            color: #555;
            position: relative;
            margin-bottom: 0px;
        }

        /* Εικονίδια μέσα στα πεδία */
        .label i {
            position: absolute;
            left: 5px;
            top: 45%;
            transform: translateY(-50%);
            color: #000;
            font-size: 14px;
            z-index: 2;
            pointer-events: none;
        }

        /* Input fields με εικονίδια - padding αριστερά */
        .label input[type="text"] {
            padding-left: 25px;
        	
        }

        /* Placeholders */
        ::placeholder {
            color: #000000;
            font-size: 13px;
            opacity: 1;
        }

        /* Container for two-column layout */
        .date-time-containerr {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .flight-input-container {
            flex-basis: 100%;
            position: relative;
        }

        .input-field1,
        .time-selection-container {
            margin-bottom: 5px;  
        }

        .input-field1 {
            width: 100%;
            height: 35px;
            padding: 6px;
            border: 0px solid #e2e2e2;
            border-radius: 3px;
            background-color: #fff;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
            font-size: 13px;
        }

        /* Ειδικό styling για departure input με εικονίδιο */
        .flight-input-container input[type="text"] {
            padding-left: 25px;
        }

    	.flatpickr-months .flatpickr-month {
        background: #007C1A;
        border-radius: 6px;

    	}
        .flight-input-container i {
            position: absolute;
            left: 5px;
            top: 45%;
            transform: translateY(-50%);
            color: #000000;
            font-size: 14px;
            z-index: 2;
            pointer-events: none;
        }

        #return,
        #departure {
            height: 35px;
            margin-bottom: 5px;
        	font-size: 12px;
        }

        /* Time Selection Container */
        .time-selection-container {
            display: none;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
            padding: 2px;
            padding-right: 10px;
            padding-left: 10px;
            border-radius: 4px;
            background-color: #fff;
        	height: 35px;
        }

        .item-price011,
        .item-title011 {
            color: #000;
        }
        
        .item-title011 {
            font-size: 13px;
        }

        .item-price011 {
            font-size: 11px;
        }

        .counter01 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 80px;
            font-size: 14px;
            font-weight: normal;
        }

        .counter01 button {
            background-color: #171D21;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            font-weight: normal;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .counter01 button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        .counter-input {
            font-size: 16px;
            font-weight: bold;
            color: #000000;
            padding: 0px !important;
            text-align: center;
            width: 25px !important;
        	height: 30px !important;
        }

        #calculate {
            padding: 8px;
            color: #fff;
            background: #007C1A;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            font-weight: normal;
            width: 100%;
        	height: 40px;
            margin-top: 8px;
        }

        /* Google Places Autocomplete Container */
        .pac-container {
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            margin-top: 2px;
            z-index: 1000;
        }

        /* Individual suggestion items */
        .pac-item {
            padding: 5px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            font-size: 0px;
            color: #000 !important
        }

        .pac-item:last-child {
            border-bottom: none;
        }

        /* Hover state */
        .pac-item:hover {
            background-color: #f0f0f0;
        }

        /* Main text */
        .pac-item-query {
            color: #000;
            font-weight: normal;
        }

        /* Secondary text */
        .pac-item span {
            color: #000;
        }

        /* Active field overlay styles */
        .active-field-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 50px;
            flex-direction: column;
            text-align: center;
        }

        .overlay-title {
            position: absolute;
            top: 0px;
            font-size: 28px;
            font-weight: 600;
            margin-left: 7%;
            margin-top: 20px;
            color: black;
            font-weight: 400 !important;
        }

        .active-field {
            position: fixed !important;
            top: 70px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 86% !important;
            height: 50px !important;
            max-width: 500px !important;
            z-index: 200 !important;
            font-size: 13px !important;
            padding: 20px !important;
            margin: 0 auto !important;
            border: 2px solid #146AFF !important;
            border-radius: 6px !important;
            background: white !important;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.0);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background-color: #f2f2f2;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Modal Styles */
        .departure-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            backdrop-filter: blur(5px);
        }

        .departure-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: white;
            border-radius: 12px;
            padding: 0;
            width: 90%;
            max-width: 400px;
            max-height: 90vh;
            overflow: hidden;
            animation: modalSlideIn 0.3s ease-out;
            position: absolute;
            top: 0;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            padding: 20px 20px 10px 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s;
        }

        .modal-close:hover {
            background-color: #f5f5f5;
        }

        .modal-body {
            padding: 20px;
        }

        .calendar-container {
            margin-bottom: 20px;
        }

        .time-selection {
            margin-bottom: 20px;
        }

        .time-selection label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .time-input {
            width: 100%;
            padding: 0px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        	text-align: center;
        }

        .time-input:focus {
            border-color: #4285f4;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            padding: 0 20px 20px 20px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn.primary {
            background-color: #007C1A;
            color: white;
        }

        .modal-btn.primary:hover {
            background-color: #3367d6;
        }

        .modal-btn.secondary {
            background-color: #f8f9fa;
            color: #666;
            border: 0px solid #ddd;
        }

        .modal-btn.secondary:hover {
            background-color: #e9ecef;
        }

        /* Custom Flatpickr styles for modals */
        .modal-body .flatpickr-calendar {
            box-shadow: none !important;
            border: none !important;
            font-family: inherit !important;
        }

        .modal-body .flatpickr-calendar.inline {
            display: block !important;
            position: static !important;
        }

        .modal-body .flatpickr-months {
            background: #4285f4 !important;
            color: white !important;
        }

        .modal-body .flatpickr-current-month .flatpickr-monthDropdown-months {
            background: transparent !important;
            color: white !important;
        }

        .modal-body .flatpickr-current-month input.cur-year {
            background: transparent !important;
            color: white !important;
        }

        .modal-body .flatpickr-weekday {
            background: #f8f9fa !important;
            color: #666 !important;
        }

        .modal-body .flatpickr-day:hover {
            background: #e3f2fd !important;
            color: #1976d2 !important;
        }

        .modal-body .flatpickr-day.selected {
            background: #007C1A; !important;
            color: white !important;
        }

        .modal-body .flatpickr-day.today {
            border-color: #007C1A; !important;
        }






/* === LOCATIONS - DAYTRIP STYLE === */
.locations-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    background: #f2f4f8;
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-card {
    background: white;
    overflow: hidden;
    transition: background 0.2s ease;
    display: flex;
    flex-direction: row;
    height: 165px;
    padding: 12px 16px;
    border-bottom: 0.5px solid #E7E7E7;
    border-top: 0.5px solid #E7E7E7;
    text-decoration: none;
    color: inherit;
}

.location-card:hover {
    background: #F5F5F5;
}

.location-image-wrapper {
    width: 125px;
    min-width: 125px;
    position: relative;
    flex-shrink: 0;
}

.location-type-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0, 53, 128, 0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.location-image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.location-content {
    flex: 1;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-title {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.location-rating {
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars {
    gap: 2px;
}

.star {
    width: 14px;
    height: 14px;
    color: #FFD700;
    font-size: 14px;
}

.rating-number {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.rating-count {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.location-description {
    font-size: 13px;
    color: #666;
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.location-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.location-features {
    display: flex;
    flex-direction: column;
}

.feature-main {
    font-size: 14px;
    font-weight: 450;
    color: #000080;
    line-height: 1;
}

.feature-sub {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.book-button {
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    color: #003580;
    text-decoration: none;
    padding: 0;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.book-button::after {
    content: '›';
    font-size: 20px;
    font-weight: 300;
}

.hero-container {
    background-color: none;
    padding: 0px 5px;
    text-align: left;
    border-radius: 4px;
	width: 98%;
    margin-top: 10px !important;
    margin: auto;
}
.hero-container h1 {
	letter-spacing: -1.2px;
	text-align: left;
	font-weight: normal;
}

.hero-container p {
    font-size: 1rem;
	text-align: left;
    line-height: 1.8;
    color: #333;
}


/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 8px;
}

footer h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

footer p {
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

footer a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999;
}
 
.buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.viber-button {
    background-color: #000080;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 43px;
    width: 48%;
    border-radius: 4px;
    border: none;
    font-family: Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    padding: 0px;
    gap: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.whatsapp-button {
    background-color: #007C1A;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 43px;
    width: 48%;
    border-radius: 4px;
    border: none;
    font-family: Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    padding: 0px;
    gap: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.button-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: ;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 5px;
}
.button-icon img {
    width: 30px;
    height: 30px;
}
.button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}
.button-text .small {
    font-size: 12px;
    opacity: 0.9;
}
.button-text .large {
    font-size: 16px;
    font-weight: bold;
}
.recommended-badge {
    position: absolute;
    top: -12px;
    right: 10px;
    background-color: #000;
    color: #ffd000;
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: bold;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    display: none;
}
/* Header Styles */
.header-container {
    background-color: #000080;
    color: white;
    padding: 15px 20px;
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
	margin-top: 0px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 25px;
}

.brand-info {
    display: block;
}

.brand-info h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
	margin-top: 0;
    color: #fff;
    text-align: left;
}

.brand-info p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
	color: white;
}

.contact-section {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.header-cta {
    background: #ffd000;
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.header-cta:hover {
    background: #ffdd33;
}

.menu-button {
    background: none;
    border: none;
    color: #ffd000;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1001;
    padding: 5px;
}

.menu-line {
    width: 35px;
    height: 3px;
    background-color: #ffd000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-button.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-button.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-button.active .menu-line:nth-child(3) {
    opacity: 0;
}

.menu-button.active .menu-line:nth-child(4) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -800px; /* Sidebar ÎºÏÏ…Î¼Î¼Î­Î½Î¿ Î±ÏÎ¹ÏƒÏ„ÎµÏÎ¬ */
    width: 380px;
    height: 100%;
    background-color: #000080;
    color: white;
    transition: left 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3); /* ÏƒÎºÎ¹Î¬ Ï€ÏÎ¿Ï‚ Ï„Î± Î´ÎµÎ¾Î¹Î¬ */
    direction: rtl; /* scrollbar ÏƒÏ„Î·Î½ Î±ÏÎ¹ÏƒÏ„ÎµÏÎ® Ï€Î»ÎµÏ…ÏÎ¬ */
}

/* Î•Ï€Î±Î½Î±Ï†Î¿ÏÎ¬ Ï†Î¿ÏÎ¬Ï‚ Î³Î¹Î± Ï„Î¿ Ï€ÎµÏÎ¹ÎµÏ‡ÏŒÎ¼ÎµÎ½Î¿ */
.sidebar * {
    direction: ltr;
}

.sidebar.active {
    left: 0;
    border-right: 1px solid #fff;
    border-radius: 0px 50px 50px 0px; /* ÏƒÏ„ÏÎ¿Î³Î³Ï…Î»ÏŒ ÏƒÏ„Î· Î´ÎµÎ¾Î¹Î¬ Ï€Î»ÎµÏ…ÏÎ¬ */
}

.sidebar-header {
    background-color: #000080;
    padding: 15px 20px;
    border-bottom: 2px solid rgba(255, 208, 0, 0.3);
    text-align: center;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px; /* ÎºÎ¿Ï…Î¼Ï€Î¯ ÎºÎ»ÎµÎ¹ÏƒÎ¯Î¼Î±Ï„Î¿Ï‚ ÏƒÏ„Î·Î½ Î±ÏÎ¹ÏƒÏ„ÎµÏÎ® Ï€Î»ÎµÏ…ÏÎ¬ */
    background: none;
    border: none;
    color: #ffd000;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.close-button:hover {
    background-color: rgba(255, 208, 0, 0.1);
    transform: rotate(-90deg);
}

.close-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.sidebar-header h2 {
    font-size: 26px;
    margin: 0 0 5px 0;
    color: #ffd000;
    font-weight: bold;
    text-align: left;
}

.sidebar-header p {
    margin: 0;
    font-size: 11px;
    opacity: 0.9;
    text-align: left;
	color: white;
}

.sidebar-content {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: rgba(255, 208, 0, 0.1);
    padding-left: 30px;
}

.sidebar-content .menu-item:nth-child(2) {
    display: none;
}

.item-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd000;
}

.item-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.item-description {
    font-size: 12px;
    color: #cdd3ff;
    line-height: 1.4;
	display: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 208, 0, 0.1);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 208, 0, 0.5);
}
 
 

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-more {
        flex: 1;
    }
} 



        /* Mobile responsive */
        @media (max-width: 768px) {
            .form {
                width: 100%;
                max-width: none;
                margin: 0 auto;
            }
            
            .modal-content {
                width: 95%;
                max-width: none;
            }
            
            .modal-header {
                padding: 50px 15px 5px 15px;
            }
            
            .modal-body {
                padding: 15px;
            }
            
            .modal-actions {
                padding: 0 15px 15px 15px;
            }
    .hero-container p {
        font-size: 0.95rem;
    }
   .header-container {
        background-color: #000080;
        color: white;
        padding: 8px 10px;
        border-radius: 0px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 100;
        margin-top: 0px;
    }
    .brand-info h1 {
        font-size: 20px;
    }
    .brand-info p {
        font-size: 12px;
    }
    .contact-section {
        gap: 10px;
    }
    .header-cta {
        padding: 8px 12px;
        font-size: 12px;
    }
    .menu-line {
        width: 28px;
    }
    
    .sidebar {
        width: 85%;
        right: -85%;
    }
    
    .menu-item {
        padding: 12px 15px;
    }
    
    .item-icon {
        width: 30px;
        height: 30px;
    }
    
    .item-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .item-title {
        font-size: 15px;
    }
    
    .item-description {
        font-size: 11px;
    }
    .container {
        width: 95%;
    }
    
    .van {
        height: 45vh;
        background-image: 
            linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.5),
                rgba(0, 0, 0, 0.6),
                rgba(0, 0, 0, 0.5),
                rgba(0, 0, 0, 0.5),
                rgba(0, 0, 0, 0.4),
                rgba(0, 0, 0, 0.3),
                transparent,
                transparent),
            url("https://static.wixstatic.com/media/dab420_497d414d9e3845d58afc4f468d7886e9~mv2.webp");
    }
    
    .hero {
        padding: 2.5rem;
        height: 45vh;
        padding-left: 0.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
        margin-top: 0rem;
    }
    
 
    
    .hero p {
        font-size: 13px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 1.5rem 0;
    }

    .about-content {
        gap: 2rem;
    }

    .about-main h2,
    .about-more h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .about-main p {
        font-size: 0.95rem;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .info-value {
        font-size: 1rem;
    }

    /* Booking Section Mobile */
    .booking-section {
        min-height: auto;
        padding: 3rem 1rem;
    	display: block
    }

    .booking-content {
        width: 100%;
    }

    .booking-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .booking-content p {
        font-size: 0.9rem;
    }

    .booking-content br {
        display: none;
    }
   .viber-button, .whatsapp-button {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .logo {
        width: 30px;
        height: 30px;
    }
    
    .brand-info h1 {
        font-size: 20px;
    }
    
    .menu-line {
        width: 28px;
    }
    
    .sidebar {
        width: 90%;
        right: -90%;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
    
 
    
    .booking-content h1 {
        font-size: 1.5rem;
    }
}
 