/* ===== BRAND COLORS =====
   Primary Blue:   #043E67
   Button Blue:    #0D4069
   Primary Yellow: #FFE806
   Hover Yellow:   #FFEC42
   Body BG:        #F3F6FA
   Footer BG:      #020202
   ======================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  background: #F3F6FA;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 20px; }

/* ===== PAGE LABEL DIVIDERS ===== */
.page-label {
  background: #1a1a2e;
  padding: 16px 40px;
  border-top: 3px solid #e94560;
  border-bottom: 3px solid #e94560;
  text-align: center;
}
.page-label span {
  color: #e94560;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #FFE806;
  color: #043E67;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #043E67; font-weight: 600; transition: color 0.2s; }
.top-bar a:hover { color: #0D4069; }
.top-bar .contact-info { display: flex; align-items: center; gap: 20px; }
.top-bar .social-links { display: flex; align-items: center; gap: 12px; }
.top-bar .social-links a { font-size: 14px; }
.top-bar .btn-estimate {
  background: #043E67;
  color: #fff;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.top-bar .btn-estimate:hover { background: #0D4069; color: #FFE806; }
.top-bar-right { display: flex; align-items: center; gap: 15px; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.site-header .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo img { height: 55px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > .nav-item { position: relative; }
.main-nav > .nav-item > a {
  display: block;
  padding: 28px 18px;
  color: #043E67;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.main-nav > .nav-item > a:hover {
  color: #043E67;
  border-bottom-color: #FFE806;
  background: rgba(4,62,103,0.04);
}
.main-nav > .nav-item > a.active {
  color: #043E67;
  border-bottom-color: #FFE806;
  font-weight: 700;
}
/* Dropdown arrow */
.nav-item.has-mega > a::after {
  content: '\25BE';
  margin-left: 5px;
  font-size: 11px;
  opacity: 0.6;
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border-top: 3px solid #FFE806;
  border-radius: 0 0 8px 8px;
  padding: 30px 35px;
  min-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
}
.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col {}
.mega-col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #043E67;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFE806;
}
.mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  transition: all 0.2s;
}
.mega-col a:hover {
  color: #043E67;
  padding-left: 6px;
}
.mega-col a:hover::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #FFE806;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
/* Smaller mega for About (2 cols) */
.mega-menu.mega-sm {
  min-width: 360px;
  grid-template-columns: 1fr 1fr;
}
/* Featured item in mega */
.mega-featured {
  grid-column: 1 / -1;
  background: #F3F6FA;
  border-radius: 6px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
}
.mega-featured img { width: 60px; height: 60px; border-radius: 4px; object-fit: cover; }
.mega-featured-text { font-size: 13px; color: #555; line-height: 1.5; }
.mega-featured-text strong { color: #043E67; display: block; margin-bottom: 2px; }

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #043E67;
  margin: 0 auto;
  transition: all 0.3s;
  position: absolute;
  left: 6px;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ===== MOBILE SLIDE-OUT MENU ===== */
.mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 1060;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  padding-bottom: 100px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-header {
  background: #043E67;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-drawer-header img { height: 35px; }
.mobile-drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}
.mobile-nav-section {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.mobile-nav-section:last-child { border-bottom: none; }
.mobile-nav-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #043E67;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-nav-parent:hover { background: #F3F6FA; }
.mobile-nav-parent .arrow {
  font-size: 12px;
  transition: transform 0.3s;
  color: #043E67;
}
.mobile-nav-section.expanded .mobile-nav-parent .arrow { transform: rotate(90deg); }
.mobile-nav-parent a {
  color: #043E67;
  flex: 1;
}
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #F3F6FA;
}
.mobile-nav-section.expanded .mobile-sub { max-height: 600px; }
.mobile-sub a {
  display: block;
  padding: 10px 20px 10px 35px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.2s;
}
.mobile-sub a:last-child { border-bottom: none; }
.mobile-sub a:hover { color: #043E67; background: #FFEC42; }
.mobile-sub-title {
  padding: 10px 20px 5px 35px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}
.mobile-drawer-cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer-cta .btn { text-align: center; font-size: 14px; }

/* ===== PERSISTENT MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #043E67;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.mobile-bottom-bar .bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  transition: background 0.2s;
}
.mobile-bottom-bar .bar-call {
  background: #043E67;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.mobile-bottom-bar .bar-call:hover { background: #0D4069; }
.mobile-bottom-bar .bar-call .bar-icon { font-size: 18px; }
.mobile-bottom-bar .bar-quote {
  background: #FFE806;
  color: #043E67;
}
.mobile-bottom-bar .bar-quote:hover { background: #FFEC42; }
.mobile-bottom-bar .bar-quote .bar-icon { font-size: 18px; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #043E67 0%, #02243d 100%);
  color: #fff;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/DJI_0750-scaled.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero .container { position: relative; z-index: 2; display: flex; gap: 50px; align-items: flex-start; }
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: #FFE806;
  color: #043E67;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.hero h1 span { color: #FFE806; }
.hero-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-rating .stars { color: #FFE806; font-size: 22px; letter-spacing: 2px; }
.hero-rating .rating-text { font-size: 13px; opacity: 0.8; }
.hero-form {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 30px;
  min-width: 340px;
  max-width: 380px;
}
.hero-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.hero-form textarea { height: 80px; resize: vertical; }
.hero-form .btn-submit {
  width: 100%;
  padding: 12px;
  background: #FFE806;
  color: #043E67;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.hero-form .btn-submit:hover { background: #FFEC42; }

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.video-bg {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.video-overlay {
  position: relative;
  z-index: 2;
  background: rgba(4, 62, 103, 0.75);
  padding: 80px 60px;
  width: 100%;
}
.video-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
.video-text-side {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-logo {
  max-width: 380px;
  width: 100%;
  margin-bottom: 25px;
}
.video-tagline {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}
.video-rating {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}
.video-rating p { margin-bottom: 8px; }
.video-section .hero-form {
  max-width: 100%;
  min-width: 0;
}
.video-youtube {
  margin-top: 50px;
  width: 100%;
}
.video-youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 8px;
}

/* ===== SECTION STYLES ===== */
.section { padding: 70px 0; }
.section-white { background: #fff; }
.section-light { background: #F3F6FA; }
.section-dark { background: #043E67; color: #fff; }
.section-blue { background: #0D4069; color: #fff; }
.section-gold { background: linear-gradient(135deg, #FFE806 0%, #e6d000 100%); color: #043E67; }

/* Section Headings */
.section-heading {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #043E67;
}
.section-heading.white { color: #fff; }

/* ===== ABOUT US SECTION ===== */
.about-with-image {
  background-color: #f5f5f5;
  background-image: url('../img/IMG_2067-e1520619143620.jpg'), linear-gradient(180deg, #ffffff 0%, #ffffff 99%);
  background-size: 40% auto;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.about-content-side {
  max-width: 55%;
}
.about-section .container { max-width: 900px; }
.about-heading { border-left: 5px solid #FFE806; padding-left: 18px; }
.about-heading h2 {
  font-size: 32px;
  font-weight: 800;
  color: #043E67;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.about-text h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}
.about-text p { margin-bottom: 15px; }

/* ===== SERVICE ICON GRID ===== */
.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.service-icon-card {
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s;
}
.service-icon-card:hover { transform: translateY(-3px); }
.service-icon-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 8px;
}
.service-icon-card p {
  font-size: 14px;
  font-weight: 700;
  color: #043E67;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #FFE806;
  color: #043E67;
  border-color: #FFE806;
}
.btn-primary:hover { background: #FFEC42; border-color: #FFEC42; }
.btn-outline {
  background: transparent;
  color: #043E67;
  border-color: #043E67;
}
.btn-outline:hover { background: #043E67; color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: #043E67; }
.btn-blue {
  background: #0D4069;
  color: #fff;
  border-color: #0D4069;
}
.btn-blue:hover { background: #043E67; border-color: #043E67; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}
.two-col.reverse { flex-direction: row-reverse; }
.two-col .col-text { flex: 1; }
.two-col .col-images { flex: 1; }
.two-col .col-images.stacked { display: flex; flex-direction: column; gap: 15px; }
.two-col .col-images.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.two-col .col-images img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}
.col-text h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #043E67;
  margin-bottom: 10px;
}
.col-text h2 .icon { margin-right: 8px; }
.col-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}
.col-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.section-dark .col-text h2 { color: #fff; }
.section-dark .col-text h3, .section-dark .col-text p { color: rgba(255,255,255,0.85); }

/* ===== ROW GRID (Divi-style column layouts) ===== */
.row-grid { display: grid; gap: 30px; align-items: start; margin-bottom: 30px; }
.row-grid.align-center { align-items: center; }
.row-grid.cols-1-1 { grid-template-columns: 1fr 1fr; }
.row-grid.cols-2-1 { grid-template-columns: 2fr 1fr; }
.row-grid.cols-1-2 { grid-template-columns: 1fr 2fr; }
.row-grid.cols-3-1 { grid-template-columns: 3fr 1fr; }
.row-grid.cols-1-1-1 { grid-template-columns: 1fr 1fr 1fr; }
.row-grid.cols-full { grid-template-columns: 1fr; }
.row-grid img { border-radius: 6px; width: 100%; object-fit: cover; }
.row-grid .col h2, .row-grid .col h3 { color: #043E67; }
.row-grid .col p { color: #555; line-height: 1.8; margin-bottom: 12px; }

/* Blurb grid (service cards) */
.blurb-grid { display: grid; gap: 20px; margin: 20px 0; }
.blurb-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.blurb-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.blurb-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.blurb-card { text-align: center; padding: 20px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.blurb-card img { width: 60px; height: 60px; object-fit: contain; margin: 0 auto 10px; border-radius: 0; }
.blurb-card.product-card img { width: 100%; height: auto; object-fit: cover; border-radius: 6px; margin-bottom: 12px; }
.blurb-card h4 { color: #043E67; font-size: 16px; margin: 8px 0; }
.blurb-card p { color: #555; font-size: 14px; line-height: 1.6; }

/* Article cards (blog listing with featured images) */
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin: 20px 0; }
.article-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); overflow: hidden; border: 1px solid #e8e8e8; }
.article-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.article-card h4 { padding: 15px 18px 8px; margin: 0; }
.article-card h4 a { color: #043E67; text-decoration: none; font-size: 16px; line-height: 1.4; }
.article-card h4 a:hover { color: #0D4069; text-decoration: underline; }
.article-card p { padding: 0 18px 18px; color: #555; font-size: 14px; line-height: 1.6; margin: 0; }

/* Article featured image */
.article-featured-img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 8px; margin: 0 0 25px; display: block; }

/* Article pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 30px 0 10px; padding: 0; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: 5px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.pagination a { background: #fff; color: #043E67; border: 1px solid #d0d0d0; }
.pagination a:hover { background: #043E67; color: #fff; border-color: #043E67; }
.pagination span.current { background: #043E67; color: #fff; border: 1px solid #043E67; }
.pagination span.dots { background: none; border: none; color: #888; min-width: auto; padding: 0 4px; }
.pagination .prev, .pagination .next { font-size: 13px; }

/* Team member cards */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; margin: 20px 0; }
.team-card { text-align: center; padding: 25px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px; }
.team-card h3 { color: #043E67; margin: 5px 0; font-size: 18px; }
.team-card .position { color: #888; font-style: italic; margin: 5px 0 10px; font-size: 14px; }
.team-card p { color: #555; line-height: 1.6; font-size: 14px; }

/* Testimonial cards */
.testimonial { background: #f8f9fa; padding: 25px; border-left: 4px solid #043E67; border-radius: 0 8px 8px 0; margin: 20px 0; }
.testimonial p.quote { color: #555; line-height: 1.8; font-style: italic; margin-bottom: 10px; }
.testimonial .author { color: #043E67; font-weight: bold; }
.testimonial .meta { color: #888; font-size: 14px; }

/* CTA button */
.btn-cta { display: inline-block; padding: 14px 30px; background: #0D4069; color: #fff; text-decoration: none; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
.btn-cta:hover { background: #043E67; color: #FFE806; }

@media (max-width: 768px) {
  .row-grid.cols-1-1, .row-grid.cols-2-1, .row-grid.cols-1-2, .row-grid.cols-3-1 { grid-template-columns: 1fr; }
  .row-grid.cols-1-1-1 { grid-template-columns: 1fr; }
  .blurb-grid.cols-3, .blurb-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE CATALOGUE ===== */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.catalogue-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.catalogue-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #043E67;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.catalogue-card .card-subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
}
.catalogue-card .service-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #043E67;
  padding: 8px 12px;
  margin-bottom: 4px;
  border-left: 3px solid #043E67;
  background: #fff;
  transition: all 0.2s;
}
.catalogue-card .service-link:hover {
  background: #FFEC42;
  color: #043E67;
}

/* ===== AREA SERVICE CARDS (Divi-style) ===== */
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  overflow: hidden;
}
.service-card .card-header {
  background: #FFE806;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card .card-header .card-icon {
  font-size: 20px;
}
.service-card .card-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #043E67;
  text-transform: uppercase;
}
.service-card .card-body {
  padding: 18px 20px;
}
.service-card .card-body p.card-subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.service-card .card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card .card-body ul li {
  margin-bottom: 6px;
}
.service-card .card-body ul li a,
.service-card .card-body ul li span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #043E67;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.service-card .card-body ul li a::before,
.service-card .card-body ul li span::before {
  content: "\2192\00a0\00a0";
  color: #999;
}
.service-card .card-body ul li a:hover {
  color: #FFE806;
}

/* Area page advantages section */
.advantages-block h3 {
  color: #043E67;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #FFE806;
}
.advantages-block ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
}
.advantages-block ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}
.advantages-block p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.advantages-block p strong {
  color: #043E67;
}

@media (max-width: 768px) {
  .row-grid.cols-1-1-1 .service-card { margin-bottom: 15px; }
}

/* ===== QUALITY BADGES ===== */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.badge-item {
  text-align: center;
  max-width: 280px;
}
.badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(4,62,103,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
}
.badge-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.badge-item p { font-size: 13px; line-height: 1.6; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-section .container { max-width: 900px; }
.cta-section h2 {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: #043E67;
  margin-bottom: 10px;
}
.cta-section h3 {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.7;
}
.cta-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}
.cta-section .btn-group { justify-content: center; }

/* ===== FOOTER ===== */
.footer-top {
  background: #043E67;
  color: #fff;
  padding: 60px 0 40px;
}
.footer-heading-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.footer-heading-bar .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFE806;
  display: inline-block;
}
.footer-heading-bar h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-sub-h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-sub-h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.footer-contact-item { text-align: center; }
.footer-contact-item img {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  opacity: 0.9;
}
.footer-contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: #FFE806; }
.footer-bottom {
  background: #020202;
  color: rgba(255,255,255,0.5);
  padding: 20px 0;
  font-size: 12px;
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #FFE806; }
.footer-areas { margin-top: 5px; }
.footer-social { margin-top: 10px; display: flex; justify-content: center; gap: 15px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  font-size: 14px; transition: background 0.2s;
}
.footer-social a:hover { background: #FFE806; color: #043E67; }

/* ===== INNER PAGE HERO (compact with breadcrumb) ===== */
.inner-hero {
  background: #043E67;
  color: #fff;
  padding: 35px 0 30px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/DJI_0029-scaled.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.inner-hero .container { position: relative; z-index: 2; }
.inner-hero h1 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}
.inner-hero h1 .highlight { color: #FFE806; }
/* Breadcrumb */
.breadcrumb {
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}
.breadcrumb a { color: #FFE806; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { opacity: 0.7; }

/* ===== FEATURE BAND ===== */
.feature-band {
  position: relative;
  overflow: hidden;
}
.feature-band .feature-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.feature-band .feature-overlay {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: rgba(4,62,103,0.92);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 50px;
}
.feature-overlay h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.3;
}
.feature-overlay p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* ===== CONTENT + SIDEBAR LAYOUT ===== */
.content-sidebar {
  display: flex;
  gap: 40px;
}
.main-content-area { flex: 1; }
.main-content-area h2 {
  font-size: 26px;
  font-weight: 800;
  color: #043E67;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.3;
}
.main-content-area h2 strong { font-weight: 800; }
.main-content-area h3 {
  font-size: 20px;
  font-weight: 700;
  color: #043E67;
  margin-bottom: 12px;
  margin-top: 20px;
}
.main-content-area h4 {
  font-size: 17px;
  font-weight: 700;
  color: #043E67;
  margin-bottom: 10px;
  margin-top: 22px;
}
.main-content-area h5 {
  font-size: 15px;
  font-weight: 700;
  color: #043E67;
  margin-bottom: 8px;
  margin-top: 18px;
}
.main-content-area p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}
.main-content-area ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.main-content-area ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}
.main-content-area ul li ul {
  margin-top: 6px;
  margin-bottom: 6px;
}
.main-content-area ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 16px;
}
.main-content-area ol li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
}
.main-content-area a {
  color: #043E67;
  text-decoration: underline;
  transition: color 0.2s;
}
.main-content-area a:hover {
  color: #FFE806;
}
.sidebar { width: 280px; flex-shrink: 0; }
.sidebar-menu {
  background: #F3F6FA;
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-menu h3 {
  background: #043E67;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
}
.sidebar-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: #043E67;
  border-left: 3px solid #043E67;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  transition: all 0.2s;
  font-weight: 400;
}
.sidebar-menu a:last-child { border-bottom: none; }
.sidebar-menu a:hover {
  background: #0D4069;
  color: #fff;
}
.sidebar-menu a.active {
  background: #FFEC42;
  color: #043E67;
  font-weight: 600;
}

/* ===== SERVICES BAR ===== */
.services-bar {
  background: #FFE806;
  padding: 25px 0;
}
.services-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-bar h3 {
  font-size: 22px;
  font-weight: 800;
  color: #043E67;
  text-transform: uppercase;
}

/* ===== ACCORDION ===== */
.accordion { margin-top: 30px; }
.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #043E67;
  transition: background 0.2s;
}
.accordion-header:hover { background: #f0f0f0; }
.accordion-header .toggle-icon {
  font-size: 20px;
  color: #043E67;
  transition: transform 0.3s;
  font-weight: 300;
}
.accordion-item.open .accordion-header { background: #043E67; color: #FFE806; }
.accordion-item.open .toggle-icon { transform: rotate(45deg); color: #FFE806; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body-inner {
  padding: 18px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  cursor: default;
  transition: opacity 0.25s;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2001;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2001;
}
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== PROFILES LIST ===== */
.profiles-list { margin: 15px 0; padding-left: 5px; }
.profiles-list li {
  padding: 5px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.profiles-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: #FFE806;
  border-radius: 50%;
  flex-shrink: 0;
}
.mfg-list { margin: 10px 0; padding-left: 5px; }
.mfg-list li {
  padding: 3px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mfg-list li::before {
  content: "\2714";
  color: #FFE806;
  font-weight: 700;
}

/* ===== GAF WIDGET ===== */
.gaf-hdz { width: 100%; max-width: 1400px; margin: 0 auto; overflow: visible; }
.gaf-hdz iframe { width: 100%; border: 0; display: block; height: 1200px; }
@media (max-width: 980px) { .gaf-hdz iframe { height: 1400px; } }
@media (max-width: 767px) { .gaf-hdz iframe { height: 1700px; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero .container { flex-direction: column; }
  .hero-form { min-width: 100%; max-width: 100%; }
  .two-col, .two-col.reverse { flex-direction: column; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .content-sidebar { flex-direction: column; }
  .sidebar { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-band .feature-overlay { width: 100%; position: relative; }
  .badges-row { flex-direction: column; align-items: center; }
  .video-content-grid { grid-template-columns: 1fr; }
  .video-overlay { padding: 40px 20px; }
  .video-logo { max-width: 240px; }
  .about-with-image { background-image: none !important; }
  .about-content-side { max-width: 100%; }

  /* Hide desktop nav, show hamburger */
  .main-nav { display: none !important; }
  .hamburger { display: block; }
  .mobile-bottom-bar { display: block; }
  /* Add bottom padding so content isn't hidden behind bottom bar */
  body { padding-bottom: 56px; }
  /* Hide top bar social on mobile */
  .top-bar .social-links { display: none; }
  .top-bar .contact-info { font-size: 12px; gap: 10px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .inner-hero h1 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 200px; }
  .services-bar .container { flex-direction: column; gap: 12px; text-align: center; }
  .feature-band .feature-image { height: 250px; }
}
