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

/* ================= BODY ================= */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* ================= HEADER ================= */
header {
    background: #1c1c1c;
    padding: 15px 0;
}

.header-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ffd700;
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
    cursor: pointer;
}

nav a:hover {
    color: #ffd700;
}

/* ================= HERO ================= */
.hero {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        url("../images/bgimg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #fff;
    width: 100%;
}

.hero-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* ================= BOOKING FORM ================= */
.booking-form {
    flex: 1;
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 8px;
}

.booking-form h2 {
    margin-bottom: 15px;
    text-align: center;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ffd700;
}

.booking-form button {
    width: 100%;
    background: #1c1c1c;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

.booking-form button:hover {
    background: #333;
}

/* ================= COMMON SECTION ================= */
.section {
    padding: 50px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* ================= SERVICES ================= */
.services {
    width: 90%;
    margin: auto;
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    margin-top: 10px;
    color: #222;
}

/* ================= ABOUT ================= */
.about {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about img {
    flex: 1;
    width: 100%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.7;
}

/* ================= CITIES ================= */
.cities {
    background: #fff;
}

.city-list {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.city {
    background: #f5f5f5;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
}

/* ================= REVIEWS ================= */
.reviews {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.review span {
    color: #ffd700;
}

/* ================= CONTACT ================= */
.contact {
    background: #1c1c1c;
    color: #fff;
}

.contact-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-box {
    flex: 1;
}

.contact-box h3 {
    margin-bottom: 10px;
}

/* ================= FOOTER ================= */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-wrap {
        flex-direction: column;
    }

    nav a {
        margin-left: 10px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 30px;
    }
}
.hero {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)),
        url("../images/bgimg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #fff;
}



.nav-link {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 3px;
}
.logo-img{
    height: 50px;
    
}
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #f8c146;
    /* golden hover */
}
/* Active menu */
.navbar-dark .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #f8c146 !important;
    border-bottom: 3px solid #f8c146;
}

/* Hover effect */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #f8c146;
    transition: 0.3s ease;
}

  .whatsapp-box {
      background: #fff;
      padding: 20px;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
        background: #1ebe5d;
  }