/* ------------------------------
   GLOBAL RESET & BASE STYLES
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ------------------------------
   HEADER (Sticky)
--------------------------------*/
.header {
  position: sticky;
  top: 0;
  background: #0a1a33; /* unified navy */
  padding: 12px 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Mobile sticky correction */
@media (max-width: 768px) {
  .header {
    position: sticky;
    top: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* iPhone safe-area fix */
  @supports (padding-top: env(safe-area-inset-top)) {
    .header {
      padding-top: env(safe-area-inset-top);
    }
  }
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

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

.logo img {
  height: 60px; /* larger logo */
}

.logo span {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s;
}

.nav a:hover {
  color: #4da3ff;
}

/* ⭐ NEW — CALL NOW BUTTON */
.call-now-btn {
  background: #ffffff;
  color: #0a1a33;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  margin-left: 20px;
  white-space: nowrap;
  border: 2px solid #d4a017; /* gold outline */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* subtle lift */
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* spacing for phone icon */
}

.call-now-btn:hover {
  background: #fff7d6; /* soft gold tint */
  border-color: #e6b824;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

/* Mobile header layout */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .call-now-btn {
    padding: 10px 16px;
    font-size: 15px;
    margin-left: 0;
  }
}

/* ------------------------------
   HERO SECTION (Improved Centering)
--------------------------------*/
.hero {
  background: #0a1a33;
  color: #fff;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  text-align: left;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: normal;
}

.hero p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background: #4da3ff;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.2s;
}

.cta-button:hover {
  background: #1e7cd8;
}

.hero-icon img {
  height: 180px;
}

/* ------------------------------
   SECTION HEADERS
--------------------------------*/
section h3 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  color: #0a1a33;
}

/* ------------------------------
   ABOUT SECTION
--------------------------------*/
.about {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about p {
  margin-bottom: 25px;
}

.about-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.about-icons img {
  height: 70px;
}

/* ------------------------------
   SERVICES SECTION
--------------------------------*/
.services {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  height: 70px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a1a33;
}

/* ------------------------------
   SERVICE AREAS
--------------------------------*/
.areas {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.suburb-grid {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.suburb-grid li {
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ------------------------------
   CONTACT SECTION
--------------------------------*/
.contact {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.contact p {
  margin-bottom: 15px;
}

.abn {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.footer {
  background: #0a1a33;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
  font-size: 15px;
}

/* ------------------------------
   ANCHOR OFFSET FIX
--------------------------------*/
:target {
  scroll-margin-top: 90px; /* offset for sticky header */
}

/* ------------------------------
   MOBILE RESPONSIVE
--------------------------------*/
@media (max-width: 768px) {
  .nav a {
    margin: 0 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .hero-icon img {
    margin-top: 30px;
  }
}
