/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.5;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  font-size: 16px;
}

.logo-tagline {
  font-size: 12px;
  color: #6b7280;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
}

.main-nav a:hover {
  color: #046f6b;
}

.header-phone {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #046f6b;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 24px;
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 0 70px;
  color: #f9fafb;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.2)),
    url("images/hero-melbourne-sunrise.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1.4fr);
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 32px;
  margin: 0 0 12px;
  color: #f9fafb;
}

.hero-copy p {
  margin: 0 0 16px;
  color: #e5e7eb;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #e5e7eb;
}

.hero-badges li {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(249, 250, 251, 0.2);
}

.hero-panel {
  background: rgba(15, 23, 42, 0.88);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
  color: #e5e7eb;
}

.hero-panel h2 {
  margin-top: 0;
  font-size: 18px;
  color: #f9fafb;
}

.hero-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 14px;
}

.hero-list li {
  margin-bottom: 4px;
}

.hero-note {
  font-size: 13px;
  color: #d1d5db;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: #f97316;
  /* warm orange to match sunrise, outlined by teal on hover */
  color: #111827;
}

.btn-primary:hover {
  background: #fb923c;
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.3);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section.alt {
  background: #f9fafb;
}

.section h2 {
  text-align: center;
  margin: 0 0 10px;
  font-size: 24px;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
  color: #4b5563;
}

/* Strip section */
.strip {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.strip-inner {
  padding: 26px 0;
}

.strip-inner h2 {
  text-align: center;
  margin: 0 0 18px;
}

/* Cards */
.cards {
  display: grid;
  gap: 16px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  background: #ffffff;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* Reviews */
.review-text {
  font-size: 14px;
  color: #111827;
  margin-bottom: 8px;
}

.review-name {
  font-size: 13px;
  color: #6b7280;
}

/* Service Areas */
.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: flex-start;
}

.areas-select label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

#areaSelect,
#suburbSearch {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  margin-bottom: 8px;
  font-size: 14px;
}

.areas-note {
  font-size: 13px;
  color: #6b7280;
}

.areas-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.suburb-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 14px;
}

.suburb-list li {
  margin-bottom: 4px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: flex-start;
}

.contact-info p,
.contact-info li {
  font-size: 14px;
  color: #4b5563;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
}

.contact-list li {
  margin-bottom: 4px;
}

.contact-note {
  font-size: 13px;
  color: #6b7280;
}

/* Contact form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.contact-form .form-row {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  margin: 4px 0 10px;
}

.form-success {
  margin-top: 10px;
  font-size: 13px;
  color: #047857;
}

/* Footer */
.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 18px 0;
}

.footer-inner {
  text-align: center;
  font-size: 13px;
}

.footer-meta {
  margin: 2px 0;
}

.footer-brand {
  margin: 0 0 4px;
  font-weight: 600;
}

.site-footer a {
  color: #e5e7eb;
}

/* Links */
a {
  color: #046f6b;
}

a:hover {
  color: #035653;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .areas-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 8px 12px;
  }

  .main-nav {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 16px 12px;
    gap: 10px;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .cards.three {
    grid-template-columns: minmax(0, 1fr);
  }

  .areas-lists {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1 {
    font-size: 26px;
  }
}


/* Logo above "Why choose Melburnian Pest Control" */
.why-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.why-logo img {
  width: 168px;
  height: 168px;
  background: #ffffff;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
