/* =========================================
   REIMAGINE DATA – MAIN STYLESHEET
   ========================================= */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* === VARIABLES === */
:root {
  --primary:    #0f75bc;
  --primary-dk: #0a5a8e;
  --dark:       #333333;
  --text:       #666666;
  --light-bg:   #fafafa;
  --white:      #ffffff;
  --font-body:  'Open Sans', sans-serif;
  --font-head:  'Work Sans', sans-serif;
  --font-alt:   'Roboto', sans-serif;
  --shadow-sm:  0 4px 20px rgba(0,0,0,.08);
  --shadow-md:  0 10px 30px rgba(0,0,0,.12);
  --transition: all 0.35s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 30px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--primary); color: white; }

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

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 10px rgba(0,0,0,.06);
  transition: padding .3s ease, box-shadow .3s ease;
  padding: 12px 0;
}
.navbar.shrink { padding: 6px 0; box-shadow: 0 2px 15px rgba(0,0,0,.1); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar-brand img { height: 80px; width: auto; }
.navbar.shrink .navbar-brand img { height: 64px; }
.navbar-brand:hover { opacity: .85; }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #000;
  transition: color .3s;
  white-space: nowrap;
  letter-spacing: .2px;
}
.nav-link .arrow {
  font-size: 10px;
  margin-left: 4px;
  opacity: .6;
  display: inline-block;
  transition: transform .3s;
}
.nav-item:hover .nav-link .arrow { transform: rotate(180deg); }
.nav-link:hover,
.nav-item.active > .nav-link { color: var(--primary); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  z-index: 999;
  border-top: 2px solid var(--primary);
  padding: 6px 0;
}
.nav-item:hover .dropdown-menu { display: block; animation: fadeDown .2s ease; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:none; } }
.dropdown-menu .nav-link {
  font-weight: 400;
  font-size: 13px;
  padding: 10px 20px;
  color: #333;
  border: none;
  display: block;
}
.dropdown-menu .nav-link:hover { color: var(--primary); background: #f8f8f8; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  background: #333;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === SECTIONS COMMON === */
section { padding: 70px 0; }
.section-heading {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--dark);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  margin-bottom: 12px;
}
.section-subheading {
  font-size: 20px;
  text-align: center;
  color: var(--text);
  width: 100%;
  margin-bottom: 40px;
}
.section-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 9s ease-out;
}
.slide.active .slide-bg { transform: scale(1.07); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  gap: 0;
}
.slide-content .line1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 70px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 20px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity .9s ease .3s, transform .9s ease .3s;
  line-height: 1.1;
}
.slide-content .line2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 70px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 20px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity .9s ease .5s, transform .9s ease .5s;
  line-height: 1.1;
}
.slide.active .slide-content .line1,
.slide.active .slide-content .line2 { opacity: 1; transform: none; }
.slide-btn {
  margin-top: 32px;
  padding: 14px 50px;
  background: #fff;
  color: #333;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  border: 2px solid #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease .8s, transform .9s ease .8s, background .3s, color .3s;
  display: inline-block;
}
.slide.active .slide-btn { opacity: 1; transform: none; }
.slide-btn:hover { background: transparent; color: #fff; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .3s;
}
.slider-arrow:hover { background: rgba(0,0,0,.75); }
.slider-arrow.prev { left: 35px; }
.slider-arrow.next { right: 35px; }
.slider-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 2px solid rgba(255,255,255,.8);
  cursor: pointer;
  transition: background .3s;
}
.slider-dot.active { background: #fff; }
.slider-scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.slider-scroll-down a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  animation: bounceY 2.2s ease infinite;
}
@keyframes bounceY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* === SOLUTIONS === */
#solutions {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2015/11/parallax1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .1;
  z-index: 0;
}
#solutions .container { position: relative; z-index: 1; }
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}
.solution-card {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.solution-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  flex-shrink: 0;
}
.solution-card-body {
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solution-card-body h4 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.solution-card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
}

/* === BENEFITS === */
#benefits { background: #fff; }
.benefits-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.benefits-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 780px;
  margin: 10px auto 0;
}
.icon-box {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  transition: box-shadow .3s;
}
.icon-box:hover { box-shadow: var(--shadow-sm); }
.icon-box img {
  height: 88px;
  width: auto;
  margin: 0 auto 20px;
}
.icon-box h4 {
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: .3px;
}
.icon-box p { font-size: 15px; color: var(--text); line-height: 1.65; }

