:root {
  --red: #a42616;
  --green: #3d734f;
  --black: #111;
  --white: #fff;
  --light: #f5f7fa;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  color: var(--black);
  background: white;
  line-height: 1.6;
}

/* TOP NAV */
.top-nav {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  background: white;
  padding: 20px 42px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10;
}

.top-nav a {
  text-decoration: none;
  color: var(--black);
  white-space: nowrap;
}

.nav-phone {
  color: var(--red);
}

/* STICKY CALL */
.call-now-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  z-index: 1000;
  text-decoration: none;
}

.call-now-sticky span {
  text-decoration: underline;
}

.call-now-sticky .icon {
  color: white;
  text-decoration: none;
  margin-right: 6px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(61,115,79,0.92), rgba(61,115,79,0.92)),
              url("hero.jpg") center / cover no-repeat;
  padding: 160px 20px 200px;
  color: white;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: center;
}

.hero-logo {
  max-width: 180px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin-bottom: 20px;
}

.hero p {
  max-width: 520px;
  margin-bottom: 36px;
  font-size: 1.1rem;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn {
  padding: 22px 46px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

/* CALLOUTS */
.hero-right {
  display: grid;
  gap: 18px;
}

.callout {
  display: flex;
  align-items: center;              
  gap: 18px;
  padding: 26px;
  background: rgba(255,255,255,0.97);
  border-left: 12px solid var(--red);
  border-radius: 10px;
  font-size: 1.35rem;               
  font-weight: 800;
  line-height: 1.25;                
  color: var(--black);
}

.callout img {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}

/* TORN PAGE TRANSITION */
.hero-tear {
  position: absolute;
  bottom: -910px; /* desktop tuned */
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-tear img {
  width: 100%;
  height: auto;
  display: block;
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: auto;
}

.section-inner.narrow {
  max-width: 800px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* SERVICES */
.services {
  background: var(--light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 26px 24px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 16px;

  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.25;

  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.service-card img {
  width: 50px;          /* matches hero callouts */
  height: auto;
  flex-shrink: 0;
}

/* FAQ */
.faq-item {
  margin-bottom: 24px;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

/* ENQUIRY FORM */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}
input,
textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.05rem;
  border-radius: 10px;
  border: 1px solid #ccc;
}

textarea {
  min-height: 160px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 32px 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .call-now-sticky {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .call-now-sticky.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .top-nav {
    display: none;
  }
  .hero {
    padding: 50px 20px 160px; /* less top padding */
  }
  .hero h1 {
    font-size: 1.5rem;      /* smaller, more compact */
    line-height: 1.15;      /* tighter lines */
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-tear {
    bottom: -160px;
  }
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}



