/* ============================================
   2911 LANDWORKS – styles.css
   ============================================ */

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

:root {
  --gold:       #E8A020;
  --gold-light: #F5B83D;
  --gold-dark:  #C27D0A;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1A1A1A;
  --dark3:      #222222;
  --gray:       #555555;
  --light-gray: #F2EDE6;
  --white:      #FFFFFF;
  --text-muted: #999999;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.arrow     { font-size: 16px; }


/* ============================================
   NAVBAR
   ============================================ */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, transparent 100%);
}

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

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links .has-dropdown {
  position: relative;
}

.nav-links .has-dropdown > a::after {
  content: '';
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold);
  padding: 10px 16px;
  text-decoration: none;
}

.nav-cta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

.nav-cta-number {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-cta-phone-icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-phone-svg {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-free-est {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  text-align: right;
  margin-top: 4px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('HERO.png');
  background-size: cover;
  background-position: center top;
  transform: scale(1.03);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 760px;
  animation: heroFadeUp 1s ease-out 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 400;
  line-height: 0.90;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 14px;
  text-shadow:
    3px 3px 0px rgba(0,0,0,0.8),
    6px 6px 0px rgba(0,0,0,0.4),
    0 0 40px rgba(0,0,0,0.6),
    2px 2px 8px rgba(0,0,0,0.9);
  -webkit-text-stroke: 1px rgba(0,0,0,0.3);
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.7));
}

.hero-tagline .white-line { color: var(--white); }
.hero-tagline .gold-line  { color: var(--gold); }

.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

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


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 26px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-dark:hover { background: #333; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 26px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark2);
  border-top: 3px solid var(--gold);
  padding: 36px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  color: var(--gold);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 5px;
}

.trust-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================
   SHARED SECTION ELEMENTS
   ============================================ */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 20px;
}

.section-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--dark);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.services-section .section-heading { color: var(--white); }
.services-section .section-body    { color: rgba(255,255,255,0.65); }

/* Service photo strip */
.service-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 20px;
  background: var(--black);
}

.service-photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s, transform 0.3s;
}

.service-photos img:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

/* Service cards row */
.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.service-card {
  background: var(--dark2);
  padding: 20px 14px;
  text-align: center;
}

.service-card-icon {
  color: var(--gold);
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  display: block;
}

.service-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section {
  background: var(--dark);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.why-content .section-label   { color: var(--gold); }
.why-content .section-heading {
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
}

.why-headline-gold { color: var(--gold); }

.why-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 30px 0;
  list-style: none;
}

.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.check-icon {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--gold);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 260px 1fr 50px;
  gap: 40px;
  align-items: center;
}

.testimonials-left .section-label   { color: rgba(0,0,0,0.55); }
.testimonials-left .section-heading { color: var(--black); font-size: 28px; }

.stars {
  display: flex;
  gap: 4px;
  margin-top: 14px;
}

.stars svg {
  width: 22px;
  height: 22px;
  color: var(--black);
}

.testimonial-quote {
  position: relative;
}

.quote-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 120px;
  line-height: 0.7;
  color: rgba(0,0,0,0.15);
  font-weight: 700;
  position: absolute;
  top: -10px;
  left: -10px;
}

.quote-text {
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  padding-left: 40px;
  font-style: italic;
  font-weight: 500;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-left: 40px;
}

.quote-author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.quote-author-loc {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
}

.quote-sep { color: rgba(0,0,0,0.35); }

.testimonial-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0,0,0,0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--black);
  transition: background 0.2s;
}

.nav-arrow:hover { background: rgba(0,0,0,0.12); }


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--black);
  border-top: 3px solid var(--gold);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

.cta-banner-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  word-break: break-word;
}

.cta-banner-heading em {
  color: var(--gold);
  font-style: normal;
}

.cta-banner-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.cta-phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--gold);
  padding: 16px 24px;
  text-decoration: none;
}

.cta-phone-icon {
  color: var(--gold);
  font-size: 26px;
}

.cta-phone-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
}

.cta-btn-large {
  padding: 20px 30px;
  font-size: 13px;
}


/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark2);
  padding: 60px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.social-links a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Navbar social icons */
.nav-social-links {
  display: flex;
  gap: 14px;
  list-style: none;
  align-items: center;
  margin-right: 16px;
}

.nav-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-social-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-social-links a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.nav-right-top {
  display: flex;
  align-items: center;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
}


/* ============================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  nav                   { padding: 18px 24px; }
  .hero-content         { padding: 0 30px 60px; }
  .trust-bar            { grid-template-columns: repeat(2, 1fr); padding: 36px 30px; }
  .services-section     { grid-template-columns: 1fr; padding: 60px 30px; }
  .service-photos       { grid-template-columns: repeat(5, 1fr); }
  .service-cards        { grid-template-columns: repeat(5, 1fr); }
  .why-section          { grid-template-columns: 1fr; padding: 60px 30px; }
  .why-image-badge      { bottom: 10px; right: 10px; }
  .testimonials-section { grid-template-columns: 1fr; padding: 50px 30px; }
  .cta-banner           { grid-template-columns: 1fr; text-align: center; }
  .cta-phone-block      { justify-content: center; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   RESPONSIVE – MOBILE (≤680px)
   ============================================ */
