/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* ============================================
   Jewel Creek Tree Service — Styles
   ============================================ */

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

:root {
  --green-dark: #0a2e0a;
  --green-mid: #145214;
  --green-light: #1e6e1e;
  --black: #0c0c0c;
  --dark-bg: #141414;
  --dark-card: #1c1c1c;
  --tan: #c8a96e;
  --tan-light: #dbc393;
  --tan-dark: #a8884e;
  --white: #ffffff;
  --off-white: #f0ede7;
  --gray-light: #c5c0b8;
  --gray: #777;
  --red-accent: #8b2020;
  --font-heading: 'Oswald', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--off-white);
  background: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--tan);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--tan-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

/* --- Emergency Banner --- */
.emergency-banner {
  background: var(--green-dark);
  text-align: center;
  padding: 8px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  animation: bannerPulse 2s ease-in-out 1;
}

.emergency-banner a {
  color: var(--tan);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emergency-banner a strong {
  color: var(--white);
}

.emergency-banner .banner-mobile {
  display: none;
}

@keyframes bannerPulse {
  0%, 100% { background: var(--green-dark); }
  50% { background: #0d3a0d; }
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 46, 10, 0.97) 0%, rgba(10, 46, 10, 0.92) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--tan);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--tan);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--tan);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tan);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-phone svg {
  width: 20px;
  height: 20px;
  fill: var(--tan);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.45) 70%,
    rgba(10, 46, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 20px 80px;
  max-width: 900px;
}

.hero-logo {
  max-width: 420px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border: 2px solid var(--tan);
  padding: 6px 20px;
  margin-bottom: 24px;
  border-radius: 3px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
  letter-spacing: 0.06em;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--tan);
  margin-bottom: 12px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.hero .sub-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 42px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--tan);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--tan-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--tan);
}

.btn-outline:hover {
  background: var(--tan);
  color: var(--black);
}

/* --- Section Styles --- */
section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark-bg);
}

.section-green {
  background: var(--green-dark);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--tan);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
  font-weight: 400;
}

/* --- Divider Line --- */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--tan);
  margin: 0 auto 50px;
}

/* --- Intro / About --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--white);
}

.intro-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--tan);
  margin-top: 16px;
}

.intro-text p {
  margin-bottom: 18px;
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-text .highlight {
  color: var(--tan);
  font-weight: 700;
}

.intro-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  position: relative;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 8px;
  pointer-events: none;
}

.intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* --- Services Cards (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-bg) 100%);
  border: 1px solid rgba(200, 169, 110, 0.12);
  border-radius: 8px;
  padding: 45px 32px 40px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tan);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(200, 169, 110, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  fill: var(--tan);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.service-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card .btn {
  font-size: 0.85rem;
  padding: 10px 28px;
}

/* --- Photo Strip --- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.photo-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
  filter: brightness(0.85);
}

.photo-strip img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tan), transparent);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tan), transparent);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--white);
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 30px;
}

.cta-phones {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--tan);
  letter-spacing: 0.02em;
}

.cta-phone svg {
  width: 26px;
  height: 26px;
  fill: var(--tan);
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header .rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonials-header .rating-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}

.testimonials-header .rating-stars {
  display: flex;
  gap: 2px;
}

.testimonials-header .rating-stars svg {
  width: 22px;
  height: 22px;
  fill: #f4b400;
}

.testimonials-header .rating-count {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--tan);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #f4b400;
}

.testimonial-text {
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.testimonial-author-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tan);
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonials-footer {
  text-align: center;
  margin-top: 40px;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tan);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.google-review-link:hover {
  color: var(--tan-light);
}

.google-review-link svg {
  width: 20px;
  height: 20px;
}

/* --- Services Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.service-detail-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--tan);
  margin-top: 16px;
}

.service-detail-text p {
  color: var(--gray-light);
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.service-detail-text ul {
  list-style: disc;
  margin-bottom: 28px;
  padding-left: 24px;
}

.service-detail-text ul li {
  padding: 6px 0;
  color: var(--gray-light);
  font-size: 1.02rem;
}

.service-detail-text ul li::marker {
  color: var(--gold);
}

.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  position: relative;
}

.service-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 169, 110, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.service-detail-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--tan);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  border: none;
  padding: 20px 16px;
  transition: color 0.2s, background 0.2s;
  z-index: 2001;
  border-radius: 4px;
}

.lightbox-nav:hover {
  color: var(--white);
  background: rgba(200, 169, 110, 0.2);
}

.lightbox-prev {
  left: 15px;
}

.lightbox-next {
  right: 15px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--white);
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--tan);
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--dark-card);
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 110, 0.1);
  transition: border-color 0.3s;
}

.contact-item:hover {
  border-color: rgba(200, 169, 110, 0.25);
}

.contact-item svg {
  width: 26px;
  height: 26px;
  fill: var(--tan);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h3 {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.contact-item p,
.contact-item a {
  color: var(--off-white);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--tan);
}

.service-area {
  margin-top: 10px;
  padding: 28px;
  background: var(--green-dark);
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.service-area h3 {
  font-size: 1rem;
  color: var(--tan);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.service-area p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact Form */
