html,
body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #fff;
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    width: 100%;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    background: transparent;
    /* semi-transparent */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Safari support */
    z-index: 99999;
    transition: 0.3s;
    height: 70px;
    font-size: 24px;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 95%);
}

#navbar.scrolled {
    background: #2b143d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid white;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 25px;
    justify-content: flex-start;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    gap: 10px;
    line-height: 5px;
}

.logo span {
    color: #ffd93d;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.logo a {
    text-decoration: none;
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.tab {
    position: absolute;
    right: 160px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

nav a:hover {
    color: rgb(255, 233, 33);
}

.tab .btn-primary {
    position: fixed;
    top: 12px;
    right: 35px;
    font-size: 16px;
    border: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: #ff6b6b;
    width: 100px;
    border-radius: 50px;
    color: white;
    height: 43px;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.tab .btn-primary:hover {
    scale: 103%;
    background-color: #f77c7c;
}


/* Mobile icon */

#menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}


/* ================= MOBILE MENU ================= */

.navbar {
    background: transparent;
    /* semi-transparent */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Safari support */
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 65px;
    width: 100%;
    transition: 0.3s ease;
    z-index: 9998;
    background: transparent;
    /* semi-transparent */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Safari support */
}

#mobilemenu.scrolled {
    background-color: #2b143d;
    z-index: 9998;
}

.mobile-menu.active {
    display: block;
    position: fixed;
}

.mobile-menu-content a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


/* ================= HERO SLIDER ================= */

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}


/* Slides */

.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}


/* Gradient attached to slide but hidden by default */

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.60) 30%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.01) 75%);
    opacity: 0;
    /* ✅ hidden */
    transition: opacity 1s ease-in;
}


/* ✅ Gradient appears ONLY on active slide */

.slide.active::before {
    opacity: 1;
}


/* Content */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    padding: 155px 80px;
    color: #fff;
}


/* Text */

.hero-content h1 {
    font-size: 70px;
    line-height: 1;
    margin: 20px 0;
    font-family: writing;
    max-width: 70%;
}

.hero-content h1 span {
    color: #ffd93d;
    font-size: 110px;
    font-style: oblique;
    font-family: handwritten;
}