@media (max-width: 680px) {
  .nav-links        { display: none; }
  .hero-tagline     { font-size: 42px; }
  .trust-bar        { grid-template-columns: 1fr; padding: 30px 20px; }
  .trust-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; }
  .trust-item:last-child { border-bottom: none; }
  .service-photos   { grid-template-columns: repeat(3, 1fr); }
  .service-cards    { grid-template-columns: repeat(2, 1fr); }
  .why-checklist    { grid-template-columns: 1fr; }
  .cta-banner       { padding: 40px 20px; }
  .footer-grid      { grid-template-columns: 1fr; }
  footer            { padding: 40px 20px 20px; }
}


/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
  background: var(--dark);
  padding: 90px 60px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 18px;
}

.contact-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value:hover { color: var(--gold); }

/* Form Card */
.form-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--gold);
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 7px;
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(232,160,32,0.05);
}

.form-group select {
  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='%23E8A020' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

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

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

/* SMS Consent */
.form-sms-consent {
  margin-bottom: 22px;
}

.sms-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.sms-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.sms-text {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 2.5px;
  border: none;
  cursor: pointer;
}

.form-success {
  display: none;
  margin-top: 16px;
  background: rgba(232,160,32,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-align: center;
}


/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 26px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(232,160,32,0.45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  background: var(--gold-light);
}


/* ============================================
   FOOTER BOTTOM — DUAL ROW
   ============================================ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-right a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-right a:hover { color: var(--gold-light); }


/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
  .contact-section { padding: 70px 30px; }
  .contact-inner   { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .form-row        { grid-template-columns: 1fr; }
  .form-card       { padding: 28px 20px; }
  .contact-section { padding: 50px 20px; }
  .sticky-cta      { bottom: 16px; right: 16px; font-size: 12px; padding: 14px 20px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
}


/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark2);
  border-top: 2px solid var(--gold);
  border-bottom: none;
  list-style: none;
  min-width: 180px;
  z-index: 200;
  padding: 8px 0;
  padding-top: 10px;
}

.nav-links .has-dropdown:hover .dropdown {
  display: block;
}

.nav-links .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-links .dropdown li a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}


/* ============================================
   HAMBURGER BUTTON
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ============================================
   MOBILE NAV
   ============================================ */
@media (max-width: 900px) {

  nav {
    flex-wrap: wrap;
    padding: 16px 20px;
    position: fixed;
    background: rgba(10,10,10,0.97);
  }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: 10px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 12px;
  }

  .nav-links.mobile-open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links .dropdown {
    position: static;
    border-top: none;
    border-left: 2px solid var(--gold);
    margin-left: 12px;
    background: transparent;
    padding: 0;
    display: block;
  }

  .nav-links .dropdown li a {
    padding: 8px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
  }

  .nav-right {
    display: none;
  }

  /* Show phone number only on mobile in a slim bar above nav */
  .mobile-phone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px;
    text-decoration: none;
    width: 100%;
  }

  .hero { padding-top: 70px; }
  .hero-content { padding: 0 20px 50px; }
}

@media (max-width: 900px) {
  .nav-logo img { height: 70px; }
}

/* Hide mobile phone bar on desktop */
.mobile-phone-bar {
  display: none;
}


/* ============================================
   MOBILE OVERFLOW & LAYOUT FIXES
   ============================================ */

/* Prevent ANY element from causing horizontal scroll */
*, *::before, *::after {
  max-width: 100%;
}

@media (max-width: 900px) {

  /* ── General ── */
  section, div, footer, nav {
    max-width: 100vw;
  }

  /* ── Hero ── */
  .hero-tagline {
    font-size: clamp(44px, 11vw, 72px);
    letter-spacing: 1px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  /* ── Trust bar ── */
  .trust-bar {
    grid-template-columns: 1fr 1fr;
    padding: 30px 20px;
    gap: 16px;
  }

  .trust-item {
    border-right: none;
    padding: 0;
  }

  /* ── Services ── */
  .services-section {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

  .service-photos {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* ── Why section ── */
  .why-section {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

  .why-image-badge {
    bottom: 10px;
    right: 10px;
  }

  .why-checklist {
    grid-template-columns: 1fr;
  }

  /* ── Contact form ── */
  .contact-section {
    padding: 50px 20px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 16px;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    text-align: center;
    gap: 20px;
  }

  .cta-phone-block {
    justify-content: center;
    width: 100%;
  }

  .cta-btn-large {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  footer {
    padding: 40px 20px 20px;
  }

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

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

  /* ── Sticky CTA ── */
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: calc(100% - 32px);
    justify-content: center;
    font-size: 13px;
    padding: 16px;
  }
}

@media (max-width: 480px) {

  .trust-bar {
    grid-template-columns: 1fr;
  }

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

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-tagline {
    font-size: clamp(38px, 10vw, 56px);
  }

  .why-section {
    padding: 40px 16px;
  }

  .section-heading {
    font-size: 32px;
  }
}


/* ============================================
   CTA BANNER MOBILE FIX
   ============================================ */
@media (max-width: 900px) {
  .cta-phone-number {
    font-size: 20px;
    white-space: nowrap;
  }

  .cta-phone-block {
    padding: 12px 18px;
    gap: 10px;
  }

  .cta-phone-icon {
    width: 20px;
    height: 20px;
  }
}


/* ============================================
   MOBILE SOCIAL ICONS IN HEADER (next to hamburger)
   ============================================ */
.nav-social-mobile {
  display: none;
}

@media (max-width: 900px) {
  .mobile-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav-social-mobile {
    display: flex;
    gap: 14px;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .nav-social-mobile a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-social-mobile a:hover { color: var(--gold); }

  .nav-social-mobile a svg {
    width: 20px;
    height: 20px;
  }
}
