/* Reset & body */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.top-bar {
    background-color: #000000;
    color: #fff;
    font-size: 16px;        /* larger, readable text */
    padding: 15px 0;        /* more vertical padding */
}

.top-bar-container {
    display: flex;
    justify-content: center;
    gap: 50px;              /* horizontal space between items */
    flex-wrap: wrap;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 10px;              /* space between icon and text */
}

.top-info .icon {
    font-size: 18px;        /* bigger icon */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;   /* stack items vertically */
        gap: 15px;               /* space between stacked items */
        padding: 5px 0;
    }

    .top-bar {
        font-size: 15px;         /* slightly smaller text on mobile */
        padding: 10px 0;
    }
}


/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo */
.logo img {
  height: 100px;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 600;
  padding: 5px 0;
}

nav ul li:hover > ul {
  display: block;
}

/* Dropdown */
nav ul li ul {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
}

nav ul li ul li {
  padding: 5px 15px;
}

nav ul li ul li a {
  color: #1e1e1e;
  font-weight: normal;
}

/* Contact & button */
.contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact a {
  text-decoration: none;
  color: #1e3a66;
  font-weight: bold;
}

.contact i {
  color: #25D366; /* WhatsApp green */
  margin-right: 5px;
}

.plan-btn {
  border: 1px solid #1e90ff;
  padding: 8px 15px;
  border-radius: 5px;
  background: white;
  color: #1e90ff;
  font-weight: bold;
  cursor: pointer;
}

.plan-btn:hover {
  background: #1e90ff;
  color: white;
}

/* Search icon */
.search-icon {
  margin-left: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 900px){
  nav ul {
    display: none;
  }
  /* Add mobile menu here later */
}


/* Hero slider section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Hero content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* Search box */
.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.search-box input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 5px 0 0 5px;
  border: none;
  font-size: 16px;
}

.search-box button {
  padding: 10px 15px;
  border: none;
  background-color: #1e90ff;
  color: white;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.search-box button i {
  font-size: 16px;
}

/* Optional: overlay for darker effect */
.hero-slider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Responsive */
@media(max-width: 768px){
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .search-box input {
    font-size: 14px;
  }

  .search-box button i {
    font-size: 14px;
  }
}

/* Center Container */
.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 100px;
}

/* Title */
.section-title small {
    color: #3aa0e6;
    font-weight: 600;
}

.section-title h2 {
    margin: 8px 0 30px;
    font-size: 32px;
}

/* Layout */
.container {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 25px;
}

/* Card */
.card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    border-top: 4px solid #3aa0e6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Table Rows */
.row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1.2fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.row.header {
    font-weight: 600;
    color: #666;
    font-size: 14px;
    padding-top: 0;
}

.row:last-child {
    border-bottom: none;
}

.trip-name {
    font-weight: 600;
}

.message {
    color: #666;
}

.cost {
    font-weight: 600;
}

/* Button */
.btn {
    border: 1px solid #3aa0e6;
    color: #3aa0e6;
    padding: 10px 16px;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #3aa0e6;
    color: #fff;
}

/* Explore */
.explore {
    margin-top: 25px;
}

.explore button {
    background: #3aa0e6;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
}

/* Sidebar */
.sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid #3aa0e6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.crown {
    font-size: 26px;
    margin-bottom: 10px;
}

.badge {
    font-size: 48px;
    font-weight: bold;
    color: #2d2d6b;
}

.badge small {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.recommend {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.tripadvisor {
    margin-top: 8px;
    font-weight: 600;
}

.rating {
    margin-top: 8px;
    color: green;
    font-size: 14px;
}

.footer-text {
    font-size: 12px;
    margin-top: 8px;
    color: #777;
}

/* ========================= */
/* 📱 Tablet Responsive */
/* ========================= */
@media (max-width: 992px) {

    .container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .row.header {
        display: none;
    }

    .cost {
        text-align: left;
    }
}

/* ========================= */
/* 📱 Mobile Responsive */
/* ========================= */
@media (max-width: 600px) {

    .wrapper {
        padding: 25px 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .btn {
        width: 100%;
    }

    .explore button {
        width: 100%;
    }
}


.trippad {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 50px;
}
/* Navbar */
.navbar {
    display:flex;
    justify-content:space-between;
    padding:20px 40px;
    background:#fff;
    box-shadow:0 3px 8px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:100;
}
.nav-links {
    display:flex;
    gap:20px;
}
.nav-links a {
    text-decoration:none;
    color:#333;
    font-weight:500;
}
.menu-toggle {
    display:none;
    font-size:24px;
}

/* Hero */
.hero {
    background-image:url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size:cover;
    background-position:center;
    height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}
.hero-text h1 { font-size:48px; margin:0; }
.hero-text p { font-size:20px; }

/* Sections */
.section {
    padding:60px 40px;
}
.bg { background:white; }

/* Grids */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }

/* Cards */
.card {
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    text-align:center;
    padding:15px;
}
.card img {
    width:100%;
    height:180px;
    object-fit:cover;
    border-bottom: 4px solid #eee;
}
.card h3 {
    margin:15px 0 8px;
}
.card p { font-size:14px; color:#555; }

#book-trip {
    background-color: #3aa0e6; /* Blue background */
    color: white; /* Make text readable */
    padding: 60px 40px;
}

#book-trip input {
    padding:10px;
    flex:1 1 200px;
}

#book-trip button {
    padding:12px 24px;
    background:#2a80c4;
    color:white;
    border:none;
    cursor:pointer;
}
/* Testimonials */
.testimonial p { font-style:italic; }

/* Footer */
.footer {
    text-align:center;
    padding:30px;
    background:#222;
    color:white;
}

/* Responsive */
@media(max-width:768px){
    .grid-3, .grid-4, .grid-2 { display:block; }
    .nav-links { display:none; flex-direction:column; }
    .menu-toggle { display:block; cursor:pointer; }
    .nav-links.active { display:flex; }
}
/* RESET ISSUE */
* {
  box-sizing: border-box;
}

/* FOOTER */
.footer {
  background: #0b1c2c;
  color: #fff;
  margin-top: 50px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

/* ROW */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* COLUMN */
.footer-col {
  width: 25%;
  padding: 10px;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-left: 3px solid #ff7a00;
  padding-left: 10px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff7a00;
  padding-left: 5px;
}

/* SOCIAL */
.social a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #ff7a00;
  color: #fff;
  text-align: center;
  line-height: 32px;
  margin-right: 5px;
  border-radius: 50%;
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  background: #07131f;
  padding: 15px;
  font-size: 13px;
  color: #aaa;
}

/* ✅ RESPONSIVE FIXES */

/* Tablet */
@media (max-width: 992px) {
  .footer-col {
    width: 50%;
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-col {
    width: 100%;
    text-align: center;
  }

  .footer-col h3 {
    border: none;
    padding-left: 0;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

  .social {
    margin-top: 10px;
  }
}