* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
	padding: 5px;
}

 

/* Header Styles */
.header-container {
    background-color: #000080;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
	margin-top: 10px;
}

.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: #000;
    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 20px 20px 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: 15px;
    padding: 5px 10px;
    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: #fff;
}

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

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

.item-title {
    font-size: 17px;
    font-weight: 500;
    color: #f1f1f1;
	line-height: 1.6;
}

.item-description {
    font-size: 10px;
    color: #cdd3ff;
	font-weight:600;
    line-height: 1.4;
}

.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, 255, 250, 0.1);
    border-radius: 4px;
}

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

.testing {
    padding: 5px 5px;
    display: block;
    width: auto;
}

.testing {
	padding: 5px 5px;
    display: block;
    width: auto;
}

/* Toggle container */
.toggle-switch {
    position: relative;
    display: inline-flex;
    background: #000080;
    border-radius: 999px;
    overflow: hidden;
    width: 100%;
    height: 40px;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.toggle-switch button {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    flex: 1;
    height: 100%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Active button */
.toggle-switch button.active {
    color: #000080 !important;
}

/* Slider background */
#slider {
    position: absolute;
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: calc(33% - 0px);
    background: #f2f4f8;
    border-radius: 999px;
    transition: left 0.3s ease;
    z-index: 1;
}
                                        

#btn-disposal svg {                             
height: 13px;
width: 13px;
margin-right: 5px;
color: #fff;
}
    .radio-button-container {
      display: flex;
      width: 100%;
      border-radius: 8px;
      gap: 10px;
      overflow: auto;
    }

    .radio-button-container::-webkit-scrollbar {
      height: 6px;
    }

    .radio-button-container::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 4px;
    }

    .radio-button-container::-webkit-scrollbar-thumb {
      background: #222;
      border-radius: 4px;
    }

    .radio-button {
      position: relative;
    }

    .radio-button__input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .radio-button__label {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 0px;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.2s ease;
      font-size: 14px;
      font-weight: 500;
      color: #111;
      white-space: nowrap;
    }

    .radio-button__custom {
      width: 18px;
      height: 18px;
      border: 2px solid #d0d0d0;
      border-radius: 50%;
      position: relative;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .radio-button__custom::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      background: #000;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.2s ease;
    }

    .radio-button__input:checked + .radio-button__label {
      color: #000;
    }

    .radio-button__input:checked + .radio-button__label .radio-button__custom {
      border-color: #000;
      border: 3px solid #000;
    }

    .radio-button__input:checked + .radio-button__label .radio-button__custom::after {
      transform: translate(-50%, -50%) scale(1);
    }
	
	.hero {
    	padding:5px;
	}
	.hero-container {
    	padding: 0px 5px 5px 5px;
    	border: 0px solid #000080;
    	border-radius: 4px;
	}

	.hero-container h1 {
    	color: #000;
    	font-size: 29px;
    	font-weight: normal;
    	margin-top: 5px;
        margin-bottom: 5px;
	}

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

.buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
    gap: 15px;
}

.viber-button {
    background-color: #000080;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 43px;
    width: 40%;
    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: 40%;
    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;
}
        .fa-compass {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 30px !important;
            color: #009900;
        	animation: spin 3s linear infinite !important;
        }
        @keyframes spin {
            0% { 
                transform: translateY(-50%) rotate(0deg);
            }
            100% { 
                transform: translateY(-50%) rotate(360deg);
            }
        }

.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;
	font-weight: bold !important;
}

.button-text .large {
    font-size: 16px;
    font-weight: bold;
}


 .destination-card button {
    background-color: #111;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
 
    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);

}
 
#destination:focus,
#pickup:focus {
  border: 0 !important;   /* αφαιρεί το border */
  outline: none !important; /* αφαιρεί το focus outline */
  
} 

/* Booking Container */
.booking-container {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
}