.contact-form h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--white);
}

.contact-form h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--tan);
  margin-top: 16px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tan);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-card);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8a96e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--dark-card);
  color: var(--white);
}

/* File Upload */
.file-upload {
  border: 2px dashed rgba(200, 169, 110, 0.3);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  background: var(--dark-card);
}

.file-upload:hover,
.file-upload.drag-over {
  border-color: var(--tan);
  background: rgba(200, 169, 110, 0.05);
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-icon {
  margin-bottom: 10px;
}

.file-upload-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.file-upload-hint {
  color: var(--gray);
  font-size: 0.8rem;
}

.file-list {
  margin-top: 12px;
  text-align: left;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(200, 169, 110, 0.08);
  border-radius: 4px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.file-item button {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 4px;
  transition: color 0.2s;
}

.file-item button:hover {
  color: var(--tan);
}

.form-submit {
  margin-top: 12px;
}

.form-submit .btn {
  width: 100%;
  font-size: 1.15rem;
  padding: 16px;
}

/* --- Page Header (non-home pages) --- */
.page-header {
  padding: 186px 20px 70px;
  text-align: center;
  background-color: var(--green-dark);
  background-size: cover;
  background-position: center top;
  border-bottom: 3px solid var(--tan);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 59, 13, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.page-header p {
  color: var(--tan);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}

/* --- Footer --- */
.site-footer {
  background: var(--green-dark);
  border-top: 3px solid var(--tan);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 45px;
}

.footer-brand img {
  height: 65px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--tan);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-light);
  font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--tan);
  padding-left: 4px;
}

.footer-contact p,
.footer-contact a {
  color: var(--gray-light);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--tan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .intro-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .trust-badges {
    gap: 24px;
  }

  .sticky-cta-text {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-strip img {
    height: 240px;
  }

  section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .emergency-banner {
    padding: 6px 8px;
  }

  .emergency-banner a {
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .emergency-banner .banner-full {
    display: none;
  }

  .emergency-banner .banner-mobile {
    display: inline;
  }

  .site-header {
    top: 32px;
  }

  .sticky-cta-text {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .nav-links,
  .nav-phone-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 115px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 46, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .mobile-menu a:hover {
    color: var(--tan);
  }

  .mobile-menu .mobile-phone {
    color: var(--tan);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 15px;
    padding: 12px 24px;
    border: 2px solid var(--tan);
    border-radius: 4px;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-content {
    padding: 120px 20px 60px;
  }

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

  .gallery-item img {
    height: 280px;
  }

  .lightbox-nav {
    font-size: 2rem;
    padding: 14px 10px;
  }

  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  section {
    padding: 60px 0;
  }

  .service-detail-image img,
  .intro-image img {
    height: 300px;
  }

  .contact-item {
    padding: 16px;
  }
}

@media (min-width: 769px) {
  .sticky-cta-text {
    display: block;
  }
}

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-badge svg {
  width: 32px;
  height: 32px;
  fill: var(--tan);
  opacity: 0.85;
}

.trust-badge span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- Stat Counters --- */
.stats-section {
  padding: 70px 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  font-size: 2rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 46, 10, 0.97);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--tan);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: bottom 0.4s ease;
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta.dismissed {
  bottom: -80px !important;
}

.sticky-cta-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: none;
}

.sticky-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.sticky-cta-phone {
  color: var(--tan);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sticky-cta-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.sticky-cta-close:hover {
  color: var(--white);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 40px 24px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--tan);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--tan);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '\2212';
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 24px 0;
}

.faq-answer p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Blog Styles --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--dark-card);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-content .read-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Blog Post Content --- */
.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--white);
}

