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

:root {
  --teal: #00c896;
  --teal-dark: #00a87e;
  --navy: #2c3e50;
  --navy-dark: #1e2d3d;
  --gray-light: #f5f7fa;
  --gray-mid: #e8ecf0;
  --text: #333d47;
  --text-muted: #6b7a8d;
  --white: #ffffff;
  --font: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== Navbar ===== */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .btn { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #f0faf7 0%, #e8f5f0 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(0,200,150,0.12);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,200,150,0.2);
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--teal); }
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  padding: 4px 12px;
}
.hero-bullet::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.hero-list-intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.hero-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}
.hero-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ===== Section Headings ===== */
.section-label {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ===== Services Section ===== */
.services-section {
  padding: 80px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0,200,150,0.12);
  transform: translateY(-3px);
}
.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(0,200,150,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.service-icon svg { width: 28px; height: 28px; }
.service-icon .ti { font-size: 30px; line-height: 1; }
.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.services-cta { text-align: center; }

/* ===== Map Section ===== */
.map-section {
  padding: 80px 0;
  background: var(--gray-light);
}
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.map-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.map-content h2 span { color: var(--teal); }
.map-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}
.contact-detail svg { color: var(--teal); flex-shrink: 0; }
.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.map-cta { margin-top: 24px; }

/* ===== Booking Section ===== */
.booking-section {
  background: var(--navy);
  padding: 72px 0;
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking-main h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.booking-intro {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 20px;
}
.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
}
.booking-contact-item:hover { opacity: 0.8; }
.booking-contact-item svg { color: var(--teal); flex-shrink: 0; }
.booking-note {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}
.booking-walkin {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
}
.walkin-icon {
  color: var(--teal);
  margin-bottom: 16px;
}
.booking-walkin h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.booking-walkin p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.walkin-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.walkin-hours strong { color: rgba(255,255,255,0.9); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-phone-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-phone-bar svg { color: var(--teal); }
.footer-phone-bar strong { color: var(--white); }

/* ===== Inner Page Hero ===== */
.page-hero {
  background: var(--navy);
  padding: 64px 0;
  color: var(--white);
}
.page-hero-badge {
  display: inline-block;
  background: rgba(0,200,150,0.15);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* ===== Content Sections ===== */
.content-section { padding: 80px 0; }
.content-section.bg-light { background: var(--gray-light); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ===== Check List ===== */
.check-list { margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 15px;
  color: var(--text);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.5 2.5l-7 9L3 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Why Us cards ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-icon {
  width: 40px; height: 40px;
  background: rgba(0,200,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.why-card p { font-size: 13px; color: var(--text-muted); }

/* ===== Steps ===== */
.steps { margin-top: 8px; }
.step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.step-body h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-muted); }

/* ===== Booking CTA Box ===== */
.booking-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
}
.booking-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.booking-box p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 15px; }
.booking-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.booking-option a { color: var(--teal); font-weight: 600; }
.booking-option a:hover { text-decoration: underline; }
.booking-note {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}
.booking-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* ===== Services Page Grid ===== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-full-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(0,200,150,0.1);
}
.service-full-card .service-icon { margin: 0 0 16px; }
.service-full-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-full-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.card-links { display: flex; gap: 12px; flex-wrap: wrap; }
.card-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.card-links a:hover { color: var(--teal); }

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 32px;
}
.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-row-icon {
  width: 40px; height: 40px;
  background: rgba(0,200,150,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.info-row-text h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.info-row-text p, .info-row-text a {
  font-size: 15px;
  color: var(--text-muted);
}
.info-row-text a:hover { color: var(--teal); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { font-size: 14px; padding: 4px 0; color: var(--text-muted); }
.hours-table td:first-child { color: var(--text); font-weight: 600; padding-right: 16px; }

/* ===== FAQs ===== */
.faq-list { max-width: 760px; }
.faq-item {
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
  }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { display: none; }
  .hero h1 { font-size: 34px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .map-inner { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-list { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .cta-banner h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 28px; }
  .hero-cta { flex-direction: column; }
  .booking-box { padding: 24px; }
}