/* === WHAT WE DO === */
#what-we-do { background: #fff; }
#what-we-do .section-title {
  font-size: 40px;
  text-align: center;
  color: var(--dark);
  margin-bottom: 28px;
  font-weight: 700;
}

/* === AGRICULTURE === */
#agriculture .photo-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 0;
}
.photobox {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.photobox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform .55s ease;
}
.photobox:hover img { transform: scale(1.06); }
.photobox-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,117,188,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
}
.photobox:hover .photobox-hover { opacity: 1; }
.photobox-hover h4 { color: #fff; font-size: 20px; text-align: center; padding: 20px; }
.text-block {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.text-block h2, .text-block h4 {
  font-size: 24px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 18px;
}
.text-block p { font-size: 15px; line-height: 1.8; color: var(--text); }

/* === CONSTRUCTION & PROPERTY === */
#construction-property {
  background: var(--light-bg);
  padding: 0;
}
#construction-property .section-title-wrap {
  text-align: center;
  padding: 60px 0 30px;
}
#construction-property .section-title-wrap h2 {
  font-size: 40px;
  color: var(--dark);
  font-weight: 700;
}
#construction-property .photo-text-block { margin-bottom: 0; }
#construction-property .text-block { background: var(--light-bg); }
#construction-property .text-block.alt-bg { background: #fff; }

