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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== COLORS ===== */
:root {
  --gold: #c8a415;
  --gold-dark: #a8890f;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --charcoal: #2d2d2d;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --white: #ffffff;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--gold);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--gold-dark);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 120px;
  width: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.header-phone:hover {
  color: var(--green);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
}

/* Inner wrapper to center content and photo together */
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

/* The photo — full height, no cropping, pushed right */
.hero-img {
  display: block;
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 700px;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 15%, rgba(0,0,0,0.8) 30%, black 50%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.4) 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 15%, rgba(0,0,0,0.8) 30%, black 50%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.4) 90%, transparent 100%);
}

/* Overlay to ensure text area stays dark */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right,
    #111 0%,
    #111 20%,
    rgba(17,17,17,0.5) 35%,
    transparent 45%
  );
}

/* Text content — positioned absolutely over the left side */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 40px;
  max-width: 500px;
}

.trust-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-checks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #e0e0e0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.hero-callout {
  font-size: 0.95rem;
  color: #ccc;
}

.hero-callout a {
  color: #fff;
}

.hero-callout a:hover {
  text-decoration: underline;
}

/* ===== PHOTO SECTION ===== */
.photo-section {
  background: var(--gray-light);
  padding: 60px 0;
}

.photo-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.photo-illustration {
  flex-shrink: 0;
}

.phone-illustration {
  width: 160px;
  height: auto;
}

.photo-text h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.photo-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 24px;
  max-width: 480px;
}

/* ===== SERVICES ===== */
.services {
  padding: 70px 0;
}

.services h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--gray-light);
  border-left: 4px solid var(--green);
  padding: 24px;
  border-radius: 6px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--charcoal);
  color: #fff;
  padding: 70px 0;
}

.reviews h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.reviews-sub {
  text-align: center;
  color: #aaa;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.reviews-rating {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-quote {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}

.review-body {
  font-size: 0.92rem;
  color: #bbb;
  line-height: 1.5;
}

.reviews-cta {
  text-align: center;
}

/* ===== CREDIBILITY ===== */
.credibility {
  background: var(--gray-light);
  padding: 50px 0;
}

.cred-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ===== CONTACT ===== */
.contact {
  padding: 70px 0;
}

.contact h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.contact-block {
  margin-bottom: 24px;
}

.contact-block h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 6px;
}

.contact-phone {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}

.contact-phone:hover {
  color: var(--green-dark);
}

.contact-email {
  color: var(--green);
  font-weight: 500;
}

.contact-email:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--gray-light);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form .btn {
  align-self: flex-start;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}

.map-wrapper iframe {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: #aaa;
  padding: 24px 0;
  border-top: 3px solid var(--green);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-phone {
  color: #fff;
  font-weight: 600;
}

.footer-phone:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-img {
    max-height: 300px;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    object-fit: cover;
    object-position: center top;
    order: -1;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    position: relative;
    max-width: 100%;
    padding: 20px 20px 40px;
    order: 1;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-sub br {
    display: none;
  }

  .photo-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .phone-illustration {
    width: 120px;
  }

  .photo-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .photo-text .btn {
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cred-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .logo {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.45rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .contact-phone {
    font-size: 1.3rem;
  }
}