/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a5632;
  text-decoration: underline;
}

a:hover {
  color: #0e3a20;
}

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

ul, ol {
  padding-left: 22px;
}

/* ===== WRAPPER ===== */
.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1b1b2f;
  color: #e0e0e0;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 2px solid #d4a017;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a {
  color: #f0c040;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* ===== HEADER ===== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #d0d0d0;
  padding: 12px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #1b1b2f;
  text-decoration: none;
}

.logo span {
  color: #d4a017;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.call-btn {
  display: inline-block;
  background: #1a5632;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
}

.call-btn:hover {
  background: #0e3a20;
  color: #ffffff;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #ffffff;
}

/* ===== NAV ===== */
.main-nav {
  background: #f7f7f7;
  border-bottom: 1px solid #d0d0d0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}

.nav-inner a {
  display: block;
  padding: 10px 16px;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-inner a:hover {
  background: #eaeaea;
  color: #1a5632;
}

/* ===== BANNER ===== */
.banner-section {
  position: relative;
  background: #1b1b2f;
  overflow: hidden;
}

.banner-section img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  opacity: 0.85;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27,27,47,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.banner-overlay h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.banner-overlay p {
  color: #f0f0f0;
  font-size: 16px;
  max-width: 600px;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 15px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.content-area {
  flex: 1;
  min-width: 0;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 300px;
  flex-shrink: 0;
}

.sidebar-box {
  background: #f9f9f9;
  border: 1px solid #d0d0d0;
  margin-bottom: 20px;
}

.sidebar-box-title {
  background: #1b1b2f;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 700;
}

.sidebar-box-content {
  padding: 12px 14px;
}

.sidebar-box-content p {
  margin-bottom: 8px;
  font-size: 14px;
}

.sidebar-box-content ul {
  list-style: none;
  padding: 0;
}

.sidebar-box-content ul li {
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-box-content ul li:last-child {
  border-bottom: none;
}

.sidebar-box-content ul li a {
  color: #1a5632;
  text-decoration: none;
}

.sidebar-box-content ul li a:hover {
  text-decoration: underline;
}

.sidebar-call-btn {
  display: block;
  background: #1a5632;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}

.sidebar-call-btn:hover {
  background: #0e3a20;
  color: #ffffff;
}

.sidebar-wa-btn {
  display: block;
  background: #25d366;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0;
}

.sidebar-wa-btn:hover {
  background: #1da851;
  color: #ffffff;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  margin-bottom: 30px;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1b1b2f;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #d4a017;
}

.content-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b1b2f;
  margin-bottom: 10px;
}

.content-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.content-section h5 {
  font-size: 15px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 6px;
}

.content-section h6 {
  font-size: 14px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 6px;
}

.content-section p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}

/* ===== PROFILE CARDS ===== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.profile-card {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  overflow: hidden;
}

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

.profile-card-body {
  padding: 10px;
}

.profile-card-body h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: #1b1b2f;
}

.profile-card-body p {
  font-size: 13px;
  color: #666666;
  margin-bottom: 6px;
}

.profile-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #1a5632;
  font-size: 11px;
  padding: 2px 8px;
  margin: 2px 2px 2px 0;
  font-weight: 600;
}

/* ===== STEPS ===== */
.steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 10px 10px 10px 50px;
  margin-bottom: 8px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  position: relative;
  font-size: 14px;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a5632;
  color: #ffffff;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  font-size: 14px;
}

/* ===== AREA GUIDE ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.area-item {
  background: #f5f5f5;
  border: 1px solid #d0d0d0;
  padding: 10px;
  font-size: 13px;
}

.area-item strong {
  display: block;
  color: #1b1b2f;
  margin-bottom: 3px;
}

/* ===== HOTELS LIST ===== */
.hotels-list {
  list-style: none;
  padding: 0;
}

.hotels-list li {
  padding: 8px 12px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotels-list li:last-child {
  border-bottom: none;
}

.hotel-name {
  font-weight: 700;
  color: #1b1b2f;
}

.hotel-area {
  font-size: 12px;
  color: #888888;
}

/* ===== RATE TABLE ===== */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

.rate-table th {
  background: #1b1b2f;
  color: #ffffff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
}

.rate-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.rate-table tr:nth-child(even) {
  background: #f9f9f9;
}

.rate-table tr:hover {
  background: #f0f0f0;
}

/* ===== SAFETY TIPS ===== */
.safety-list {
  list-style: none;
  padding: 0;
  counter-reset: safety-counter;
}

.safety-list li {
  counter-increment: safety-counter;
  padding: 10px 10px 10px 45px;
  margin-bottom: 6px;
  background: #fffde7;
  border: 1px solid #e6d96e;
  position: relative;
  font-size: 14px;
}

.safety-list li::before {
  content: counter(safety-counter);
  position: absolute;
  left: 10px;
  top: 10px;
  background: #d4a017;
  color: #1b1b2f;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-weight: 700;
  font-size: 13px;
}

/* ===== FORUM / Q&A ===== */
.forum-section {
  margin-bottom: 30px;
}

.forum-thread {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  margin-bottom: 12px;
}

.forum-question {
  background: #f0f0f0;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  color: #1b1b2f;
  border-bottom: 1px solid #d0d0d0;
}

.forum-answer {
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.7;
}

.forum-answer p {
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-item {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  margin-bottom: 8px;
}

.faq-question {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  color: #1b1b2f;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.faq-answer {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== SERVICE TAGS ===== */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.service-tags a {
  display: inline-block;
  background: #f0f0f0;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  font-size: 12px;
  color: #2d2d2d;
  text-decoration: none;
  line-height: 1.4;
}

.service-tags a:hover {
  background: #1a5632;
  color: #ffffff;
  border-color: #1a5632;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.trust-badge {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a5632;
}

/* ===== PAYMENT INFO ===== */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-method {
  background: #fffde7;
  border: 1px solid #e6d96e;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #5d4e00;
}

/* ===== DISCLAIMER ===== */
.disclaimer-box {
  background: #fff3f3;
  border: 1px solid #e8b4b4;
  padding: 14px;
  margin-top: 20px;
  font-size: 13px;
  color: #6b2c2c;
  line-height: 1.6;
}

.disclaimer-box strong {
  color: #8b2020;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1b1b2f;
  color: #c0c0c0;
  padding: 30px 0 0 0;
  margin-top: 30px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: #d4a017;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: #d4a017;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333355;
  margin-top: 25px;
  padding: 15px 0;
  text-align: center;
  font-size: 12px;
  color: #888888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    order: -1;
  }

  .banner-overlay h1 {
    font-size: 24px;
  }

  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .area-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 600px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-inner {
    justify-content: center;
  }

  .banner-overlay h1 {
    font-size: 20px;
  }

  .banner-overlay p {
    font-size: 14px;
  }

  .profiles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rate-table {
    font-size: 12px;
  }

  .rate-table th,
  .rate-table td {
    padding: 6px 8px;
  }

  .footer-col {
    min-width: 100%;
  }
}

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