.blog-post-content h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--tan);
  margin-top: 12px;
}

.blog-post-content p {
  margin-bottom: 18px;
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.8;
}

.blog-post-content ul {
  margin: 0 0 20px 24px;
  color: var(--off-white);
}

.blog-post-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.blog-cta {
  margin-top: 50px;
  padding: 40px;
  background: var(--dark-card);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 8px;
  text-align: center;
}

.blog-cta h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.blog-cta p {
  color: var(--gray-light);
  margin-bottom: 20px;
}

.blog-back {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Privacy Page --- */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--white);
}

.privacy-content p {
  margin-bottom: 16px;
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.7;
}

.privacy-content ul {
  margin: 0 0 18px 24px;
  color: var(--off-white);
}

.privacy-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip img {
    height: 180px;
  }

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

  .hero-logo {
    max-width: 220px;
  }
}

/* ============================================
   Chatbot Widget
   ============================================ */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  background: var(--tan);
}

.chatbot-toggle svg {
  width: 28px;
  height: 28px;
  fill: var(--green-dark);
}

.chatbot-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  max-height: 500px;
  background: var(--dark-bg);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 12px;
  z-index: 999;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  overflow: hidden;
}

.chatbot-window.open {
  display: flex;
}

.chatbot-header {
  background: var(--green-dark);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.chatbot-header-title {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--tan);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--white);
}

.chat-msg.bot {
  background: rgba(13, 59, 13, 0.6);
  border: 1px solid rgba(200, 169, 110, 0.15);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--gold);
  color: var(--green-dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(200, 169, 110, 0.3);
  background: rgba(0,0,0,0.2);
}

.chatbot-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 20px;
  padding: 8px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.chatbot-input-row input::placeholder {
  color: rgba(255,255,255,0.4);
}

.chatbot-input-row input:focus {
  border-color: var(--gold);
}

.chatbot-input-row button {
  background: var(--gold);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.chatbot-input-row button:hover {
  background: var(--tan);
}

.chatbot-input-row button svg {
  width: 18px;
  height: 18px;
  fill: var(--green-dark);
}

.typing-dots {
  display: inline-flex;
  gap: 4px;
  padding: 4px 0;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-options {
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  max-height: 160px;
  overflow-y: auto;
}

.chatbot-option {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.chatbot-option:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Horn Call Button */
.horn-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-top: 6px;
}

.horn-call-btn:hover {
  transform: scale(1.05);
  background: var(--tan);
}

.horn-call-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--green-dark);
}

/* Call Confirm Modal */
.call-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.call-confirm-overlay.active {
  display: flex;
}

.call-confirm-box {
  background: var(--dark-bg);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  max-width: 380px;
  width: 90%;
}

.call-confirm-box h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.call-confirm-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.call-confirm-box .confirm-number {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-confirm-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.call-confirm-buttons button {
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.call-confirm-yes {
  background: var(--gold);
  color: var(--green-dark);
}

.call-confirm-yes:hover {
  background: var(--tan);
}

.call-confirm-no {
  background: transparent;
  border: 1px solid var(--tan) !important;
  color: var(--tan);
}

.call-confirm-no:hover {
  background: rgba(200, 169, 110, 0.1);
}

@media (max-width: 768px) {
  .chatbot-window {
    right: 12px;
    left: 12px;
    bottom: 90px;
    width: auto;
  }

  .chatbot-toggle {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}
