
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Glegoo:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #abe773;
  --accent-dark: #8bc34a;
  --primary: #2ea3f2;
  --dark: #333;
  --text: #666;
  --light-bg: #f9f9f9;
  --white: #fff;
  --top-bar: #2ea3f2;
  --footer-bg: #222;
  --container: 1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  /* font-size: 14px; */
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s; }
/* a:hover { color: var(--accent-dark); } */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.clearfix::after { content: ""; display: table; clear: both; }

/* ========== TOP HEADER ========== */
#top-header {
  background: #7ce817;
  color: var(--white);
  font-size: 14px;
  line-height: 36px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10001;
  height: 36px;
  padding-left: 50px;
}

#top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#et-info { display: flex; align-items: center; gap: 20px; }
#et-info-phone, #et-info-email { color: var(--white); }
#et-info a { color: var(--white); }
#et-info a:hover { opacity: 0.85; }

.et-social-icons {
  list-style: none;
  display: flex;
  gap: 4px;
}

.et-social-icons a {
  font:bold;
  color: var(--white);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: transparent;
}

.et-social-icons a:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.et-social-icons a i {
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

.et-social-icons a svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.phone-number {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin: 18px 0 8px;
  color: #000;
}

.phone-number a {
  color: #000;
  text-decoration: none;
}

.phone-number a:hover {
  color: #000;
  opacity: 0.85;
}

.footer-social a svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

#et-secondary-menu { display: none; }

/* ========== MAIN HEADER ========== */
#main-header {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 10000;
  height: 80px;
  transition: all 0.3s;
}

#main-header .container {
  display: flex;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo_container { flex-shrink: 0; }
.logo_container img { max-height: 51px; width: auto; }

#et-top-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#top-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

#top-menu > li { position: relative; }

#top-menu > li > a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

#top-menu > li.menu-item-has-children > a {
  padding-right: 28px;
  position: relative;
}

#top-menu > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
}

#top-menu > li > a:hover,
#top-menu > li.current-menu-item > a {
  color: var(--accent-dark);
  opacity: 1;
}

#top-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  min-width: 260px;
  list-style: none;
  z-index: 9999;
  padding: 10px 0;
}

#top-menu li:hover > .sub-menu { display: block; }

#top-menu .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

#top-menu .sub-menu li a:hover {
  background: var(--light-bg);
  color: var(--accent-dark);
}

/* Mobile menu toggle */
#mobile-menu-toggle { display: none; }
.mobile-nav-label { display: none; }

/* Divi-style mobile nav (hidden on desktop) */
#et_mobile_nav_menu {
  display: none;
  float: right;
  margin: 0;
}

.mobile_nav {
  position: relative;
}

.mobile_nav .select_page {
  display: none;
}

.mobile_menu_bar {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--dark);
}

.mobile_menu_bar:before {
  content: "\2630";
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  display: block;
  text-align: center;
}

.mobile_nav.opened .mobile_menu_bar:before {
  content: "\2715";
  font-size: 24px;
}

