body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
}

h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* REMOVE default link colors globally */
a {
  text-decoration: none;
  color: inherit;
}

/* NAV LINKS */
.nav-link {
  color: #222;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

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

a:visited {
  color: inherit;
}

/* CTA BUTTON */
.nav-cta {
  padding: 8px 18px;
  border: 1px solid #c9a96e;
  border-radius: 4px;
  color: #c9a96e;
}

.nav-cta:hover {
  background: #c9a96e;
  color: #fff;
}

.card {
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hero-overlay {
  background: rgba(0,0,0,0.45);
  padding: 120px 20px;
}


.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a96e;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 2px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #b8955c;
}


.container {
  max-width: 1200px;
  margin: auto;
}

.bg-light {
  background: #f8f8f8;
}

.bg-dark-blue {
  background: #0f1e3a;
  color: #fff;
}

.divider {
  width: 60px;
  height: 2px;
  background: #c9a96e;
  margin: 15px auto 30px;
}

/* GRID FIX */
.destination-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.destination-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 6px;
}

/* IMAGE */
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* OVERLAY */
.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 50, 0.4);
  opacity: 0;
  transition: 0.4s;
}

/* TEXT */
.destination-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

/* HOVER */
.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-card:hover .destination-content {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 900px){
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px){
  .destination-grid {
    grid-template-columns: 1fr;
  }
}

section {
  padding: 90px 20px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media(max-width: 900px){
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px){
  .destination-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
}

/* GOLD LINE ON TOP */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #c9a96e;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* TITLE */
.card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.card:nth-child(odd) {
  background: #ffffff;
}

.card:nth-child(even) {
  background: #fcfbf8;
}

/* GRID */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.exp-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
}

/* GOLD ACCENT */
.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #c9a96e;
}

/* HOVER */
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* TEXT */
.exp-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.exp-card p {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.place-card {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}


.place-card h4 {
  padding: 12px 15px 5px;
  font-size: 16px;
}

.place-desc {
  padding: 0 15px 15px;
  font-size: 13px;
}


/* HOVER */
.place-card:hover {
  transform: translateY(-6px);
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  z-index: 10;
}

.slider-btn.left {
  left: -10px;
}

.slider-btn.right {
  right: -10px;
}


.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.place-card {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.place-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.place-card h4 {
  padding: 15px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c9a96e;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }

.place-desc {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.place-desc {
  padding: 0 15px 15px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 18px 10px;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 18px;
  color: #c9a96e;
}

.accordion-header.active::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 10px;
}

.accordion-content p {
  padding: 10px 0 20px;
  color: #666;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 400px;
  border-radius: 8px;
}

.modal input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.tabs {
  text-align:center;
}

.tab-btn {
  padding:12px 20px;
  border:none;
  background:#eee;
  cursor:pointer;
  margin:5px;
}

.tab-btn.active {
  background:#c9a96e;
  color:#fff;
}

.tab-content {
  display:none;
  margin-top:20px;
}

.tab-content.active {
  display:block;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

a div:hover img {
  transform: scale(1.03);
  transition: 0.3s ease;
}

a div:hover h2 {
  color:#c9a96e;
}

a {
  cursor:pointer;
}

.dest-card {
  position:relative;
  display:block;
  overflow:hidden;
}

.dest-card img {
  width:100%;
  height:350px;
  object-fit:cover;
  transition:0.5s;
}

.dest-card:hover img {
  transform:scale(1.1);
}

.overlay {
  position:absolute;
  bottom:20px;
  left:20px;
  color:#fff;
  font-size:26px;
  font-family:'Playfair Display';
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  p { font-size: 14px; }

  section {
    padding: 30px 15px;
  }
}