/* ===================================
   WAR HORSE PAINTING — Main Stylesheet
   Mobile-first responsive design
   =================================== */

/* --- CSS Custom Properties --- */
:root {
  --gold: #C9A861;
  --gold-hover: #b8943a;
  --navy: #1a1a2e;
  --cream: #FAF8F5;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 6px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-hover); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: 2.4rem; letter-spacing: 2px; }
h2 { font-size: 2rem; letter-spacing: 1.5px; }
h3 { font-size: 1.5rem; letter-spacing: 1px; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,168,97,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #2a2a4e;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Fix: don't let HTML width/height attributes squish logos */
.header-logo img[width] {
  width: auto !important;
}

.footer-logo img[width] {
  width: auto !important;
}

.main-nav { display: none; }

.main-nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  gap: 0;
}

.main-nav a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}
.main-nav a:hover { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.7em;
}
.dropdown-menu {
  display: none;
  background: var(--white);
  padding-left: 20px;
}
.dropdown-menu a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.header-cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 74px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.7);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.hero .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 14px;
}

.hero p {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Hero with inline background-image (service/area pages) */
.hero-page,
.hero-inner,
.hero-short,
.page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 74px;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.7);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 800px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .gold-line { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 16px; }
.page-hero p { opacity: 0.95; }

/* Homepage hero */
.hero-home {
  min-height: 60vh;
}

/* --- Sections --- */
.section {
  padding: 40px 0;
}
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 { margin-bottom: 10px; }
.section-header .gold-line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 16px;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Value Props Cards --- */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card .icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* --- Service Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 16px;
}
.service-card-body a {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- About Teaser --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-teaser-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.about-teaser-text h2 { margin-bottom: 16px; }
.about-teaser-text p { color: var(--text-light); }

/* --- Service Areas --- */
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.area-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.area-list a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--text-dark);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 40px 20px;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}
.cta-banner .phone-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.cta-banner .phone-number a { color: var(--gold); }
.cta-banner .phone-number a:hover { color: var(--white); }

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col .footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.footer-phone a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-credit {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit img {
  height: 18px;
  width: auto;
  display: inline-block;
  opacity: 0.5;
  filter: brightness(2);
}
.footer-credit a { color: rgba(255,255,255,0.5); }
.footer-credit a:hover { color: var(--gold); }

/* --- Contact / Forms --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
}
.contact-info h3 { color: var(--white); margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
}
.contact-info-item a { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group label .required { color: #d32f2f; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,97,0.15);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--gold); margin-bottom: 12px; }

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.gallery-filters button {
  padding: 8px 20px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item-caption {
  padding: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Before/After Slider — clip-path approach */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* Before image: full-width base layer */
.ba-slider .ba-before {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* After image: overlays the full slider, clipped to show right half */
.ba-slider .ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}
.ba-slider .ba-after img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider handle / divider line */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ba-handle::before {
  content: '\25C0  \25B6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  font-size: 0.7rem;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 6px;
}

/* Labels */
.ba-label {
  position: absolute;
  top: 12px;
  padding: 6px 14px;
  background: rgba(26,26,46,0.75);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border-radius: 3px;
  z-index: 5;
  pointer-events: none;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* --- Service Detail Pages --- */
.service-detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-detail-main h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.service-detail-main ul {
  margin: 16px 0;
  padding-left: 0;
}
.service-detail-main ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
}
.service-detail-main ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.process-steps {
  counter-reset: step;
}
.process-steps li {
  padding: 12px 0 12px 48px !important;
  position: relative;
  counter-increment: step;
}
.process-steps li::before {
  content: counter(step) !important;
  position: absolute;
  left: 0;
  top: 10px;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  font-size: 0.85rem;
}

.service-sidebar {
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  align-self: start;
}
.service-sidebar h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.service-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid #e0ddd8;
}
.service-sidebar ul li a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.93rem;
}
.service-sidebar ul li a:hover { color: var(--gold); }
.service-sidebar .sidebar-cta {
  margin-top: 24px;
  text-align: center;
}

/* --- Service Area Pages --- */
.area-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

.area-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.area-feature .af-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.2rem;
}
.area-feature h4 { margin-bottom: 4px; }
.area-feature p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 0; }

/* --- Landing Page --- */
.lp-header {
  text-align: center;
  padding: 20px;
  background: var(--white);
}
.lp-header img { height: 50px; margin: 0 auto; }

.lp-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}
.lp-hero h1 { color: var(--white); margin-bottom: 20px; }

.lp-value-props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 24px;
}
.lp-value-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.lp-value-prop .check {
  color: var(--gold);
  font-size: 1.2rem;
}

.lp-form-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 24px 20px;
  background: var(--cream);
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.lp-trust-item .trust-icon { color: var(--gold); font-size: 1.2rem; }

.lp-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* --- Map Embed --- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Hide element */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===================================
   TABLET (768px+)
   =================================== */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  .hero h1 { font-size: 3rem; }
  .hero { min-height: 55vh; }
  .hero-home { min-height: 75vh; }
  .hero-content { padding: 40px 20px; }
  .hero p { font-size: 1rem; margin-bottom: 28px; }

  .section { padding: 60px 0; }
  .cta-banner { padding: 50px 20px; }

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

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

  .about-teaser { grid-template-columns: 1fr 1fr; }

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

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

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

  .service-detail-content { grid-template-columns: 1fr 300px; }

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

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

/* ===================================
   DESKTOP (1024px+)
   =================================== */
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.8rem; }

  .hero h1 { font-size: 3.5rem; }
  .hero { min-height: 60vh; }
  .hero-home { min-height: 80vh; }
  .section { padding: 70px 0; }
  .cta-banner { padding: 60px 20px; }

  .hamburger { display: none; }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .main-nav a {
    padding: 8px 16px;
    border-bottom: none;
    font-size: 0.9rem;
  }

  .nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    min-width: 220px;
    padding: 8px 0;
    z-index: 100;
  }
  .nav-dropdown .dropdown-menu a {
    padding: 10px 20px;
    display: block;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }

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

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

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

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

  .area-features { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   LARGE DESKTOP (1280px+)
   =================================== */
@media (min-width: 1280px) {
  .services-grid.five-col {
    grid-template-columns: repeat(5, 1fr);
  }
  .services-grid.five-col .service-card img { height: 160px; }

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

/* --- Loading / Lazy images --- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}