.et_mobile_menu {
  display: none;
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 99999;
  width: min(280px, calc(100vw - 24px));
  max-height: min(70vh, 480px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-top: 3px solid var(--accent-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-overflow-scrolling: touch;
}

.et_mobile_menu li {
  list-style: none;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.et_mobile_menu > li > a {
  display: block;
  padding: 10px 5%;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
}

.et_mobile_menu > li > a:hover {
  color: var(--accent-dark);
  background: rgba(0, 0, 0, 0.03);
}

.et_mobile_menu .sub-menu {
  display: block !important;
  position: static !important;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  box-shadow: none;
  min-width: 0;
  height: auto !important;
  opacity: 1 !important;
  overflow: visible !important;
}

.et_mobile_menu .sub-menu li a {
  display: block;
  padding: 10px 5%;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  white-space: normal;
  text-decoration: none;
  background: transparent;
}

.et_mobile_menu .sub-menu li a:hover {
  color: var(--accent-dark);
  background: rgba(0, 0, 0, 0.03);
}

/* ========== PAGE CONTAINER ========== */
#page-container {
  padding-top: 116px;
}

#main-content { min-height: 400px; }

/* ========== SECTIONS ========== */
.section {
  padding: 3% 0;
}

.section-light { background: var(--white); }
.section-gray { background: var(--light-bg); }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3%;
}

.col-full { width: 94%; margin: 0 3%; }
.col-half { width: 44%; margin: 0 3%; }
.col-third { width: 27.333%; margin: 0 3%; }
.col-quarter { width: 19%; margin: 0 3%; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: 'Glegoo', Georgia, "Times New Roman", serif;
  color: #000000;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
}

h1 { font-size: 40px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.text-justify { text-align: justify; }
.text-center { text-align: center; }

.entry-content p { margin-bottom: 15px; }
.about-us-title { font-size:50px;}

/* ========== HERO IMAGE ========== */
/* .hero-image img {
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
} */

/* ========== TWO COLUMN LAYOUT ========== */
.two-col-section .col-half img {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ========== BLURB / FEATURE BOXES ========== */
.blurb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.blurb-item {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blurb-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}

.blurb-icon {
  font-size: 40px;
  color: #abe773;
  margin-bottom: 14px;
  line-height: 1;
}

.blurb-icon i {
  display: block;
  font-size: 40px;
  color: #abe773;
  line-height: 1;
}

/* .blurb-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.3;
} */

.blurb-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6a7a;
  margin: 0;
}

/* ========== TESTIMONIAL SLIDER ========== */
.testimonial-section {
  background: #7ce817;
  color: var(--white);
  padding: 70px 0 55px;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/shapes2.png') center/cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.testimonial-quote-icon {
  text-align: center;
  font-size: 130px;
  color: rgba(255, 255, 255, 0.35);
  /* margin-bottom: 18px; */
  line-height: 1;
}

.testimonial-slider {
  position: relative;
  padding: 0 48px;
}

.testimonial-slides {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 100px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.testimonial-slide-image {
  flex: 0 0 250px;
  opacity: 0;
  transform: translateX(-40px);
}

.testimonial-slide-image img {
  width: 250px;
  height: 250px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.testimonial-slide-content {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.testimonial-slide h3 {
  color: var(--white);
  /* font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600; */
  line-height: 1.7;
  margin: 0 0 14px;
  opacity: 0;
  transform: translateX(40px);
}

.testimonial-slide p {
  color: var(--white);
  /* font-size: 15px; */
  margin: 0;
  opacity: 0;
  transform: translateX(40px);
}

.testimonial-slide.is-active .testimonial-slide-image {
  animation: testimonialFadeLeft 0.75s ease forwards;
}

.testimonial-slide.is-active h3 {
  animation: testimonialFadeRight 0.75s ease 0.15s forwards;
}

.testimonial-slide.is-active p {
  animation: testimonialFadeRight 0.75s ease 0.3s forwards;
}

@keyframes testimonialFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes testimonialFadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide-image,
  .testimonial-slide h3,
  .testimonial-slide p {
    opacity: 1;
    transform: none;
  }
  .testimonial-slide.is-active .testimonial-slide-image,
  .testimonial-slide.is-active h3,
  .testimonial-slide.is-active p {
    animation: none;
  }
}

.testimonial-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.testimonial-arrow {
  position: absolute;
  top: -40px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;  
  color: white;
  cursor: pointer;
  pointer-events: auto;
  /* opacity: 0.7; */
  transition: opacity 0.2s;
  font-size: 48px;
}

.testimonial-arrow:hover { opacity: 1; }

.testimonial-arrow-prev { left: -70px; }
.testimonial-arrow-next { right: -50px; }

.testimonial-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  margin: 0 auto;
}

.testimonial-arrow-prev::before { transform: rotate(-135deg); }
.testimonial-arrow-next::before { transform: rotate(45deg); }

.testimonial-arrow span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot:hover { background: rgba(255, 255, 255, 0.7); }

.testimonial-dot.is-active {
  background: #fff;
}

@media (max-width: 767px) {
  .testimonial-section { padding: 50px 0 40px; }
  .testimonial-slider { padding: 0 36px; }
  .testimonial-slides { min-height: 0; }
  .testimonial-slide {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .testimonial-slide-image { flex: none; }
  .testimonial-slide-image img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .testimonial-slide-content { text-align: center; }
  .testimonial-slide h3 { font-size: 18px; }
}

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s;
}

.blog-card:hover { box-shadow: 0 0 20px rgba(0, 0, 0, 0.16); }

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

.blog-card-body { padding: 20px; }

.blog-card h3 { font-size: 18px; margin-bottom: 8px; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--accent-dark); }

.post-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.more-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.pagination { margin-top: 30px; text-align: center; }
.pagination a { font-weight: 600; margin: 0 8px; }
.pagination-info { color: #666; font-size: 14px; }

.blog-status {
  text-align: center;
  padding: 24px 12px;
  color: #666;
  font-size: 15px;
}

.blog-status-error { color: #b00020; }

.blog-detail-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 20px;
}

.blog-detail-content {
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
}

.blog-detail-content p { margin-bottom: 14px; }

.blog-back-link { margin-top: 20px; }

.comments-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.comments-section h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.comment-form-heading { margin-top: 28px; }

.comments-list { margin-bottom: 10px; }

.comment-item {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child { border-bottom: none; }

.comment-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.comment-meta span { font-weight: 400; color: #999; }

.comments-empty {
  color: #888;
  font-size: 14px;
}

.comment-form .form-group { margin-bottom: 16px; }

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* ========== FAQ ACCORDION (details/summary) ========== */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.faq-col { width: 48%; }

.faq-item {
  border: 1px solid #e2e2e2;
  margin-bottom: 25px;
  background: var(--white);
}

.faq-item summary {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  list-style: none;
  position: relative;
  padding-right: 40px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-content {
  padding: 0 20px 15px;
  font-size: 14px;
  color: var(--text);
}

/* ========== LOCATIONS GRID ========== */
.locations-grid,
.row.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 20px;
  margin: 20px 0 0;
  align-items: start;
}

.locations-grid .col-quarter {
  width: 100%;
  margin: 0;
}

.locations-grid h3 {  margin: 0; line-height: 1.4; }
.locations-grid a { color: var(--dark); font-weight: 700; }
.locations-grid a:hover { color: var(--accent-dark); }

/* ========== FOOTER ========== */
footer {
  background: #000000;
  color: #ccc;
  padding: 40px 0 0;
}

footer h4 {
  text-transform: uppercase;
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

footer .footer-col { flex: 1; min-width: 250px; }

.footer-blurb-icon {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1;
}

.footer-blurb-icon i {
  color: inherit;
}

footer a { color: white; }
footer a:hover { color: var(--accent); }

.footer-social {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
}

.footer-social a[title="Facebook"] {
  background: #1877f2;
}

.footer-social a[title="Instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a[title="Pinterest"] {
  background: #e60023;
}

.footer-social a:hover {
  color: var(--white);
  opacity: 0.9;
}

.footer-social a i {
  color: inherit;
  font-size: 16px;
  line-height: 1;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-services-col { flex: 1; min-width: 200px; }
.footer-services-col p a { color: var(--accent-dark);margin-bottom: 8px; }

.footer-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  margin-top: 20px;
}

/* ========== CONTACT PAGE ========== */
.contact-hero {
  background: #1a3a2a;
  color: var(--white);
  padding: 50px 0 40px;
}

.contact-hero h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 0;
}

.contact-section {
  padding: 50px 0 60px;
}

.contact-form-row {
  align-items: flex-start;
}

.contact-info-block h2,
.contact-form-block h2 {
  margin-bottom: 12px;
}

.contact-info-block h2 span,
.contact-form-block h2 span {
  color: var(--accent-dark);
}

.contact-info-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #f8faf8;
  border-radius: 10px;
  border-left: 4px solid var(--accent-dark);
}

.contact-info-item > i {
  font-size: 22px;
  color: var(--accent-dark);
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin: 0 0 2px;
  font-size: 16px;
  color: #000;
}

.contact-info-item p {
  margin: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}

.contact-info-item a {
  color: var(--accent-dark);
  font-weight: 600;
}

.contact-info-item a:hover {
  color: #6fa333;
}

#contactForm {
  margin-top: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  font-size: 15px;
}

.form-group .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8f0e8;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group input.is-focused,
.form-group textarea.is-focused,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.15);
}

.contact-submit-btn {
  width: 100%;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  background: var(--accent-dark);
  color: var(--white);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.contact-submit-btn:hover {
  background: #6fa333;
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-submit-btn i {
  margin-right: 8px;
}

.form-message {
  margin-top: 18px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.form-message[hidden] {
  display: none !important;
}

.form-message-success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #86efac;
}

.form-message-error {
  background: #fef3f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

/* ========== GALLERY ========== */
.gallery-heading {
  /* font-family: 'Open Sans', Helvetica, Arial, sans-serif; */
  font-size: 50px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
  color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.gallery-grid a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 7px 7px 0 var(--accent);
  line-height: 0;
  transition: transform 0.3s;
}

.gallery-grid a:hover { transform: scale(1.03); }

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-header {
  padding: 30px 0;
  /* background: var(--light-bg);
  text-align: center; */
}

.page-header h1 { font-size: 50px; }

/* .page-content { padding: 20px 0; }  */

/* ========== LOCATION PAGE CONTENT ========== */
.location-content h2 {
  /* margin-top: 30px; */
  margin-bottom: 15px;
  /* font-size: 24px; */
}

.location-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
}

.location-content ul {
  margin: 15px 0 15px 30px;
}

.location-content li { margin-bottom: 8px; }

.location-hero-image {
  margin: 25px auto 10px;
  max-width: 520px;
}

.hero-image {
  margin: 20px auto;
  text-align: center;
}

.hero-image img {
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}

.location-hero-image img {
  width: 100%;
  height: auto;
}

.location-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin: 30px 0;
}

.location-split-text {
  flex: 1 1 55%;
  min-width: 280px;
}

.location-split-image {
  flex: 1 1 35%;
  min-width: 220px;
}

.location-split-image img {
  width: 100%;
  height: auto;
}

.location-content .faq-list {
  margin-top: 20px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 980px) {
  .col-half, .col-third, .col-quarter { width: 94%; margin: 0 3% 20px; }
  .locations-grid .col-quarter { width: 100%; margin: 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid,
  .row.locations-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-col { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .blurb-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-row .col-half { margin-bottom: 30px; }
  .contact-info-block { padding-bottom: 10px; }
}

@media (max-width: 767px) {
  #top-menu-nav { display: none; }

  #main-header {
    overflow: visible;
  }

  #et-top-navigation {
    position: relative;
  }

  #et_mobile_nav_menu {
    display: block;
  }


  @media (max-width: 767px) {
    #et-info .et-social-icons {
        display: none;
    }
}

  .blog-grid { grid-template-columns: 1fr; }
  .locations-grid,
  .row.locations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-heading { font-size: 32px; }
  .location-split { flex-direction: column; gap: 20px; }
  .location-split-text,
  .location-split-image { flex: 1 1 100%; min-width: 0; }
  .blurb-grid { grid-template-columns: 1fr; }

  h1 { font-size: 24px; }
  h2 { font-size: 22px; }

  #et-info { font-size: 11px; gap: 10px; }
}
