/* ===== FONT FACES ===== */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-extrabold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/poppins-extrabold.woff2') format('woff2');
}

/* ===== CSS VARIABLES ===== */
:root {
  --accent1: #B6C215;
  --accent2: #9AB12D;
  --link: #004d40;
  --link-hover: #00796b;
  --btn-bg: #004d40;
  --btn-text: #fff;
  --nav-bg: #004d40;
  --nav-link: #fff;
  --footer-bg: #004d40;
  --footer-text: #fff;
  --footer-link: #fff;
  --accordion-bg: #9AB12D;
  --accordion-text: #004d40;
  --fa-color: #004d40;
  --card-header-bg: #9AB12D;
  --btn-outline: #004d40;
  --text-primary: #004d40;
}

/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}
a { color: var(--link); }
a:hover { color: var(--link-hover); }

/* ===== TOPBAR ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

/* ===== NAVBAR ===== */
.navbar { background: var(--nav-bg) !important; }
.navbar-brand, .navbar-brand:hover { color: #fff; }
.navbar-dark .nav-link { color: var(--nav-link) !important; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 500; transition: color .2s; }
.navbar-dark .nav-link:hover, .navbar-dark .nav-link:focus { color: var(--accent1) !important; }
/* Tab styles */
.nav-tabs .nav-link { color: #004d40 !important; background: #f0f4e8; border: 1px solid #9AB12D; font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 500; }
.nav-tabs .nav-link:hover { background: #9AB12D; color: #fff !important; }
.nav-tabs .nav-link.active { background: #004d40 !important; color: #fff !important; border-color: #004d40; font-weight: 600; }
.dropdown-menu { border: none; box-shadow: 0 4px 20px rgba(0,0,0,.12); background: #fff; }
.dropdown-item { font-family: 'Poppins', sans-serif; font-size: .88rem; color: var(--text-primary); }
.dropdown-item:hover { background: var(--accent1); color: #fff; }
.dropdown-item.active, .dropdown-item:active { background: var(--accent1); color: #fff; }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  max-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,77,64,.72) 0%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  color: #fff;
}
.hero-section .lead {
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  font-size: 1.1rem;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ===== SECTIONS ===== */
section, .section { padding: 60px 0; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.section-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.divider-accent {
  width: 60px;
  height: 4px;
  background: var(--accent1);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.divider-accent.left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 2px solid var(--btn-bg);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: .6rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
}
.btn-primary-custom:hover { background: var(--link-hover); border-color: var(--link-hover); color: #fff; }
.btn-outline-custom {
  background: transparent;
  color: var(--btn-outline);
  border: 2px solid var(--btn-outline);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: .6rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
}
.btn-outline-custom:hover { background: var(--btn-bg); color: #fff; }
.btn-accent {
  background: var(--accent1);
  color: #fff;
  border: 2px solid var(--accent1);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: .6rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-accent:hover { background: var(--accent2); border-color: var(--accent2); color: #fff; }

/* ===== CARDS ===== */
.card { border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.card-header-custom {
  background: var(--card-header-bg);
  color: var(--accordion-text);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: .75rem 1.25rem;
}
.card-img-top { height: 220px; object-fit: cover; }
.tour-card .card-img-top { height: 200px; }
.tour-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
}
.tour-duration {
  font-size: .88rem;
  color: #666;
}

/* ===== ACCORDION ===== */
.accordion-button {
  background: var(--accordion-bg) !important;
  color: var(--accordion-text) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  box-shadow: none !important;
}
.accordion-button::after { filter: invert(20%) sepia(60%) saturate(600%) hue-rotate(140deg); }
.accordion-button:not(.collapsed) { background: var(--text-primary) !important; color: #fff !important; }
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-item { border: 1px solid rgba(154,177,45,.3); margin-bottom: 6px; border-radius: 6px !important; overflow: hidden; }
.accordion-body { background: #f9f9f9; }

/* ===== PARALLAX ===== */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
}
.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,77,64,.75);
}
.parallax-section .container { position: relative; z-index: 2; }

/* ===== BENEFITS ===== */
.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.benefit-icon { font-size: 2.5rem; color: var(--fa-color); margin-bottom: 1rem; }

/* ===== DESTINATION TILES ===== */
.dest-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  display: block;
  text-decoration: none;
}
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dest-tile:hover img { transform: scale(1.05); }
.dest-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,77,64,.85));
  color: #fff;
  padding: 1rem .75rem .5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
}

/* ===== STEPS ===== */
.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== TABLE ===== */
.table-styled thead th { background: var(--text-primary); color: #fff; font-family: 'Poppins', sans-serif; }
.table-styled tbody tr:hover { background: rgba(154,177,45,.1); }

/* ===== ITINERARY ===== */
.itinerary-day {
  border-left: 4px solid var(--accent1);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent1);
  border-radius: 50%;
}
.day-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: .25rem;
}

/* ===== INCLUDED LIST ===== */
.included-list { list-style: none; padding: 0; }
.included-list li { padding: .35rem 0; }
.included-list li::before { content: '✓'; color: var(--accent2); font-weight: 700; margin-right: .5rem; }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.gallery-grid img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; cursor: pointer; transition: transform .2s; }
.gallery-grid img:hover { transform: scale(1.03); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease both; }
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.site-footer a { color: var(--footer-link); }
.site-footer a:hover { color: var(--accent1); }

/* ===== BREADCRUMB ===== */
.breadcrumb-item + .breadcrumb-item::before { color: #999; }

/* ===== CONTACT PAGE ===== */
.contact-info-card { border-left: 4px solid var(--accent1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section, .section { padding: 40px 0; }
  .hero-section { min-height: 360px; max-height: none; }
  .parallax-section { background-attachment: scroll; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-section h1 { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
