/* ===================================================
   BENT BRANCH LAND AND HOME SOLUTIONS — Main Stylesheet
   Brand Colors: Burnt Orange #C8521A / #E06420, Dark #2A2A2A
   =================================================== */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', 'Rubik', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- COLORS ---------- */
:root {
  --orange:       #C8521A;
  --orange-light: #E06420;
  --orange-dark:  #9E3E10;
  --dark:         #2a2a2a;
  --dark2:        #3a3a3a;
  --gray:         #555;
  --gray-light:   #f5f5f5;
  --white:        #ffffff;
  --border:       #e0e0e0;
  /* legacy aliases so older rules still work */
  --green:        #C8521A;
  --green-light:  #E06420;
  --green-dark:   #9E3E10;
}

/* ---------- UTILITY ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad   { padding: 80px 0; }
.section-pad-sm{ padding: 50px 0; }

.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-orange { color: var(--orange) !important; }
.text-green  { color: var(--orange) !important; }

.bg-dark      { background: var(--dark); color: #fff; }
.bg-dark2     { background: var(--dark2); color: #fff; }
.bg-orange    { background: var(--orange); color: #fff; }
.bg-green     { background: var(--orange); color: #fff; }
.bg-light     { background: var(--gray-light); }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mt-1 { margin-top: .5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  transition: background .25s, color .25s, transform .15s;
}
.btn:hover { transform: translateY(-2px); }

.btn-green {
  background: var(--orange);
  color: #fff;
}
.btn-green:hover { background: var(--orange-dark); }

.btn-green-light {
  background: var(--orange-light);
  color: #fff;
}
.btn-green-light:hover { background: var(--orange); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-outline-green {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-green:hover { background: var(--orange); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--dark);
}
.btn-white:hover { background: #efe8e3; color: var(--orange); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ---------- SECTION TITLES ---------- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  margin-bottom: .4rem;
}
.section-title .divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 12px auto 16px;
  border-radius: 2px;
}
.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
}
.section-title.light h2 { color: #fff; }
.section-title.light p  { color: rgba(255,255,255,.8); }

/* ===================================================
   NAVIGATION
   =================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  transition: background .3s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

#navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 3px 18px rgba(0,0,0,.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}

.nav-logo img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--dark);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 3px;
  transition: color .25s, background .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: left .25s, right .25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 14px; right: 14px; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 3px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--orange-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================
   HERO / BANNER
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,12,5,.88) 0%, rgba(42,28,14,.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.hero-content h1 span { color: var(--orange-light); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 600px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.page-hero h1 { color: #fff; position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,.7); position: relative; z-index: 1; margin-top: 12px; font-size: 1.1rem; }
.breadcrumb   {
  position: relative; z-index: 1;
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ===================================================
   HOME — INTRO STRIP
   =================================================== */
.intro-strip {
  background: var(--orange);
  padding: 20px 0;
}
.intro-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.intro-strip p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: .02em;
}
.intro-strip i { color: rgba(255,255,255,.7); font-size: 1.4rem; }

/* ===================================================
   HOME — SERVICES OVERVIEW
   =================================================== */
.services-overview {
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(200,82,26,.15);
  transform: translateY(-6px);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card-body p {
  color: var(--gray);
  font-size: .93rem;
  flex: 1;
}
.service-card-footer {
  padding: 0 24px 24px;
}
.service-card-footer .btn {
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  font-size: .82rem;
}

/* ===================================================
   HOME — ABOUT SPLIT
   =================================================== */
.about-split {
  background: var(--gray-light);
  padding: 90px 0;
}
.about-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,.18);
}
.about-split-img img {
  width: 100%; height: 480px;
  object-fit: cover;
}
.about-split-text h2 { margin-bottom: 16px; }
.about-split-text p  { color: var(--gray); margin-bottom: 16px; font-size: 1rem; }
.about-split-text .btn { margin-top: 8px; }

/* ===================================================
   HOME — QUALITY BANNER
   =================================================== */
