:root {
  --accent: #ACF79E;
  --dark: #0f1724;
  --muted: #6b7280;
  --bg-img: url("https://i.imgur.com/ztfvZLN.png");
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--bg-img) center/cover fixed no-repeat;
  color: var(--dark);
}

/* Section Header */
.section-header {
  max-width: 1080px;
  margin: 40px auto 20px auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #071123;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 50;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display:flex; gap:12px; align-items:center; }
.brand-title { font-size: 18px; font-weight: 700; }
.brand-sub { font-size: 12px; color: var(--muted); }

.nav a { padding: 8px 12px; border-radius: 8px; }
.nav a:hover { background:#eef2f7; }

.cta-btn {
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* Fix default link styles */
nav a,
.nav a,
.header a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}
nav a:hover,
.nav a:hover {
  color: #000;
  text-decoration: none;
}

.menu-btn { font-size: 22px; background:none; border:none; }

/* Hero */
.hero-card {
  max-width: 1200px;
  margin: 30px auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 18px;
  display: grid;
  gap: 25px;
}
@media(min-width:900px){
  .hero-card { grid-template-columns: 1fr 360px; }
}
.hero-title { font-size: 34px; font-weight:800; }
.hero-sub { margin-top: 10px; color:#374151; }

.btn {
  display:inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight:600;
  text-decoration:none;
}

/* --- GREEN BUTTON WINDOW FIXED HERE --- */
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); }

/* This is the one you wanted GREEN */
.btn-ghost {
  background: var(--accent);          /* <-- GREEN */
  border: none;
  color: #0f1724;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.2s;
}
.btn-ghost:hover {
  background: #99ec8c;               /* Slight darker green */
}

/* Why Choose */
.why-title { margin-top:20px; font-weight:700; }
.why-list li { margin: 4px 0; }

/* Contact Card */
.contact-card {
  background:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}
.contact-img {
  margin-top:10px;
  width:100%;
  border-radius:8px;
}

/* About */
.about {
  max-width: 1200px;
  margin: 20px auto;
  background: rgba(255,255,255,0.85);
  padding:20px;
  border-radius:14px;
}

/* Testimonial & Promise */
.two-col {
  max-width:1200px;
  margin: auto;
  padding:20px;
  display:grid;
  gap:20px;
}
@media(min-width:900px){
  .two-col { grid-template-columns: 1fr 1fr; }
}
.card {
  background:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
}
.quote-author { margin-top:10px; font-weight:600; }
.quote-author .sub { color: var(--muted); }

/* Services */
.services-wrap { padding:40px 0; }
.services-grid {
  max-width:1100px;
  margin:auto;
  display:grid;
  gap:25px;
}
@media(min-width:800px){
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

.service-card {
  background:#fff;
  padding:20px;
  border-radius:18px;
  opacity:0;
  transform: translateY(30px);
  transition: all 0.7s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}
.service-card h3 { margin:0 0 10px; }
.reveal-visible {
  opacity:1 !important;
  transform:translateY(0) !important;
}

/* Booking */
.booking {
  max-width:700px;
  margin: 40px auto;
  padding:25px;
  background:rgba(255,255,255,0.9);
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.booking label {
  display:block;
  margin-bottom:18px;
}
.booking input,
.booking textarea {
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #d8dee6;
}

/* Footer */
.footer {
  background:var(--dark);
  color:#d5fdd0;
  padding:25px;
  border-radius:16px;
  max-width:1200px;
  margin: 40px auto;
}
.footer-flex {
  display:flex;
  justify-content:space-between;
}
.footer-title { font-weight:700; }
.footer-sub { color:var(--accent); }

/* Mobile Menu */
#mobileMenu {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
}
#mobileMenu .panel {
  position:absolute;
  right:0;
  width:280px;
  height:100%;
  background:#fff;
  padding:20px;
}
.close-btn {
  font-size: 22px;
  background:none;
  border:none;
}
