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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    color: #333;
    position: relative;
    min-height: 100vh;
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    margin: auto;
    max-width: 1200px;
    height: max-content;
}

/* Header */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar.hidden * {
    visibility: hidden;
}

.logo-area img {
    height: 100px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: block;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* Slideshow */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow .slide.active {
    opacity: 1;
}

.slides {
    display: none;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Hero Text */
.hero-text {
    text-align: center;
    padding: 50px 0;
    background: #fff;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #ff5a00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e14b00;
    color: #fff;
}

/* Footer Styles */
footer {
    background: #000;
    color: #fff;
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-top {
    background: #4caf50;
    padding: 20px;
    margin-bottom: 30px;
}

.footer-top .contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-top .contact-info h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-top .contact-info p {
    color: #fff;
    margin: 5px 0;
    font-size: 1.1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h2 {
    color: #4caf50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4caf50;
}

.footer-section p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.categories ul {
    list-style: none;
    padding: 0;
}

.categories ul li {
    margin-bottom: 8px;
}

.categories ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.categories ul li a:hover {
    color: #4caf50;
}

.subscribe-form {
    display: flex;
    margin: 10px 0;
}

.subscribe-form input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
}

.subscribe-form button {
    padding: 8px 15px;
    background: #4caf50;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.9rem;
}

.subscribe-form button:hover {
    background: #66bb6a;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: #4caf50;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icons .facebook:hover {
    color: #1877f2;
}

.social-icons .instagram:hover {
    color: #e4405f;
}

.social-icons .tiktok:hover {
    background: #000;
}

.social-icons .telegram:hover {
    background: #0088cc;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    margin-top: 20px;
    color: #fff;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 15px 20px;
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .developer {
    text-align: right;
}

.footer-bottom span {
    color: #4caf50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-section {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom .copyright,
    .footer-bottom .developer {
        text-align: center;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.contact-header {
    padding: 20px;
    text-align: center;
    color: black;
}

.contact-container {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    display: flex;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    flex: 1.5;
}

.contact-form h2,
.map-container h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2:after,
.map-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #28a745;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #28a745;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #28a745;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.map-container {
    flex: 1;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 40px 15px;
    }

    .contact-form-container {
        flex-direction: column;
        padding: 30px;
    }

    .contact-form h2,
    .map-container h2 {
        font-size: 1.8rem;
    }

    .map iframe {
        height: 350px;
    }
}

.hero-content {
    position: absolute;
    top: 70%;
    left: 1%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 2;
    width: 50%;
    padding: 40px;
    background: transparent;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: white;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    color: white;
    padding-left: 5px;

}

.hero-content button {
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-content button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.car-rental-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.car-rental-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.car-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-image {
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-box:hover .car-image img {
    transform: scale(1.05);
}

.car-info {
    padding: 20px;
}

.car-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.car-price {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
}

.car-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.car-features li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.car-features li:before {
    content: "✓";
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

.rent-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rent-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: 1fr;
    }

    .car-rental-section {
        padding: 40px 10px;
    }
}

.shuttle-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.shuttle-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.shuttle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shuttle-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shuttle-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shuttle-image {
    height: 200px;
    overflow: hidden;
}

.shuttle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shuttle-box:hover .shuttle-image img {
    transform: scale(1.05);
}

.shuttle-info {
    padding: 20px;
}

.shuttle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.shuttle-price {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
}

.shuttle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.shuttle-features li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.shuttle-features li:before {
    content: "✓";
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

.book-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .shuttle-grid {
        grid-template-columns: 1fr;
    }

    .shuttle-section {
        padding: 40px 10px;
    }
}

.about-content {
    padding: 80px 20px;
    background: #f9f9f9;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
    text-align: center;
    color: #333;
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 20px;
}

.about-section h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #28a745;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 15px;
    }

    .about-section {
        padding: 30px;
    }

    .about-section h1 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

.tour-container {
    padding: 80px 20px;
    background: #f9f9f9;
}

.tour-section {
    max-width: 1200px;
    margin: 0 auto;
}

.tour-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 20px;
}

.tour-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #28a745;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tour-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-box:hover .tour-image img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-box:hover .tour-overlay {
    opacity: 1;
}

.tour-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.tour-overlay p {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.tour-btn {
    padding: 10px 25px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.tour-price {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-features li {
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
}

.tour-features li:before {
    content: "✓";
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tour-container {
        padding: 40px 15px;
    }

    .tour-section h2 {
        font-size: 2rem;
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Gallery Styles */
.image-gallery {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.gallery-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #28a745;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-content {
    text-align: center;
    color: #333;
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #28a745;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.gallery-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        padding: 2rem 1rem;
    }

    .gallery-content h3 {
        font-size: 1.3rem;
    }

    .gallery-content p {
        font-size: 1rem;
    }
}

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

    /* Header and Navigation */
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        align-items: center;
    }

    .logo-area img {
        height: 80px;
        width: 80px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 15px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        padding: 12px;
        display: block;
        width: 100%;
    }

    /* Hero Content */
    .hero-content {
        padding: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 15px 0;
    }

    .hero-content button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Car Rental Section */
    .car-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .car-box {
        margin-bottom: 20px;
    }

    /* Tour Section */
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .tour-box {
        margin-bottom: 20px;
    }

    /* Shuttle Section */
    .shuttle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .shuttle-box {
        margin-bottom: 20px;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .gallery-box {
        height: 200px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .copyright,
    .footer-bottom .developer {
        margin-bottom: 10px;
    }

    /* Contact Form */
    .contact-form-container {
        flex-direction: column;
    }

    .contact-form,
    .map-container {
        width: 100%;
    }

    .map iframe {
        height: 300px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .car-box,
    .tour-box,
    .shuttle-box {
        padding: 15px;
    }

    .car-info h3,
    .tour-info h3,
    .shuttle-info h3 {
        font-size: 1.2rem;
    }

    .car-price,
    .tour-price,
    .shuttle-price {
        font-size: 1.1rem;
    }

    .car-features li,
    .tour-features li,
    .shuttle-features li {
        font-size: 0.9rem;
    }

    .rent-btn,
    .tour-btn,
    .book-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    padding: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li a {
        color: #fff;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Explore Ethiopia Section */
.explore-ethiopia {
    padding: 80px 20px;
    background: #f9f9f9;
}

.explore-ethiopia .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.explore-ethiopia .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #28a745;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.explore-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.explore-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.explore-box:hover img {
    transform: scale(1.05);
}

.explore-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.explore-box:hover .explore-content {
    transform: translateY(0);
}

.explore-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.explore-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    background: #28a745;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.explore-link:hover {
    background: #218838;
    transform: translateX(5px);
}

.explore-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.explore-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .explore-ethiopia {
        padding: 40px 15px;
    }

    .explore-box img {
        height: 250px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: #fff;
}

.why-choose-us .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-us .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #28a745;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #28a745;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-box:hover:before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #28a745;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #28a745;
}

.feature-box:hover .feature-icon i {
    color: #fff;
    transform: rotateY(360deg);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 25px;
    }
}

/* Tour Page Styles */
.tour-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('slideshow4.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.tour-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tour-filters {
    padding: 20px 0;
    background: wheat;
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by label {
    font-weight: 500;
    color: #333;
}

.sort-by select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 0.9rem;
}

.tour-grid {
    padding: 40px 0;
}

.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tour-rating .rating {
    font-weight: 600;
    font-size: 1.1rem;
}

.tour-rating .reviews {
    font-size: 0.8rem;
    opacity: 0.9;
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.tour-meta i {
    color: #28a745;
    margin-right: 5px;
}

.tour-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.feature span:first-child {
    color: #666;
}

.feature .rating {
    color: #28a745;
    font-weight: 500;
}

.explore-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.explore-btn:hover {
    background: #218838;
    transform: translateX(5px);
}

.explore-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

.tour-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('slideshow5.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-top: 50px;
}

.tour-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.tour-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .tour-hero {
        height: 300px;
    }

    .tour-hero h1 {
        font-size: 2.5rem;
    }

    .tour-hero p {
        font-size: 1.2rem;
    }

    .filter-options {
        justify-content: center;
    }

    .tours-container {
        grid-template-columns: 1fr;
    }

    .tour-cta {
        padding: 60px 20px;
    }

    .tour-cta h2 {
        font-size: 2rem;
    }
}

/* Tour Details Page Styles */
.tour-details-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.tour-details-header {
    text-align: center;
    margin-bottom: 40px;
}

.tour-details-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.tour-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tour-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tour-description {
    padding: 20px;
}

.tour-description h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.tour-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tour-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tour-features .feature {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.tour-features .feature i {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tour-features .feature span {
    display: block;
    color: #666;
}

.tour-itinerary {
    margin-bottom: 30px;
}

.tour-itinerary p {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
}

.tour-includes {
    margin-bottom: 30px;
}

.tour-includes ul {
    list-style: none;
    padding: 0;
}

.tour-includes li {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tour-includes li:before {
    content: '✓';
    color: #28a745;
    margin-right: 10px;
}

.book-now-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.book-now-btn:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-now-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .tour-details-content {
        grid-template-columns: 1fr;
    }

    .tour-image img {
        height: 300px;
    }

    .tour-features {
        grid-template-columns: 1fr;
    }
}