.quality-banner {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quality-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/no-job-too-big.jpg') center/cover no-repeat;
  opacity: .15;
}
.quality-banner .container { position: relative; z-index: 1; }
.quality-banner h2 { color: #fff; margin-bottom: 20px; }
.quality-banner p  { color: rgba(255,255,255,.8); max-width: 700px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ===================================================
   HOME — TESTIMONIALS
   =================================================== */
.testimonials { padding: 90px 0; background: var(--gray-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  color: var(--orange-light);
  opacity: .25;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card .stars {
  display: flex; gap: 3px;
  margin-bottom: 12px;
}
.testimonial-card .stars i { color: #f5a623; font-size: .9rem; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--gray);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card .reviewer {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-card .reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card .reviewer-name {
  font-weight: 700; font-size: .95rem; color: var(--dark);
}
.testimonial-card .reviewer-sub {
  font-size: .8rem; color: var(--gray);
}

/* ===================================================
   HOME — CTA BAND
   =================================================== */
.cta-band {
  background: var(--orange);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 28px; }

/* ===================================================
   SERVICES PAGE
   =================================================== */
.services-list { padding: 80px 0; }

.services-list-intro {
  text-align: center;
  margin-bottom: 60px;
}
.services-list-intro .service-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 20px;
}
.service-tag {
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .85rem;
  color: var(--gray);
  display: flex; align-items: center; gap: 6px;
}
.service-tag i { color: var(--orange); font-size: .8rem; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,.15);
}
.service-detail-img img {
  width: 100%; height: 380px;
  object-fit: cover;
}

.service-detail-text h3 {
  font-size: 1.8rem; margin-bottom: 14px;
}
.service-detail-text p  { color: var(--gray); margin-bottom: 14px; line-height: 1.75; }
.service-detail-text .btn { margin-top: 8px; }

.no-job-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.no-job-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/no-job-too-big.jpg') center/cover no-repeat;
  opacity: .2;
}
.no-job-section .container { position: relative; z-index: 1; }
.no-job-section h2 { color: #fff; margin-bottom: 16px; }
.no-job-section p  { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 28px; font-size: 1.05rem; }

.service-area {
  padding: 70px 0;
  text-align: center;
  background: var(--gray-light);
}
.service-area h2 { margin-bottom: 16px; }
.service-area p  { max-width: 640px; margin: 0 auto 28px; color: var(--gray); font-size: 1.05rem; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-intro {
  padding: 90px 0;
}
.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,.15);
}
.about-intro-img img {
  width: 100%; height: 460px;
  object-fit: cover;
}
.about-intro-text h2 { margin-bottom: 16px; }
.about-intro-text p  { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }

.about-values {
  padding: 80px 0;
  background: var(--gray-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.value-card {
  background: #fff;
  border-radius: 6px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border-top: 4px solid var(--orange);
}
.value-card i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.value-card h4 { margin-bottom: 10px; color: var(--dark); }
.value-card p  { color: var(--gray); font-size: .92rem; }

.about-owner {
  padding: 90px 0;
}
.about-owner .container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.owner-photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,.15);
  max-height: 580px;
}
.owner-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
}
.owner-bio h2 { margin-bottom: 8px; }
.owner-bio .owner-title { color: var(--green); font-weight: 600; font-size: 1.1rem; margin-bottom: 20px; }
.owner-bio p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; }

/* ===================================================
   GALLERY PAGE
   =================================================== */
.gallery-grid {
  padding: 80px 0;
}

.gallery-grid-inner {
  columns: 3;
  column-gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i {
  color: #fff; font-size: 2rem;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 10px 60px rgba(0,0,0,.8);
}
#lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; background: none; border: none;
  transition: opacity .2s;
}
#lightbox-close:hover { opacity: .6; }
#lightbox-prev, #lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem;
  cursor: pointer; background: rgba(0,0,0,.4);
  border: none; padding: 14px 18px; border-radius: 50%;
  transition: background .2s;
}
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(0,0,0,.8); }

/* ===================================================
   CONTACT / GET IN TOUCH PAGE
   =================================================== */
