/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2D2D2D;
  background: #FAFAF8;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 800; line-height: 1.15; color: #1A1A2E; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8644B;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 2px;
  background: #E8644B;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #E8644B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 100, 75, 0.35);
}
.btn-primary:hover {
  background: #D4533A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 100, 75, 0.45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: #fff;
  color: #1A1A2E;
  border-color: #fff;
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E8644B;
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #E8644B;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #D4533A; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(26, 26, 46, 0.7) 50%,
    rgba(232, 100, 75, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-headline em {
  color: #E8644B;
  font-style: normal;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Geometric shapes */
.geo {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.geo-1 {
  width: 300px;
  height: 300px;
  background: #E8644B;
  opacity: 0.12;
  border-radius: 50%;
  top: -80px;
  right: -60px;
}
.geo-2 {
  width: 180px;
  height: 180px;
  background: #E8644B;
  opacity: 0.08;
  transform: rotate(45deg);
  bottom: 15%;
  right: 8%;
}
.geo-3 {
  width: 120px;
  height: 120px;
  border: 3px solid rgba(232, 100, 75, 0.3);
  border-radius: 50%;
  bottom: 25%;
  left: 5%;
}
.geo-4 {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  transform: rotate(30deg);
  top: 30%;
  left: 8%;
}

/* ===== ABOUT ===== */
.about { background: #FAFAF8; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 550px;
}
.about-img-main {
  width: 75%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  border: 4px solid #FAFAF8;
  z-index: 3;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #E8644B;
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -40px;
  right: 20%;
  z-index: 1;
}
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text > p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 100, 75, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.about-feat span {
  font-size: 0.9rem;
  color: #666;
}

/* ===== CAMPING ===== */
.camping { background: #1A1A2E; color: #fff; }
.camping .section-label { color: #E8644B; }
.camping .section-label::before { background: #E8644B; }
.camping .section-title { color: #fff; }
.camping .section-sub { color: rgba(255,255,255,0.65); }
.camping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.camp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.camp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(232, 100, 75, 0.2);
  border-color: rgba(232, 100, 75, 0.3);
}
.camp-card-img {
  height: 220px;
  overflow: hidden;
}
.camp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.camp-card:hover .camp-card-img img { transform: scale(1.08); }
.camp-card-body { padding: 1.75rem; }
.camp-tag {
  display: inline-block;
  background: #E8644B;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.camp-card-body h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.camp-card-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.camp-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.camp-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* ===== DIVIDER ===== */
.divider {
  position: relative;
  height: 120px;
  background: #E8644B;
  overflow: hidden;
}
.divider-shapes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.divider-circle {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 50%;
}
.divider-triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 43px solid rgba(255,255,255,0.5);
}
.divider-square {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  border-radius: 8px;
  transform: rotate(45deg);
}
.divider-circle-sm {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* ===== AMENITIES ===== */
.amenities { background: #FAFAF8; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #E8644B;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 100, 75, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.amenity-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.amenity-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: #E8644B;
  opacity: 0.05;
  border-radius: 50%;
  top: -200px;
  right: -100px;
}
.testimonials .section-label { color: #E8644B; }
.testimonials .section-label::before { background: #E8644B; }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  color: #E8644B;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== LOCATION ===== */
.location { background: #FAFAF8; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.location-info { padding: 2rem 0; }
.location-desc {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.location-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 100, 75, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.2rem;
}
.location-item span,
.location-item a {
  color: #2D2D2D;
  font-size: 1rem;
}
.location-item a:hover { color: #E8644B; }
.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  min-height: 400px;
}

/* ===== CONTACT ===== */
.contact {
  background: #E8644B;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -300px;
  left: -200px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pattern-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.pattern-dot:nth-child(1) { top: 10%; left: 5%; }
.pattern-dot:nth-child(2) { top: 25%; left: 15%; width: 12px; height: 12px; }
.pattern-dot:nth-child(3) { top: 60%; left: 3%; width: 6px; height: 6px; }
.pattern-dot:nth-child(4) { top: 80%; left: 12%; width: 10px; height: 10px; }
.pattern-dot:nth-child(5) { top: 45%; left: 20%; width: 6px; height: 6px; }
.pattern-dot:nth-child(6) { top: 75%; left: 18%; width: 14px; height: 14px; }
.contact-content .section-label { color: rgba(255,255,255,0.7); }
.contact-content .section-label::before { background: rgba(255,255,255,0.5); }
.contact-content .section-title { color: #fff; }
.contact-content .section-sub { color: rgba(255,255,255,0.8); }
.contact-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.contact-phone a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #2D2D2D;
  transition: border-color 0.3s;
  background: #FAFAF8;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E8644B;
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #E8F5E9;
  border-radius: 12px;
  color: #1A7A4E;
  font-weight: 500;
  margin-top: 1rem;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: #E8644B; }
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.footer-contact a:hover { color: #E8644B; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { height: 400px; }
  .camping-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    gap: 1.5rem;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  .camping-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
  .about-images { height: 320px; }
  .about-img-main { height: 300px; }
  .about-img-float { height: 180px; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .geo { display: none; }
}