/* === CUSTOMER STORIES === */
#customer-stories .section-title {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.story-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.story-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .5s;
}
.story-card:hover img { transform: scale(1.04); }
.story-card-body {
  padding: 25px;
  background: rgba(0,0,0,.78);
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.story-card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}
.story-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  transition: background .3s;
}
.story-btn:hover { background: var(--primary-dk); color: #fff; }

/* === NEWSROOM === */
#newsroom { background: var(--light-bg); }
.newsroom-alert {
  background: #dff0d8;
  border: 1px solid #d6e9c6;
  border-radius: 4px;
  padding: 18px 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.newsroom-alert .alert-icon { color: #3c763d; font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.newsroom-alert-body { flex: 1; }
.newsroom-alert strong { color: #3c763d; font-size: 14.5px; }
.newsroom-alert p { color: #3c763d; font-size: 14px; line-height: 1.75; margin: 6px 0 0; }
.newsroom-alert a { color: #3c763d; text-decoration: underline; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-card {
  overflow: hidden;
  background: #282828;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .35s;
}
.news-card:hover { transform: translateY(-4px); }
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .45s;
}
.news-card:hover img { transform: scale(1.04); }
.news-card-body { padding: 20px 22px; }
.news-date { font-size: 12px; color: #efefef; font-family: var(--font-alt); margin-bottom: 8px; display: block; }
.news-title { font-size: 19px; color: #fff; font-family: var(--font-alt); font-weight: 300; line-height: 1.45; }

/* === CONTACT === */
#contact {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}
.contact-parallax {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2016/01/contact-parallax.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,117,188,.88);
  z-index: 1;
}
#contact > .container { position: relative; z-index: 2; }
#contact .section-heading,
#contact .section-subheading { color: #fff; }
.contact-form-wrap {
  max-width: 740px;
  margin: 0 auto 50px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: 3px;
  outline: none;
  transition: border-color .3s, background .3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.65); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #fff; background: rgba(255,255,255,.25); }
.contact-form textarea { height: 150px; resize: vertical; }
.contact-form .submit-btn {
  padding: 14px 44px;
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  font-family: var(--font-body);
  align-self: flex-start;
  transition: background .3s, color .3s;
}
.contact-form .submit-btn:hover { background: transparent; color: #fff; }
.form-success {
  display: none;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 15px;
  margin-top: 10px;
}
/* Contact Info Bar */
.contact-info-bar {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
}
.contact-info-item {
  padding: 60px 30px;
  text-align: center;
  border-right: 1px solid rgba(51,51,51,.12);
}
.contact-info-item:last-child { border-right: none; }
.contact-info-item i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.contact-info-item h4 {
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.contact-info-item p { color: var(--text); font-size: 15px; margin: 0; }

/* === FOOTER === */
footer {
  background: #fff;
  border-top: 1px solid #eee;
}
.footer-inner {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-inner span { color: var(--text); font-size: 14px; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .3s;
  z-index: 999;
  font-size: 18px;
  border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dk); }

/* === SCROLL ANIMATIONS === */
.anim {
  opacity: 0;
  transition-duration: .65s;
  transition-timing-function: ease;
  transition-property: opacity, transform;
}
.anim.fadeInUp { transform: translateY(40px); }
.anim.zoomIn   { transform: scale(.8); }
.anim.slideInRight { transform: translateX(60px); }
.anim.visible  { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .30s !important; }
.delay-3 { transition-delay: .45s !important; }
.delay-4 { transition-delay: .60s !important; }

/* === SUB-PAGE HERO === */
.page-hero {
  padding: 120px 0 60px;
  background: var(--primary);
  text-align: center;
  position: relative;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(15,117,188,.88); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: 42px; font-weight: 700; }
.page-hero p  { color: rgba(255,255,255,.9); font-size: 20px; margin-top: 10px; }
.page-content { padding: 70px 0; }

/* === ABOUT US === */
.about-logo-wrap { text-align: center; margin-bottom: 30px; }
.about-logo-wrap a img { max-width: 150px; display: inline-block; border: 1px solid #eee; padding: 10px; }
.video-wrap { margin: 30px auto; max-width: 667px; }
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }

/* === TEAM === */
.team-intro { max-width: 860px; margin: 0 auto 40px; text-align: center; font-size: 16px; line-height: 30px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.team-card { position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.team-card img { width: 100%; display: block; transition: transform .45s; aspect-ratio: 1; object-fit: cover; }
.team-card:hover img { transform: scale(1.05); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,117,188,.95) 0%, rgba(15,117,188,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity .4s;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-overlay h5 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.team-card-overlay .role { color: rgba(255,255,255,.85); font-size: 14px; display: block; margin-bottom: 14px; }
.team-card-overlay .linkedin { color: #fff; font-size: 22px; }
.team-card-overlay .linkedin:hover { color: rgba(255,255,255,.7); }
.team-card-info { padding: 14px 16px; background: #fff; }
.team-card-info h5 { font-size: 16px; color: var(--dark); margin-bottom: 2px; }
.team-card-info span { font-size: 13px; color: var(--primary); }

/* === PRICING === */
.pricing-table-wrap { overflow-x: auto; margin-top: 30px; }
.pricing-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-table th {
  text-align: center;
  background: #fff;
  border: none;
  padding: 12px;
  color: #000;
  font-family: var(--font-head);
  font-weight: 600;
}
.pricing-table th:first-child { text-align: left; }
.pricing-table tr {
  color: #000;
  border-bottom: 1px solid rgba(120,129,139,.2);
  background: #fff;
}
.pricing-table tr.header-row { border-top: 2px solid #000; border-bottom: 2px solid #000; }
.pricing-table td { border: none; padding: 10px 12px; }
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(4) { background: rgba(128,128,128,.09); text-align: center; }
.pricing-table td:nth-child(3),
.pricing-table td:nth-child(5) { background: rgba(128,128,128,.22); text-align: center; }
.pricing-table th:nth-child(3),
.pricing-table th:nth-child(5) { background: rgba(128,128,128,.22); }
.pricing-table th:nth-child(2),
.pricing-table th:nth-child(4) { background: rgba(128,128,128,.09); }
.check { color: var(--primary); font-weight: 700; }
.cross { color: #ccc; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    align-items: stretch;
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
  }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .dropdown-menu { position: static; min-width: 100%; box-shadow: none; }
  .nav-item:hover .dropdown-menu { display: none; }
  .nav-item.mobile-open .dropdown-menu { display: block; }

  .hero-slider { height: 70vh; min-height: 450px; }
  .slider-arrow { display: none; }

  section { padding: 50px 0; }
  .section-heading { font-size: 28px; }
  .section-subheading { font-size: 17px; }

  .solutions-grid  { grid-template-columns: 1fr; }
  .benefits-top    { grid-template-columns: 1fr; }
  .benefits-bottom { grid-template-columns: 1fr; }

  #agriculture .photo-text-block,
  #construction-property .photo-text-block,
  #construction-property .cp-row { grid-template-columns: 1fr; }
  /* Flip order so image follows text on mobile */
  #construction-property .cp-row.img-first > .photobox { order: -1; }
  .photobox { min-height: 260px; }
  .photobox img { min-height: 260px; }
  .text-block { padding: 35px 25px; }

  .stories-grid { grid-template-columns: 1fr; }
  .news-grid    { grid-template-columns: 1fr; }

  .contact-info-bar { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid rgba(51,51,51,.12); padding: 40px 20px; }
  .contact-info-item:last-child { border-bottom: none; }
  .form-row-2 { grid-template-columns: 1fr; }

  .team-grid  { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .pricing-table { width: 100%; }
}

@media (max-width: 480px) {
  .slide-content .line1,
  .slide-content .line2 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
}