.contact-section { padding: 80px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  border-radius: 6px;
  padding: 44px 36px;
  color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card .tagline { color: var(--green-light); font-size: 1rem; margin-bottom: 28px; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon i { color: #fff; font-size: 1.1rem; }
.contact-info-item .info-text strong { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.contact-info-item .info-text a,
.contact-info-item .info-text span { color: #fff; font-size: .97rem; }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px 40px;
}
.contact-form-wrap h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: #fafafa;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

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

.form-note { font-size: .8rem; color: var(--gray); margin-top: 10px; text-align: center; }

.success-msg {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 18px 20px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}

.footer-main {
  padding: 60px 0 40px;
}
.footer-main .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 70px; }
.footer-brand p { font-size: .92rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a i { color: var(--orange-light); font-size: .75rem; }
.footer-col ul li a:hover { color: var(--orange-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact-item i { color: var(--orange-light); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-item a:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }

/* ===================================================
   PRELOADER
   =================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s, visibility .4s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.preloader-inner img { width: 200px; animation: pulse 1.5s ease-in-out infinite; }
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--orange-light);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.5; } }

/* ===================================================
   ANIMATIONS / AOS-like
   =================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"]  { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ===================================================
   LOGO WATERMARK SYSTEM
   =================================================== */

/* Base watermark wrapper — sits behind all content */
.wm-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Make sure direct children sit above watermark */
.wm-section { position: relative; }
.wm-section > *:not(.wm-wrap) { position: relative; z-index: 1; }

/* The watermark image itself */
.wm {
  position: absolute;
  display: block;
  background: url('../images/logo-bent-branch.png') center/contain no-repeat;
}

/* ── HERO: large logo bottom-right corner, white ghost ── */
.wm-hero {
  width: 55vw;
  max-width: 760px;
  aspect-ratio: 3 / 1;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(-4deg);
  opacity: .07;
  filter: brightness(0) invert(1);
}

/* ── LIGHT SECTION (white/gray bg): very faint warm tint ── */
.wm-light {
  width: 65%;
  max-width: 780px;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  filter: sepia(1) saturate(2) hue-rotate(5deg) brightness(0.55);
}

/* ── DARK SECTION (dark bg, quality banner, CTA): orange ghost ── */
.wm-dark {
  width: 75%;
  max-width: 880px;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .09;
  filter: sepia(1) saturate(4) hue-rotate(5deg) brightness(1.2);
}

/* ── TESTIMONIALS: centered, slightly rotated ── */
.wm-testimonials {
  width: 60%;
  max-width: 680px;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  opacity: .05;
  filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(0.65);
}

/* ── FOOTER: huge ghost behind content ── */
.wm-footer {
  width: 85%;
  max-width: 980px;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .06;
  filter: brightness(0) invert(1);
}

/* ── PAGE HERO (inner pages): centered, white ── */
.wm-page-hero {
  width: 60%;
  max-width: 680px;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .10;
  filter: brightness(0) invert(1);
}

/* ── ABOUT-SPLIT (light gray): centered ghost ── */
.wm-split {
  width: 60%;
  max-width: 680px;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  opacity: .05;
  filter: sepia(1) saturate(2) hue-rotate(5deg) brightness(0.6);
}

/* ── CONTACT INFO CARD: faint on dark, perfectly centered ── */
.wm-contact {
  width: 100%;
  aspect-ratio: 3 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .08;
  filter: brightness(0) invert(1);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .about-split .container { grid-template-columns: 1fr; gap: 40px; }
  .about-split-img img { height: 360px; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-img img { height: 300px; }
  .about-intro .container { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-img img { height: 340px; }
  .about-owner .container { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main .container { grid-template-columns: 1fr 1fr; }
  .gallery-grid-inner { columns: 2; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    flex-direction: column;
    position: absolute; top: 80px; left: 0; right: 0;
    background: #ffffff;
    padding: 16px 0 24px;
    gap: 2px;
    border-top: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 28px; border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 8px 28px 0; padding: 12px 20px !important; }
  .nav-toggle { display: flex; }

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

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

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-card  { padding: 28px 20px; }

  .footer-main .container { grid-template-columns: 1fr; }
  .gallery-grid-inner { columns: 2; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid-inner { columns: 1; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .section-pad { padding: 60px 0; }
}
