/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, "ms pgothic", helvetica, sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

.text-center { text-align: center; }

/* ===========================
   HEADER
=========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { flex-shrink: 0; }
.logo img { height: 50px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.main-nav ul li a {
  padding: 8px 14px;
  font-size: 15px;
  color: #0f172a;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: 500;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #dca54a;
  background: rgba(220,165,74,0.08);
}

.btn-whatsapp-nav {
  background: #25d366;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-whatsapp-nav:hover { background: #1ebe5d; transform: scale(1.03); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  color: #0f172a;
}

/* ===========================
   CTA BUTTON
=========================== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, #fca000 0%, #dca54a 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252,160,0,0.35);
  text-align: center;
}
.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252,160,0,0.45);
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 800px;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-content h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-content .btn-cta { margin-top: 30px; }

/* ===========================
   SECTION TITLES
=========================== */
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 24px;
}

/* ===========================
   FEATURES SECTION
=========================== */
.features-section {
  background: #faf5e5;
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.features-text { padding-right: 20px; }
.features-list p,
.unit-types p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 8px;
  line-height: 1.7;
}
.unit-types { margin: 24px 0; }
.unit-types h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 12px;
}
.features-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ===========================
   TRANSPORT SECTION
=========================== */
.transport-section {
  background: #fff;
  padding: 80px 0;
}
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.transport-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.transport-text { padding-left: 20px; }
.transport-text > p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 24px;
  line-height: 1.8;
}
.amenity-item {
  background: #faf5e5;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.amenity-item h4 {
  font-size: 17px;
  color: #0f172a;
  margin-bottom: 8px;
}
.amenity-item p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ===========================
   GALLERY SECTION
=========================== */
.gallery-section {
  background: #faf5e5;
  padding: 80px 0;
}
.gallery-section .section-title { margin-bottom: 4px; }
.gallery-section .section-subtitle { margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===========================
   PAGE HERO (sub pages)
=========================== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.jpg') center 30% / cover no-repeat;
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}
.page-hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.page-hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.page-coming-soon {
  font-size: 22px !important;
  font-weight: bold;
  margin-bottom: 30px !important;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  background: #faf5e5;
  padding: 80px 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon { font-size: 36px; margin-bottom: 16px; }
.contact-card h3 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #4a4a4a;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.contact-card a, .contact-card p {
  font-size: 18px;
  color: #0f172a;
  font-weight: 500;
}
.contact-card a:hover { color: #dca54a; }
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #563a06;
  padding: 40px 0;
}
.disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  text-align: justify;
}
.disclaimer strong { color: #fff; }

/* ===========================
   FLOATING BUTTONS
=========================== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s;
  white-space: nowrap;
}
.float-btn:hover { transform: scale(1.05); }
.float-phone { background: #f9120a; }
.float-wa { background: #25d366; }

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .main-nav ul li a { display: block; padding: 12px 16px; }
  .mobile-menu-toggle { display: block; }
  .btn-whatsapp-nav { display: none; }

  .features-grid,
  .transport-grid { grid-template-columns: 1fr; gap: 30px; }
  .features-text { padding-right: 0; }
  .transport-text { padding-left: 0; }
  .transport-image { order: -1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }

  .float-btn span { display: none; }
  .float-btn { padding: 12px 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
  .hero-content h2 { font-size: 20px; }
}