.hero-content p {
    max-width: 450px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.badge {
    display: inline-block;
    background: rgba(43, 42, 42, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* Buttons */

.hero-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
}

.btn-white {
    background: white;
    border: 1px solid white;
    color: #333;
    border: none;
    padding: 12px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-size: medium;
    font-weight: bold;
}

.btn-white a {
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-size: medium;
    font-weight: bold;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline:hover {
    background: rgb(224, 223, 223);
    color: #333;
}


/* ================= MOBILE ================= */


/* ================= DESTINATIONS ================= */

.destinations {
    padding: 80px 60px;
    background: linear-gradient( -45deg, #6b73ff, #8e54e9, #f09191, #6b73ff);
    background-size: 300% 300%;
    animation: gradientMove 15s ease-in-out infinite;
    color: #fff;
}

.destinations-header {
    text-align: center;
    margin-bottom: 50px;
}

.destinations-header h2 {
    font-size: 42px;
}

.destinations-header h2 span {
    color: #ffd93d;
}

.destinations-header p {
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.6;
}


/* Grid */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Show only first 4 initially */

.destinations-grid .destination-card:nth-child(n+7) {
    display: none;
}


/* Show all when active */

.destinations-grid.show-all .destination-card {
    display: block;
}


/* Card */

.destination-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}


/* Image */

.destination-image {
    position: relative;
    height: 300px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Overlay */

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.destination-overlay .btn-dest {
    position: absolute;
    top: 5%;
    right: 3%;
    height: 38px;
    font-size: 15px;
    border: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: #ff6b6b;
    color: white;
    width: 100px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
    opacity: 90%;
}

.destination-overlay .btn-dest:hover {
    scale: 102%;
    background-color: #f77c7c;
}

.destination-overlay h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.destination-overlay p {
    font-size: 15px;
    line-height: 1.4;
}


/* Show More Button */

.show-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.show-more-wrapper button {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: #ffd93d;
    color: #333;
    transition: transform 0.3s ease;
}

.show-more-wrapper button:hover {
    transform: translateY(-3px);
}


/* Gradient Animation */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* ================= MOBILE ================= */


/* ===== Hover Effects ===== */

.destination-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}


/* Image zoom */

.destination-image img {
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(102%);
}


/* Text animation */

.short-text {
    font-size: 14px;
    opacity: 0.9;
}

.hover-text {
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.4;
    color: rgb(207, 207, 207);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}


/* Show extra text on hover */

.destination-card:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
}


/* ================= SERVICES ================= */

.services {
    padding: 80px 60px;
    background: #2b143d;
    color: #fff;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 42px;
}

.services-header h2 span {
    color: #ffd93d;
}

.services-header p {
    opacity: 0.85;
}


/* Wrapper */

.services-wrapper {
    position: relative;
    max-width: 2200px;
    /* ✅ controls visible width */
    margin: 0 auto;
    /* ✅ center wrapper */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Carousel */

.services-carousel {
    display: flex;
    gap: 30px;
    will-change: transform;
}


/* Card */

.service-card {
    width: 440px;
    height: 650px;
    background: #332644;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}


/* Image */

.service-card img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    background-attachment: center;
    opacity: 85%;
    position: relative;
}

.service-card .btn-serv {
    position: relative;
    top: -59%;
    right: -35%;
    height: 38px;
    font-size: 15px;
    border: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: #ff6b6b;
    color: white;
    width: 100px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
    transition: 0.2s;
    opacity: 90%;
}

.btn-serv:hover {
      scale: 102%;
    background-color: #f77c7c;
}
/* Text */

.service-card h3 {
    margin: -10px 0 px;
    font-size: 22px;
    color: #ebc013;
}

.service-card h4 {
    text-align: left;
    margin-left: 45px;
    font-size: 15px;
    margin-top: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 15px 15px;
    opacity: 0.85;
}

.service-card ul li {
    font-size: 15px;
    text-align: left;
    margin-left: 60px;
    line-height: 20px;
    color: #ffffffc9;
}


/* Navigation */

.service-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 45px;
    color: #4b4a4a;
    cursor: pointer;
    z-index: 10;
}

.service-nav.left {
    left: -50px;
    /* ✅ sits just outside left edge */
}

.service-nav.right {
    right: -50px;
    /* ✅ sits just outside right edge */
}

.service-nav:hover {
    color: #ffd93d;
}


/* ================= VEHICLE SERVICES ================= */

.vehicle-services {
    padding: 50px 40px;
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("photos/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
}

.vehicle-header {
    text-align: center;
    margin-bottom: 80px;
}

.vehicle-header h2 {
    font-size: 42px;
}

.vehicle-header h2 span {
    color: #ffd93d;
}

.vehicle-header p {
    max-width: 600px;
    margin: 10px auto 0;
    color: #f8f7f7e5;
}


/* ================= VEHICLE SERVICES ROW LAYOUT ================= */


/* Main Row */
.vehicle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Zig-zag reverse */
.vehicle-row.reverse {
    flex-direction: row-reverse;
}

/* Image Section */
.vehicle-image {
    flex: 1;
    text-align: center;
}

.vehicle-row .vehicle-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.vehicle-image img {
    border: 2px solid #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.vehicle-image img:hover {
    box-shadow: 0 0 20px #ffd93d,
                0 0 40px #ff6b6b;
    transform: scale(1.01);
}


/* Content Section */
.vehicle-content {
    flex: 1;
    min-width: 300px;
}

/* Heading */
.vehicle-content h3 {
    font-size: 28px;
    color: #d4ad12;
    margin-bottom: 10px;
}



/* Description */
.vehicle-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* List */
.car-details {
    padding-left: 20px;
    line-height: 1.8;
}

.vehicle-row.reverse .car-details {
    padding-right: 20px;
    padding-left: 0;
    list-style-position: inside;
}


/* Button */
.btn-car {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    background: #ff6b6b;
    color: white;
    border-radius: 30px;
    cursor: pointer;
}

.btn-car:hover {
      scale: 102%;
    background-color: #f77c7c;
}

/* REMOVE THIS OLD CLASS EFFECT */
.btn-car-r {
    all: unset;
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    background: #ff6b6b;
    color: white;
    border-radius: 30px;
    cursor: pointer;
   
}

/* Keep content aligned properly */
.vehicle-row.reverse .vehicle-content {
    text-align: right;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .vehicle-row {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-row.reverse {
        flex-direction: column;
    }

    .vehicle-image img {
        max-width: 100%;
    }

    .vehicle-content {
        width: 95%;
    }
}


/* ============About Section =================*/

.about-travel {
    padding: 90px 30px;
    background: #2b143d;
    font-family: Arial, sans-serif;
}


/* INTRO */

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-intro h2 span {
    color: #ffd93d;
}

.sub-heading {
    color: #ffffff;
    font-size: 16px;
}


/* MAIN */

.about-main {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 2;
    font-size: 16px;
    color: #d8d6d6;
    line-height: 1.8;
}


/* IMAGE COLLAGE */

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 130px);
    gap: 12px;
    justify-content: end;
}

.about-images img {
    width: 130px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    background-color: white;
}


/* SERVICES */

.ab-service {
    margin-top: 80px;
    background: #2b143d;
    background-size: 300% 300%;
    animation: gradientMove 15s ease-in-out infinite;
    border: 2px;
    border-radius: 10px 10px 10px 10px;
}

.ab-service h3 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    color: #2b143d;
}

.service-box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 10px;
}


