/* =====================
   GLOBAL
===================== */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

footer {
    text-align: center;
    padding: 10px;
    background: #414040;
}

/* =====================
   TOP BAR
===================== */
.top-bar {
    background: #f1eff6;
    color: white;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 8px;
    font-size: 14px;
}

/* =====================
   HEADER
===================== */
.site-header {
    background: #024fa8;
    color: white;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LOGO */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    width: 90px;
    margin-right: 15px;
}

.logo-area h1 {
    margin: 0;
    font-size: 22px;
}

.logo-area p {
    margin: 0;
    font-size: 13px;
}

/* NAV */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* =====================
   SLIDESHOW
===================== */
.slideshow-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* HERO TEXT */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    padding: 20px;
}

.hero-overlay h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-overlay p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.book-btn {
    padding: 12px 30px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.book-btn:hover {
    background: #ffd633;
}

/* =====================
   SECTIONS
===================== */
.section {
    padding: 50px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

/* =====================
   BOOKING
===================== */
.booking-section {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.booking-form {
    max-width: 700px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-form input,
.booking-form select {
    padding: 12px;
    font-size: 14px;
}

.booking-form button {
    grid-column: span 2;
    padding: 14px;
    background: #004aad;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.booking-form button:hover {
    background: #003080;
}

/* Hidden initially */
#booking {
    display: none;
}

/* =====================
   MOBILE ACTION BAR
===================== */
.mobile-actions {
    display: none;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #1178c7;
        margin-top: 10px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .slideshow-container {
        height: 60vh;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .booking-form {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .booking-form button {
        grid-column: span 1;
    }

    .mobile-actions {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #ff4d4d;
        z-index: 999;
    }

    .mobile-actions a {
        flex: 1;
        color: white;
        text-align: center;
        padding: 12px;
        font-size: 14px;
        text-decoration: none;
    }
}

/* =====================
   vehicles display
===================== */
.vehicle-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.back-btn {
    background: transparent;
    border: none;
    color: #007bff;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 600;
}

.back-btn:hover {
    text-decoration: underline;
}
/* =====================
   IMAGE GALLERY MODAL
===================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal span {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

#modalImages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 60px 20px;
}

/* 👇 THIS FIXES IMAGE SIZE */
#modalImages img {
    width: 250px;        /* adjust size here */
    height: 160px;
    object-fit: cover;  /* keeps image proportional */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

#modalImages img:hover {
    transform: scale(1.05);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    #modalImages img {
        width: 90%;
        height: auto;
    }
}

.map-image {
    width: 250px;        /* 👈 small size */
    height: auto;
    cursor: pointer;
}

.about-container {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.about-image img {
    width: 260px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-content {
    flex: 1;
}

.about-content h3 {
    margin-bottom: 5px;
}

.designation {
    color: #777;
    margin-bottom: 15px;
}

.about-content button {
    margin-top: 20px;
    padding: 10px 18px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 200px;
    }
}

.footer {
    position: relative;
}

.designed-by {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 12px;
    color: #aaa;
    opacity: 0.8;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .designed-by {
        position: static;
        display: block;
        text-align: center;
        margin-top: 8px;
        font-size: 11px;
    }
}

.mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: #646060;
    padding: 10px 0;
    z-index: 9999;
}

.mobile-actions a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
}

.mobile-actions i {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.mobile-actions .whatsapp {
    color: #25D366;
}

.mobile-actions .call {
    color: #1d16e8;
}

.mobile-actions .quote {
    color: #FFC107;
}

/* Hide on desktop */
@media (min-width: 768px) {
    .mobile-actions {
        display: none;
    }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social-links img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.15);
}
