/* ===================================================
   ASIACORP - Simplified Static Site Stylesheet
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif; color: #333; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --green:       #1d5c38;
  --green-mid:   #2a7a4a;
  --green-light: #e8f5ee;
  --white:       #ffffff;
  --gray-bg:     #f7f7f7;
  --text:        #333333;
  --text-light:  #666666;
  --max-width:   1200px;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 65px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-logo img { height: 38px; }

.nav-menu {
  display: flex;
  gap: 2.5rem;
}
.nav-menu a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  border-bottom-color: var(--green);
}

.btn-cta {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--green); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  top:-100px
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hero-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.hero-content p {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.hero-divider {
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 1rem auto;
  opacity: 0.6;
}

/* Hero wave overlay at bottom */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-wave svg { display: block; width: 100%; }

/* Pill buttons */
.btn-pill {
  display: inline-block;
  background: #fff;
  color: var(--green);
  padding: 0.75rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-pill:hover { background: var(--green); color: #fff; }

.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-green:hover { background: var(--green-mid); }

/* ===================================================
   LAYOUT HELPERS
   =================================================== */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--gray-bg); }
.container { max-width: var(--max-width); margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2rem;
  color: var(--green);
  font-weight: 700;
}
.section-header .sub {
  font-size: 0.78rem;
  color: #999;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.section-header .desc {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 1rem auto 0;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 0.8rem auto 0;
}

/* ===================================================
   FEATURES SECTION (Home – image + stacked cards)
   =================================================== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.features-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 6px 20px rgba(29,92,56,0.1); }
.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-icon i { color: var(--green); }
.feature-text h3 {
  color: var(--green);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.feature-text p { color: var(--text-light); font-size: 0.87rem; }

/* ===================================================
   SERVICE CARDS (Home - 3 col grid)
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.service-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.svc-icon {
  width: 58px;
  height: 58px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
  border: 1px solid #c8e6d4;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}
.service-card p { color: var(--text-light); font-size: 0.87rem; margin-bottom: 0.5rem; }
.link-more {
  color: var(--green);
  font-size: 0.85rem;
  text-decoration: underline;
}
.link-more:hover { color: var(--green-mid); }
.svc-icon i { color: var(--green); }

/* ===================================================
   SERVICE IMAGE GRID (Home – 3×2 full-bleed cards)
   =================================================== */
.section-services { background: var(--gray-bg); }
.services-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.svc-img-card {
  position: relative;
  display: block;
  height: 320px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
}
.svc-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  transition: background 0.35s;
}
.svc-img-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.1) 100%);
}
.svc-img-card:hover { text-decoration: none; }
.svc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem;
  z-index: 1;
  color: #fff;
  transform: translateY(0);
  transition: padding 0.3s;
}
.svc-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.svc-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.45;
}

/* ===================================================
   PACKAGES (3 cards)
   =================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.package-card {
  background: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(212, 212, 212, 1) !important;
  border-style: solid !important;
  border-width: 1px !important;
  border-top-width: 1px !important;
}
.package-card.featured {
  background: #fff;
  box-shadow: 0 8px 30px rgba(29,92,56,0.18);
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}
.pkg-photo {
  height: 600px;
  background-size: cover;
  background-position: center center;
}
.pkg-body { padding: 2rem 1.5rem; }
.pkg-body h3 {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.pkg-body .pkg-sub {
  color: #888;
  font-size: 0.88rem;
  margin: 0.3rem 0 1.5rem;
}
.pkg-body ul { text-align: left; margin-bottom: 1.75rem; }
.pkg-body ul li {
  font-size: 0.87rem;
  color: #555;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}

/* ===================================================
   CONTACT / FORM SECTIONS
   =================================================== */

/* Home & Services page - split form+bg layout */
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 550px;
}
.form-panel { padding: 4rem 3rem; }
.form-bg-panel {
  background-size: cover;
  background-position: center;
  position: relative;
}
.form-bg-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(220,120,100,0.25);
}

/* Inline contact section on homepage */
.contact-inline { max-width: 700px; margin: 0 auto; }
.contact-inline h2 { color: var(--green); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-inline .desc { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; }

/* Contact page two-column */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--green); font-size: 1.6rem; font-weight: 700; margin-bottom: 1.2rem; }
.contact-info p { color: #555; font-size: 0.92rem; margin-bottom: 0.4rem; }
.hours { margin: 1.2rem 0; }
.hours h4 { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.hours table { border-collapse: collapse; }
.hours td { font-size: 0.9rem; color: #555; padding: 0.2rem 1rem 0.2rem 0; }
.social-row { display: flex; gap: 1.2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-row a { color: var(--green); font-size: 0.88rem; text-decoration: underline; }
.social-row a i { margin-right: 0.3rem; }
.contact-info p i { margin-right: 0.4rem; color: var(--green); }
.hours h4 i { margin-right: 0.3rem; }

/* Form feedback messages */
.form-feedback {
  margin-top: 0.85rem;
  font-size: 0.87rem;
  min-height: 1.2em;
  line-height: 1.5;
}
.form-feedback--success { color: var(--green); font-weight: 500; }
.form-feedback--error   { color: #c0392b; }
button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form styling shared */
.form-title { color: var(--green); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-desc { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.form-group input[type=text],
.form-group input[type=tel],
.form-group input[type=email],
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  outline: none;
  background: transparent;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--green); }
.form-group textarea { min-height: 90px; resize: vertical; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; margin-top: 0.3rem; }
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.checkbox-group input[type=checkbox] { width: auto; cursor: pointer; accent-color: var(--green); }

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: var(--green);
  color: #fff;
  padding: 3rem 2.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo img { height: 32px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.83rem;
  opacity: 0.85;
  line-height: 1.8;
}
.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 0.9rem;
}
.footer-links li { font-size: 0.85rem; opacity: 0.85; margin-bottom: 0.35rem; }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1.5rem; }
.footer-social a { font-size: 0.85rem; opacity: 0.85; text-decoration: underline; color: #fff; }
.footer-social a i { margin-right: 0.3rem; }
.footer-copy {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem;
  opacity: 0.65;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-split { grid-template-columns: 1fr; }
  .form-bg-panel { min-height: 250px; }
  .features-layout { grid-template-columns: 1fr; gap: 2rem; }
  .features-image { max-height: 320px; }
  .services-img-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 2rem 1.5rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.6rem 0; border-bottom: 1px solid #f0f0f0; color:var(--green)!important;}
  .nav-menu a:last-child { border-bottom: none; }
  .nav-toggle { display: block; color:var(--white)!important;}
  .btn-cta { display: none; }

  .hero-content h1 { font-size: 2rem; }
  .hero-content h2 { font-size: 1.1rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-img-grid { grid-template-columns: 1fr; }
  .svc-img-card { height: 260px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .navbar { padding: 0 1.25rem; }
}
