*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a6b3c;
  --green-light: #e8f5ee;
  --gold: #f5a623;
  --dark: #111827;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
}

body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* TOPBAR */
.topbar {
  background: var(--green);
  color: var(--white);
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 8px 40px;
  font-size: 13px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}
.logo { font-size: 20px; font-weight: 800; color: var(--green); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #145530; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-outline-white {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }

.btn-sm {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  transition: background .2s;
}
.btn-sm:hover { background: #145530; }

/* TAG */
.tag { font-size: 13px; color: var(--green); font-weight: 600; letter-spacing: .5px; margin-bottom: 8px; }
.center { text-align: center; }

/* STAT */
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 28px; font-weight: 800; color: var(--green); }
.stat span { font-size: 13px; color: var(--gray); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #e8f5ee 0%, #f0faf4 100%);
  padding: 80px 40px 60px;
  position: relative;
  background: url('Public/hero.png') no-repeat center center;
  background-size: cover;
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 45vh;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid #d1fae5;
  color: var(--green);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.15; margin-bottom: 32px; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--white); }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-sub { margin-top: 16px; color: var(--gray); font-size: 14px; }
.hero-sub { font-size: 18px; color: #e5e7eb; max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }
.hero-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }


/* DISCOVER */
.discover {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 80px 40px;
}
.discover .tag { color: #a7f3d0; }
.discover h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 32px; }
.discover-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 32px; flex-wrap: wrap; }
.discover-stats .stat strong { color: var(--white); }
.discover-stats .stat span { color: #a7f3d0; }

/* TRUST ICONS */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 40px;
  background: var(--light);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { font-size: 32px; background: var(--white); border-radius: 50%; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.trust-item span { font-size: 14px; font-weight: 600; }

/* CATEGORIES */
.categories { padding: 64px 0 48px; overflow: hidden; }
.categories h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; text-align: center; margin-bottom: 32px; }
.cat-track-wrapper { overflow: hidden; }
.cat-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.cat-card {
  position: relative;
  width: 340px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cat-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 24px 14px 12px;
  letter-spacing: .3px;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CARE SECTION */
.care-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.care-text h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; margin-bottom: 8px; }
.care-text > p { color: var(--gray); margin-bottom: 32px; }
.care-points { display: flex; flex-direction: column; gap: 24px; }
.care-point { display: flex; gap: 16px; align-items: flex-start; }
.care-icon { font-size: 24px; background: var(--green-light); border-radius: 10px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.care-point strong { display: block; margin-bottom: 4px; }
.care-point p { font-size: 14px; color: var(--gray); }
.care-img img { border-radius: var(--radius); height: 420px; width: 100%; object-fit: cover; }
.care-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 420px;
}
.care-img-slider { height: 100%; }
.care-slides { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.care-slide { flex: 0 0 100%; height: 100%; }
.care-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 24px;
  font-weight: bold;
  z-index: 10;
  border-radius: 4px;
  transition: background .2s;
}
.slider-btn:hover { background: rgba(0,0,0,0.6); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
/* HOW SECTION */
.how-section {
  background: var(--light);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--green-light), #f9fafb 70%);
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(40px);
  z-index: 0;
}
.how-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: linear-gradient(-45deg, var(--green-light), #f9fafb 80%);
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(50px);
  z-index: 0;
}
.how-content-wrapper {
  position: relative;
  z-index: 1;
}
.how-section h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; margin-bottom: 8px; }
.how-section .sub { font-size: 18px; font-weight: 600; color: var(--green); margin-bottom: 12px; }
.how-section .desc { color: var(--gray); max-width: 600px; margin: 0 auto 48px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.how-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform .2s, box-shadow .2s;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(38, 115, 79, .15);
}
.how-icon {
  font-size: 32px;
  background: var(--green-light);
  color: var(--green);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px var(--white);
}
.how-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.how-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* TRIPS */
.trips-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.trips-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.trips-header h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; }
.trips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trip-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.08); transition: transform .2s; }
.trip-card:hover { transform: translateY(-4px); }
.trip-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.trip-badge { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.6); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.trip-info { padding: 14px; }
.trip-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; font-size: 13px; font-weight: 600; }
.rating { color: var(--gold); }
.trip-info p { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.trip-price { font-size: 13px; margin-bottom: 4px; }
.trip-price strong { color: var(--green); font-size: 16px; }

/* PARTNERS */
.partners-section { background: var(--light); padding: 80px 40px; }
.partners-section h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; text-align: center; margin-bottom: 40px; }
.partners-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.partner-card { background: var(--white); border-radius: var(--radius); padding: 32px 40px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06); min-width: 180px; }
.partner-avatar { width: 160px; height: 160px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; overflow: hidden; }
.partner-card strong { display: block; margin-bottom: 4px; }
.partner-card span { font-size: 12px; color: var(--gray); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, #0f4d2a 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 40px;
}
.cta-section .tag { color: #a7f3d0; }
.cta-section h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--white); color: var(--green); }
.cta-section .btn-primary:hover { background: #f0faf4; }

/* INSTAGRAM */
.instagram-section { padding: 64px 40px; }
.instagram-section .tag { margin-bottom: 24px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.insta-item:hover img { transform: scale(1.05); }
.insta-item span { position: absolute; bottom: 8px; left: 8px; background: rgba(0,0,0,.6); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 50px; }

/* SOCIAL SECTION */
.social-section { padding: 64px 40px; text-align: center; background: var(--light); }
.social-section h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; margin-bottom: 32px; }
.social-icons { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  transition: transform .2s, opacity .2s;
}
.social-btn:hover { transform: translateY(-3px); opacity: .9; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook  { background: #1877f2; }

/* FOOTER */
.footer { background: var(--dark); color: #d1d5db; padding: 64px 40px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; margin-bottom: 40px; }
.footer .logo { color: var(--white); margin-bottom: 12px; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { margin-left: 16px; transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .topbar { justify-content: center; flex-wrap: wrap; gap: 8px; padding: 8px 16px; font-size: 12px; }
  .navbar { padding: 14px 20px; }
  .hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,.1); gap: 16px; z-index: 99; }
  .nav-links.open { display: flex; }

  .hero { padding: 48px 20px 36px; }
  .hero h1 { font-size: 32px; }
  .hero h1 { font-size: 34px; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 22px; }
  .btn-primary, .btn-outline { padding: 11px 22px; font-size: 14px; }

  .trust-icons { gap: 24px; padding: 36px 20px; }
  .trust-icon { width: 52px; height: 52px; font-size: 26px; }

  .categories { padding: 48px 0 32px; }
  .cat-card { width: 220px; height: 160px; }

  .care-section { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .care-img { height: 260px; }

  .how-section { padding: 48px 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-card { padding: 20px; }

  .trips-section { padding: 48px 20px; }
  .trips-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trips-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trip-img { height: 150px; }
  .trip-info { padding: 10px; }
  .trip-price strong { font-size: 14px; }

  .partners-section { padding: 48px 20px; }
  .partners-grid { gap: 16px; }
  .partner-card { padding: 24px 28px; min-width: 140px; }

  .footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom a { margin-left: 8px; }
}

@media (max-width: 480px) {
  .topbar { display: none; }
  .hero { padding: 40px 16px 28px; }
  .hero h1 { font-size: 28px; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 16px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }

  .trips-grid { grid-template-columns: 1fr; }
  .trip-img { height: 200px; }

  .cat-card { width: 180px; height: 130px; }
  .cat-card span { font-size: 12px; }

  .how-section .sub { font-size: 16px; }
  .care-img { height: 220px; }

  .partners-grid { flex-direction: column; align-items: center; }
  .partner-card { width: 100%; max-width: 280px; }

  .footer-grid { gap: 20px; }
  .footer-col h4 { margin-bottom: 10px; }
}