/* Form */
#taxiForm {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.section4 {
    margin-top: 00px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #F2F4F8;
    border-radius: 0px 0px 10px 10px;
    padding: 8px;
}
/* Form Rows */
.date-time-containerr {
    display: flex;
    margin-bottom: 0px;
    justify-content: space-between;
    gap: 5px;
}

.flight-input-container {
    flex: 1;
}

/* Input Container with Icons */
.input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-container i {
    margin-left: 5px;
    color: #333;
    font-size: 13px;
}
/* Select Inputs */
#tripType,
#serviceType {
    padding-left: 0;
    font-weight: bold;
	font-size: 12px;
}

.input-field100 {
    width: 80%;
    height: 30px;
    padding: 1px;
    border: none;
    border-radius: 5px;
    background: none;
    color: #000;
    cursor: pointer;
    font-weight: bold;
	font-size: 12px;
 }

/* Location Inputs */
.location-input,
.input-field1 {
    width: 100%;
    height: 45px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    color: #000;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#pickup {
    height: 43px;
    border-radius: 8px 8px 0 0;
    border-bottom: 3px solid #ccc;
}

#destination {
    border-radius: 0 0 8px 8px;
	height: 40px !important;
}


::placeholder {
    color: #000000;
    font-size: 12px;
    opacity: 1;
	font-weight: bold;
}
/* Submit Button */
#price4,
.submit-button {
    width: 100%;
    height: 40px;
    padding: 0;
    background: #000080;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

#price4:hover,
.submit-button:hover {
    background: #000066;
}

/* Image Section */
.image-section {
    flex: 0 0 400px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
	width: 100% !important;
	height: 550px !important;
}
 

button span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
}

button strong {
    font-size: 14px;
}



/* Content Sections */
section {
    background: #f1f1f1;
    margin: 20px 10px;
    padding: 30px 20px;
    border-radius: 8px;
}

h2 {
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0 8px;
}

h4 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

p {
    color: #666;
    margin-bottom: 12px;
}

/* Feature Items */
.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 20px 0;
}

.feature-item i {
    color: #222;
    font-size: 32px;
    flex-shrink: 0;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.service-item i {
    color: #000;
    font-size: 28px;
    margin-bottom: 10px;
}

.service-item h3 {
    margin: 10px 0;
}

.service-item p {
    font-size: 14px;
}

/* Destinations */
.destinations {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    margin: 20px 0;
}

.destination-card {
    min-width: 280px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.destination-card button {
    width: 100%;
    margin-top: 15px;
}

.badge {
    display: inline-block;
    background: #444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    margin: 5px 5px 5px 0;
}

/* Resort List */
.resort-list {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
}

.resort-item {
    min-width: 220px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.resort-item h4 {
    margin-bottom: 8px;
}

.resort-item p {
    font-size: 13px;
    margin-bottom: 5px;
}

/* Vehicles */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.vehicle-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-card img {
    width: 80px;
    height: auto;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Advantages */
.advantage-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    display: flex;
    gap: 15px;
}

.advantage-item i {
    width: 40px;
    height: 40px;
    background: #f2f4f8;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

/* 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;
}

/* Responsive */
@media (max-width: 768px) {

    
body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
 	padding: 0px;
}
    .service-grid {
	
	}
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
 
    
    .form-row {
        flex-direction: column;
    }

    .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;
    }
    .image-section {
        flex: none;
        order: -1;
    }
    
    .location-input,
    .input-field1 {
        padding: 8px;
    }
.hero-container p {
		font-size: 0.80rem;
        margin-bottom: 5px;
        font-weight: 600 !important;
    }
    .sidebar {
        width: 80%;
        right: -80%;
    }
.image-container img {
	width: 100% !important;
	height: 150px !important;
}
h2 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0 8px;
}

h4 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

p {
    color: #000;
	font-weight: 400;
    margin-bottom: 12px;
}
.service-item i,
.feature-item i {
    color: #222;
    font-size: 20px;
    flex-shrink: 0;
}

}