/* WHY US */

.why-us {
    margin-top: 80px;
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
    background: #2b143d;
    background-size: 300% 300%;
    animation: gradientMove 15s ease-in-out infinite;
}

.why-us h3 {
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    margin-top: -30px;
}

.why-us p {
    line-height: 1.7;
    color: #d1d1d1;
}


/* REVIEWS */

.reviews-section {
    margin-top: 90px;
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin-inline: auto;
}

.feedback-form {
    flex: 1;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.feedback-form button {
    padding: 12px 25px;
    background: #007bff;
    border: none;
    color: white;
    cursor: pointer;
}


/* FEEDBACK GRID */

.feedback-display {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    color: #2b143d;
}

.feedback-item {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    animation: fadeSlide 0.5s ease;
}

.feedback-item h5 {
    margin-bottom: 5px;
}


/* ANIMATION */

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MOBILE */

@media (max-width: 768px) {
    .about-main,
    .reviews-section {
        flex-direction: column;
    }
    .about-images {
        justify-content: center;
    }
    .feedback-display {
        grid-template-columns: 1fr;
    }
}


/* STAR RATING */

.star-rating {
    margin: 10px 0 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #f5b301;
}


/* STAR DISPLAY */

.stars {
    color: #f5b301;
    margin-bottom: 6px;
}


/* ANIMATION */

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*======Footer========= */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 30px 25px;
    font-size: 14px;
}

.footer-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-col p,
.footer-col a {
    color: #b5bac0;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    font-size: 20px;
}

.footer-social a {
    color: #cbd5e1;
    font-size: 25px;
    margin-right: 12px;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #22d3ee;
    transform: scale(1.1);
}


/* BRAND */

.footer-logo h3 {
    margin-bottom: 15px;
}

.footer-logo h3 a {
    text-decoration: none;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
}

span {
    color: #f3d424f1;
}

.footer-logo p {
    color: #bbc4c5;
    line-height: 19px;
    font-family: "Brush Script MT", "Lucida Handwriting", cursive;
}

.footer-24 h3 {
    margin-top: 25px;
    font-size: 40px;
    color: whitesmoke;
    font-family: "Brush Script MT", "Lucida Handwriting", cursive;
}

.footer-24 h3 span {
    margin-left: 5px;
    font-size: 22px;
    color: #f3d424f1;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.footer-images img {
    width: auto;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
    }

/* FOOTER BOTTOM */

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #1e293b;
    text-align: center;
    padding-top: 15px;
    color: #94a3b8;
}

.highlight {
    transform: scale(1.06);
    border: 2px solid rgba(230, 194, 35, 0.897);
    box-shadow: 0 0 20px rgba(243, 205, 34, 0.897);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lower-footer {
    background: #020617;
    border-top: 1px solid #1e293b;
    padding: 14px 30px;
    font-size: 13px;
}

.lower-footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
}

.lower-footer a {
    color: #94a3b8;
    text-decoration: none;
}

.lower-footer a:hover {
    color: #ffffff;
}

.lower-left span {
    margin: 0 8px;
}


/* =========HR line========= */

hr {
    border: none;
    border-top: 1px solid rgba(204, 203, 204, 0.801);
    width: 60%;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}