 /* ================= ROOT VARIABLES ================= */
:root {
  --primary-color: #0f4c75;
  --accent-color: #2b5af5;
  --text-color: #222;
  --muted-text: #666;
  --bg-color: #ffffff;
  --card-bg: #f8f9fa;
  --border-color: #e0e0e0;

  --transition: all 0.3s ease;
  --radius: 8px;
}

/* DARK MODE */
body.dark {
  --bg-color: #0e1217;
  --card-bg: #161b22;
  --text-color: #f1f1f1;
  --muted-text: #aaa;
  --border-color: #2a2f36;
}

/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  padding: 0 1rem;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
} 
.nav-links a:hover{
  color: var(--accent-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-color);
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


.btn-outline {
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-color);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 90vh;
  background: url("images/background.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: #fff;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #eaeaea;
}

/* ================= BOOKING FORM FIX ================= */


/* ================= MOBILE NAV ================= */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* Primary Button (Search / Sign Up) */


/* Outline Button (Login) */
.btn-outline {
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: #ffffff;
} 

/* Guests counter */
.guest-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.counter {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.counter button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-weight: bold;
}

.counter input {
  width: 30px;
  text-align: center;
  border: none;
  pointer-events: none;
} 



/* Responsive */
@media (max-width: 992px) {
  .booking-form {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 0.7rem;
  }

  .form-item.guests .guest-selector {
    justify-content: space-between;
  }

  .booking-form .search button {
    width: 100%;
  }
}


.navbar-links{
  margin-top:4px;
} 

@media (max-width: 992px) {
  .nav-actions {
    flex-direction: row;       /* Keep buttons in a horizontal line */
    justify-content: flex-end; /* Align to the right */
    gap: 0.5rem;              /* small gap between buttons */
    margin-top: 0;            /* remove extra margin */
    width: 100%;
    margin-right: 2rem;             /* full container width */
  }

  .nav-actions .btn-primary,
  .nav-actions .btn-outline {
    width: auto;              /* buttons adjust to content */
    text-align: center;
    padding: 0.4rem 0.8rem;  /* slightly smaller for mobile */
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .nav-actions .btn-primary,
  .nav-actions .btn-outline {
    padding: 0.3rem 0.7rem;  /* slightly smaller padding */
    font-size: 0.85rem;       /* slightly smaller font */
  }
}  



/* ================= HERO BUTTONS ================= */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(247, 202, 0, 0.411);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%; 
  }

  .hero-buttons a {
    text-align: center;
    width: 100%;
  }
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: #1f4fe0; /* slightly darker accent */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ================= ABOUT HERO ================= */
.about-hero {
  position: relative;
  height: 50vh;
  background: url("about-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.about-hero-content {
  position: relative;
  color: #fff;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted-text);
  margin-bottom: 1rem;
}

.about-highlights div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.about-highlights i {
  color: var(--accent-color);
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= MISSION ================= */
.mission-section {
  background: var(--card-bg);
  padding: 4rem 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mission-card {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

/* ================= WHY US ================= */
.why-us {
  padding: 4rem 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.why-card i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-grid,
  .mission-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2rem;
  }
}


/* ================= ABOUT HEADER ================= */
.about-header {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-color);
}

.about-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.about-header p {
  max-width: 700px;
  color: var(--muted-text);
  font-size: 1.05rem;
}


/* ================= DESTINATIONS SECTION ================= */
.destinations {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--card-bg);
}

.section-subtitle {
  color: var(--muted-text);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.destination-card {
  background-color: var(--bg-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.destination-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  transition: background 0.3s;
}

.destination-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
}

.destination-info {
  padding: 1rem 1.5rem;
  text-align: left;
}

.destination-info p {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 1rem;
}

.destination-info .btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.destination-info .btn-primary:hover {
  background: #1f4fe0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .destination-info {
    text-align: center;
  }
  .destination-image {
    height: 180px;
  }
}


/* ================= FEATURED DEALS ================= */
.featured-deals {
  margin-bottom: 3rem;
}

.deals-carousel {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.deal-card {
  min-width: 260px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.deal-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.deal-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

/* ================= HOTELS ================= */
.hotels {
  padding: 4rem 0;
  text-align: center;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hotel-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: var(--transition);
}

.hotel-card:hover {
  transform: translateY(-6px);
}

.hotel-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hotel-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-color);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.hotel-content {
  padding: 1.3rem;
  text-align: left;
}

.hotel-content h3 {
  color: var(--primary-color);
  margin-bottom: .5rem;
}

.hotel-content p {
  color: var(--muted-text);
  font-size: .95rem;
  margin-bottom: 1rem;
}





.hotel-amenities {
  display: flex;
  gap: 0.6rem;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.hotel-amenities i {
  color: var(--accent-color);
  background: rgba(0,0,0,0.05);
  padding: 0.35rem;
  border-radius: 4px;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.hotel-rating i {
  color: #f5a623;
}

.hotel-actions {
  display: flex;
  gap: 0.6rem;
}

.hotel-actions a {
  flex: 1;
  text-align: center;
}

.btn-outlines {
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin-left: 3px;
}

.btn-outlines:hover {
  background: var(--accent-color);
  color: #ffffff;
}  


/*rooms*/

/* ================= ROOMS SLIDER ================= */
.rooms {
  padding: 4rem 0;
}

.section-header {
  position: relative;
  margin-bottom: 2rem;
}

.slider-controls {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 0.6rem;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--accent-color);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: #1f4fe0;
}

.room-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.room-slider::-webkit-scrollbar {
  display: none;
}

.room-card {
  min-width: 300px;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
}

.room-image {
  position: relative;
  height: 200px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-color);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 20px;
}

.room-content {
  padding: 1.2rem;
}

.room-location {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 0.4rem;
}

.room-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f5a623;
  margin-bottom: 0.8rem;
}

.room-actions {
  display: flex;
  gap: 0.5rem;
}

.room-actions a {
  flex: 1;
  text-align: center;
}


/* ================= ROOM DETAILS PAGE ================= */
.room-hero {
  position: relative;
  height: 65vh;
}

.room-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.room-hero-content {
  position: absolute;
  bottom: 2rem;
  color: #fff;
}

.room-hero-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

/* MAIN LAYOUT */
.room-details {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

/* GALLERY */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.room-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* INFO */
.room-info h2, 
.room-info h3 {
  margin-bottom: 0.6rem;
}

.room-info p {
  color: var(--muted-text);
  margin-bottom: 1.2rem;
}

.room-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.room-features li {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

/* BOOKING CARD */
.room-booking {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--card-bg);
  padding: 1.6rem;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.booking-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.booking-info {
  list-style: none;
  margin: 1rem 0;
}

.booking-info li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.full {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 992px) { 
    .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .room-details {
    grid-template-columns: 1fr;
  }

  .room-booking {
    position: static;
  }

  .room-gallery {
    grid-template-columns: 1fr;
  }
}


.room-hero-rating i{
  color:#f5a623 ;
}

.room-features i{
  color: #1f4fe0;
}


.btn-outlinesss{
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
    margin-top: 0.8rem; 
}

.btn-outlinesss:hover {
  background: var(--accent-color);
  color: #ffffff;
}  

 

.btns-outlines {
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin-left: 3px;
  margin-top: 6rem;
}

.btns-outlines:hover {
  background: var(--accent-color);
  color: #ffffff;
}   

.btns-outlinerrr {
  margin-top: 5px;     /* space from top */
  text-align: left;       /* align to left */
}

.btns-outlines {
  display: inline-block;  /* prevents full-width issues */
  margin-left: 0;         /* remove unwanted left margin */
}


.btn-primaryed {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primaryed:hover {
  background: #1f4fe0; /* slightly darker accent */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn-outlined {
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outlined:hover {
  background: var(--accent-color);
  color: #ffffff;
}  




/* ================= UNIFIED BUTTON SYSTEM ================= */


.btn-primaryed {
  height: 40px;
  padding: 0 18px;
  border-radius: 900px; /* pill shape */
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  background: var(--accent-color);
  color: #fff;
  transition: all 0.25s ease;
}

.btn-primaryed:hover {
  background: #1f4fe0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* OUTLINED BUTTONS */
.btn-outlined {
  height: 40px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  background: transparent;
  color: var(--accent-color);
  border: 1.5px solid var(--accent-color);
  transition: all 0.25s ease;
}

.btn-outlined:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


.room-actions {
  display: flex;
  gap: 0.6rem;
}

.room-actions a {
  flex: 1;
  min-width: 120px;
}


.btnsee-outlines {
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin-left: 3px;
  margin-top: 4rem;
}

.btnsee-outlines:hover {
  background: var(--accent-color);
  color: #ffffff;
}   

.btnsee-outlinerrr {
  margin-top: 10px;     /* space from top */
  text-align: left;       /* align to left */
} 



/* ================= GLOBAL RESPONSIVE SAFETY ================= */
img {
  max-width: 100%;
  height: auto;
}

section {
  overflow-x: hidden;
}

/* ================= LARGE SCREENS (1400px+) ================= */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ================= TABLETS & SMALL LAPTOPS ================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .room-card {
    min-width: 280px;
  }
}

/* ================= TABLETS ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-actions {
    margin-right: 1rem;
  }

  /* HERO */
  .hero {
    min-height: 75vh;
    padding: 3rem 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  /* ABOUT */
  .about-grid {
    gap: 2rem;
  }

  /* DESTINATIONS */
  .destination-grid {
    gap: 1.5rem;
  }

  /* HOTELS */
  .hotel-grid {
    gap: 1.5rem;
  }

  /* ROOMS SLIDER */
  .room-slider {
    gap: 1rem;
  }
}

/* ================= MOBILE PHONES ================= */
@media (max-width: 576px) {

  /* NAVBAR */
  .logo {
    font-size: 1.2rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  /* HERO */
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-outlines {
    width: 100%;
    text-align: center;
  }

  /* DESTINATION CARDS */
  .destination-image {
    height: 160px;
  }

  .destination-info {
    text-align: center;
  }

  /* HOTEL CARDS */
  .hotel-card {
    text-align: center;
  }

  .hotel-content {
    text-align: center;
  }

  .hotel-actions {
    flex-direction: column;
  }

  /* ROOM CARDS */
  .room-card {
    width: 100%;
  }

  .room-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* ABOUT HEADER */
  .about-header h1 {
    font-size: 1.8rem;
  }
}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}


/* ================= SERVICES ================= */
.services-section {
  padding: 4rem 0;
  background: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

/* IMAGE */
.services-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* CONTENT */
.services-content .section-title {
  text-align: left;
}

.services-content .section-subtitle {
  text-align: left;
  margin-bottom: 2rem;
}

/* SERVICE CARDS */
.services-cards {
  display: grid;
  gap: 1.4rem;
}

.service-card {
  display: flex;
  gap: 1rem;
  background: var(--card-bg);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ICON CIRCLE */
.service-icon {
  min-width: 48px;
  height: 48px;
  background: rgba(43, 90, 245, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
}

/* TEXT */
.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted-text);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-content .section-title,
  .services-content .section-subtitle {
    text-align: center;
  }

  .service-card {
    align-items: flex-start;
  }
}


/* ================= PACKAGE SLIDER ================= */
/* ================= PACKAGES ================= */
.packages-section {
  padding: 4rem 0;
  background: var(--section-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.package-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--accent-color);
}

/* IMAGE */
.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.package-content {
  padding: 1.4rem;
}

.package-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-bottom: 1rem;
}

/* FEATURES */
.package-features {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.package-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* FOOTER */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
}

/* FEATURED */
.package-card.featured {
  transform: scale(1.05);
  border-color: var(--accent-color);
}

.package-card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }
}


/* ================= PACKAGE DETAILS ================= */
.package-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

.package-info .location {
  color: var(--muted-text);
  margin-bottom: 1rem;
}

.package-info .description {
  margin-bottom: 1.5rem;
}

.package-info .package-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

@media (max-width: 992px) {
  .package-details {
    grid-template-columns: 1fr;
  }
}


/* ================= PRICING TABLE ================= */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--accent-color);
  color: #fff;
}

tr.highlight {
  background: rgba(43,90,245,0.1);
  font-weight: 600;
}


/* ================= BOOKING CTA ================= */
.booking-cta {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    #1f4fe0
  );
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.booking-cta p {
  max-width: 600px;
  margin: 1rem auto 2rem;
  color: #eaeaea;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-cta .btn-outline {
  border-color: #fff;
  color: #fff;
}

.booking-cta .btn-outline:hover {
  background: #fff;
  color: var(--accent-color);
}


.btn-primaryeed {
  border: 1px solid var(--accent-color); /* match new accent */
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin-left: 3px;
  margin-top: 4rem;
}

.btn-primaryeed:hover {
  background: var(--accent-color);
  color: #ffffff;
}   

.book-thisbtn {
  margin-top: 2rem;     /* space from top */
  text-align: left;       /* align to left */
}  


/* ================= TESTIMONIALS ================= */
.testimonials-section {
  padding: 4rem 0;
  background: var(--bg-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* HEADER */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-header span {
  font-size: 0.85rem;
  color: var(--muted-text);
}

/* RATING */
.testimonial-rating {
  color: #f5a623;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.2rem;
}

/* TEXT */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-text);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= CONTACT HEADER ================= */
.contact-header {
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.contact-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.contact-header p {
  color: var(--muted-text);
  max-width: 650px;
  margin: auto;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* INFO */
.contact-info h2 {
  margin-bottom: 0.6rem;
}

.contact-info p {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-list li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.95rem;
}

.contact-list i {
  font-size: 1.2rem;
  color: var(--accent-color);
  background: rgba(43, 90, 245, 0.12);
  padding: 0.45rem;
  border-radius: 50%;
}

/* SOCIALS */
.contact-socials {
  display: flex;
  gap: 0.8rem;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: grid;
  place-items: center;
  color: var(--accent-color);
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

/* FORM */
.contact-form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-form h2 {
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 2rem;
  }
}


/* ================= FOOTER ================= */
.footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

/* BRAND */
.footer-brand p {
  color: var(--muted-text);
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  display: grid;
  place-items: center;
  color: var(--accent-color);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--muted-text);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

/* CONTACT */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 1rem 0;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--muted-text);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ================= FOOTER LINK FIX ================= */
footer a {
  text-decoration: none;
}

footer a::after {
  display: none !important;
  content: none !important;
}

footer a:hover {
  text-decoration: none;
}












