/*
Theme Name: Moultrie Oaks
Theme URI:  https://example.com/
Author:      Your Name
Author URI:  https://example.com/
Description: Landing style theme based on provided template
Version:     1.0
License:     GPLv2 or later
Text Domain: moultrie-oaks
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* =============================================================
   CSS VARIABLES
   ============================================================= */
:root {
  --accent: #00a3bb;
  --accent-dark: #007e86;
  --muted: #f2f6f6;
  --gray: #bfbfbf;
  --deep: #0b4c4f;
  --max-width: 1100px;
  --container-pad: 24px;
  --font-title: "Cormorant Garamond", serif;
  --font-sans: "Open Sans", sans-serif;
  --color-dark: #151515;
  --color-white: #ffffff;
}

/* =============================================================
   BASE
   ============================================================= */
body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 700;
}
a {
  text-decoration: none;
  color: var(--accent-dark);
}
img {
  max-width: 100%;
}

.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
  box-sizing: border-box;
}
.container_Short {
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =============================================================
   GLOBAL BUTTONS
   ============================================================= */
.btn_blue {
  background: var(--accent);
  color: var(--color-white);
  display: inline-block;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 400;
  transition: background-color 0.3s ease;
  min-width: 120px;
  text-align: center;
  margin-top: 10px;
  margin-right: 24px;
  text-decoration: none;
}
.btn_blue:hover {
  background: var(--accent-dark);
}

.btn_White {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--accent);
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  min-width: 120px;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
}
.btn_White:hover,
.btn_White:focus {
  background-color: var(--deep);
  color: var(--color-white);
}

/* =============================================================
   GLOBAL TYPOGRAPHY HELPERS
   ============================================================= */
.h2_title {
  font-size: 42px;
  margin-bottom: 30px;
  color: #000;
  margin-top: 0;
  line-height: 1.3;
}

.pipe_seprater {
  background: var(--accent);
  height: 3px;
  width: 100px;
  display: flex;
  margin: 0 auto 30px;
}

/* =============================================================
   SCROLL UTILITIES
   ============================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #00a7b5;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 167, 181, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}
.scroll-top.visible {
  display: flex;
}
.scroll-top:hover {
  background: #008a95;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 167, 181, 0.6);
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
}

/* =============================================================
   HEADER & NAV
   ============================================================= */
header.site-header {
  background: var(--color-white);
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1340px;
  margin-right: auto !important;
  margin: 0 auto;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-brand a img {
  width: 140px;
}
.site-brand a {
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: #222;
}
nav.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav ul li a {
  text-decoration: none;
  color: #151515;
  font-size: 16px;
  font-weight: 600;
}
.site-nav ul li a:hover,
.site-nav ul li a:focus,
.site-nav ul li.current_page_item a {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  text-transform: uppercase;
  margin-left: 15px;
}
.nav-cta:hover {
  background: var(--accent-dark);
}
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}
/* ---------- Dropdown submenu ---------- */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 100;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: #f5f5f5;
}
/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: #fff;
  color: #000;
  border-top: 1px solid #eee;
  font-size: 15px;
}
.footer-top {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1340px;
  width: 100%;
}
.footer-logo img {
  margin-bottom: 10px;
  width: 160px;
}
.footer-grid h4 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.6;
}
.footer-contact a {
  color: #222;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 20px;
}
.footer-nav ul li a {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}
.footer-nav ul li a:hover {
  color: #045a66;
}
.footer-bottom {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #000;
}
.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--accent-dark);
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 50px;
}
.footer-left {
  display: flex;
  align-items: center;
}
.footer-right {
  text-align: right;
}
.footer-extra {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-extra img {
  height: 65px;
  width: auto;
}

/* =============================================================
   HERO
   ============================================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero {
  background-size: cover !important;
  background-attachment: fixed;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  animation: fadeIn 1s ease-in;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 16;
}
.hero-content {
  position: relative;
  z-index: 500;
}
.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  line-height: 1.2;
}
.hero p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.hero-eyebrow {
  margin: 0;
  font-weight: 600 !important;
}

/* =============================================================
   HOME — WELCOME
   ============================================================= */
.homne_Welcome {
  max-width: 1340px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.homne_Welcome p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 15px;
}

/* =============================================================
   HOME — GALLERY SECTION
   ============================================================= */
.gallery_Section {
  padding: 80px 0;
  text-align: center;
  background-color: #edf9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery_Section > p {
  font-size: 16px;
  color: #000;
  margin-bottom: 40px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  width: 100%;
}
.image-grid-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
}
.image-grid-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.image-grid-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  aspect-ratio: 16 / 9;
}
.image-grid-item:hover img {
  transform: scale(1.1);
}
.image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  padding: 20px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  flex-direction: column;
}
.image-overlay svg {
  width: 30px;
  fill: var(--accent);
  margin: 0 auto 10px;
  display: block;
}
.image-grid-item:hover .image-overlay {
  opacity: 1;
}
.image-overlay a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.image-overlay a:hover {
  color: var(--accent-dark);
}

/* =============================================================
   AVAILABLE HOMES
   ============================================================= */
.available-homes {
  background: var(--accent);
  padding: 80px 20px;
  color: var(--color-white);
  text-align: center;
  align-items: center;
}
.available-homes > p {
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
}
.post-type-archive.available-homes {
  display: flex;
  flex-direction: column;
}
.archive-content.available-homes {
  background: var(--accent);
  background-image: linear-gradient(to bottom, var(--accent) 93%, #fff 7%);
  padding-bottom: 40px;
}
.nav-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.nav-links .page-numbers {
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 7px 15px;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: white;
  color: var(--accent);
}
.available-homes.single_property_page {
  background: #edf9fa;
}
.available-homes.single_property_page .bmd-cta-centered.mobile {
  display: none;
}

/* =============================================================
   LISTING GRID
   ============================================================= */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1340px;
  margin: 30px auto 0;
  width: 100%;
}
.grid-container .listing-box {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.grid-container .listing-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.listing-box a.dts_Image {
  width: 100%;
  display: flex;
}
.listing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.grid-container .listing-info {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
}
.grid-container .listing-info h2,
.grid-container .listing-info h3 {
  color: #000;
  margin: 0 0 10px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.6px;
}
.grid-container .listing-info h3 {
  margin: 0;
}
.grid-container .price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
}
.grid-container .details,
.grid-container .agent {
  font-size: 17px;
  color: #000;
  line-height: 1.5;
  margin: 0;
}
.second_section {
  border-top: solid 2px var(--accent);
  margin: 15px 0;
  border-bottom: solid 2px var(--accent);
  padding: 15px 0;
}
.listing-box .second_section {
  min-height: 75px;
}
.listing-box .third_section {
  min-height: 147px !important;
}
.listing-box .third_section a {
  position: absolute;
  bottom: 25px;
}
.grid-container .more-details {
  display: inline-block;
  padding: 15px 25px;
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 120px;
  text-align: center;
  margin-top: 15px;
}
.grid-container .more-details:hover {
  background-color: var(--accent-dark);
}
.grid-container.grid-container-home {
  display: block !important;
  grid-template-columns: auto !important;
  gap: 0 !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1340px;
}
.inventory_home_item {
  padding: 10px;
}
.inventory_value_benefits {
  display: flex;
  justify-content: center;
  padding: 0 0 60px;
  flex-direction: column;
}

/* =============================================================
   STEPS SECTION
   ============================================================= */
.steps-section {
  padding: 80px 0;
  margin: 0 auto;
  background: #edf9fa;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps-section .steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin: 40px auto 50px;
  max-width: 1340px;
  width: 100%;
}
.steps-section .step-box {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps-section .step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.steps-section .step-box img {
  width: 80px;
  margin-bottom: 20px;
}
.steps-section .step-box h3 {
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 0;
}
.steps-section .step-box p {
  color: #000;
  font-size: 14px;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}
.steps-section .contact-btn {
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  padding: 15px 25px;
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 120px;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}
.steps-section .contact-btn:hover {
  background-color: var(--accent-dark);
}

/* =============================================================
   FEATURES SECTION
   ============================================================= */
.features_Home {
  background-image: url("https://fbkwebsitetemplate.kinsta.cloud/wp-content/uploads/2025/10/MDFS-4232_Liv-Kit_3542-1.jpg");
  display: flex;
  justify-content: center;
  padding: 80px 0;
}
.features_Home ul li .features_Home,
.features_Home ul li section.fbk-section-highlights {
  display: none;
}
.fea_Inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1340px;
  gap: 30px;
}
.feature {
  background: #00a3bb;
  padding: 40px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}
.feature:hover::before {
  left: 100%;
}
.feature:hover {
  transform: translateY(-5px);
}
.feature:nth-child(2) {
  background: #078699;
}
.feature:nth-child(3) {
  background: #045a66;
}
.feature h3 {
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.feature p {
  font-size: 15px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.feature p:empty {
  display: none;
}
.feature ul {
  margin: 0;
  padding-left: 15px;
}
.feature ul li {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.9;
}

/* =============================================================
   VIDEO SECTION
   ============================================================= */
.video-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}
.video-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: #e5e5e5;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 167, 181, 0.4);
  }
}
.play-button {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 40px;
  color: var(--accent);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
  padding: 10px;
}
.play-button:hover {
  transform: scale(1.15);
  background: #00a7b5;
  color: white;
  box-shadow: 0 15px 50px rgba(0, 167, 181, 0.5);
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.contact-section {
  background: #045a66;
  padding: 80px 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-section.get_In {
  background-color: var(--accent) !important;
  padding: 80px 20px;
  text-align: center;
}
.contact-section > p {
  font-size: 16px;
  margin-bottom: 50px;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin-top: 40px;
  width: 100%;
}
.contact-method {
  text-align: center;
  transition: all 0.4s ease;
}
.contact-method:hover {
  transform: translateY(-5px);
}
.contact-method h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-method p {
  font-size: 15px;
  line-height: 1.8;
}
.contact-method br {
  display: inline;
}
.contact-method a {
  color: #fff;
  text-decoration: none;
}
.contact-method a:hover {
  opacity: 0.8;
}
.contact-icon {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #00a7b5 0%, #008a95 100%);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: all 0.4s ease;
}
.contact-method:hover .contact-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(0, 167, 181, 0.5);
}
.contact-icon a {
  color: var(--color-white);
}
.contact-icon a:hover {
  opacity: 0.7;
}
.view-all-btn {
  background: white;
  color: var(--accent);
  border: 2px solid var(--color-white);
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  margin: 80px auto 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: block;
  max-width: 160px;
}
.view-all-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =============================================================
   LOCATION AREA (map embed section)
   ============================================================= */
.location_Area {
  width: 100%;
  padding: 80px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.location_Area p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 40px;
}
.map-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials_Home {
  background: #00a7b5;
  padding: 80px 20px;
  color: white;
  text-align: center;
}
.testimonial-content {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.8;
}
.testimonial-author {
  font-size: 16px;
  margin-bottom: 30px;
}
.testimonials_Home .slick_slider_option {
  max-width: 1340px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* =============================================================
   GALLERY PAGE
   ============================================================= */
.gallery_main .gallery-section {
  background-color: #fff;
  padding: 60px 0 0;
}
.gallery_main .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  line-height: 0;
}
.gallery_main .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.gallery_main .play-icon {
  font-size: 36px;
  color: #008080;
  margin-left: 5px;
}
.gallery_main .play-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* =============================================================
   TESTIMONIALS PAGE
   ============================================================= */
.testimonials_main .container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}
.testimonials_main hr.section-line {
  width: 60px;
  height: 3px;
  background-color: #009bb1;
  border: none;
  margin: 10px auto 25px;
}
.testimonials_main .intro-section {
  background-color: #e8f5f7;
  text-align: center;
  padding: 80px 20px;
}
.testimonials_main .testimonial-section {
  background-color: #fff;
  text-align: center;
  padding: 80px 25px;
}
.testimonials_main .testimonial-section h3 {
  font-size: 28px;
  font-weight: 600;
}
.testimonials_main .testimonial-section p.subtext {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 10px auto 50px;
}
.testimonials_main .testimonial-grid {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}
.testimonials_main .testimonial-box {
  background-color: #046674;
  color: #fff;
  flex: 1 1 300px;
  padding: 40px 30px;
  position: relative;
  text-align: left;
}
.testimonials_main .testimonial-section .slick-slide {
  margin: 0 10px !important;
}
.testimonials_main .testimonial-box i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  border: solid 1px #fff;
  padding: 5px;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonials_main .testimonial-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.9);
}
.testimonials_main .testimonial-box strong {
  display: block;
  margin-top: 20px;
  font-size: 16px;
}
.testimonials_main .testimonial-box span {
  font-size: 14px;
  color: #d4f3f7;
}
.slick-list .testimonial-item .testimonial-box {
  background: #00a3bb;
}
.slick-list .testimonial-item:nth-child(2) .testimonial-box {
  background: #078699;
}
.slick-list .testimonial-item:nth-child(3) .testimonial-box {
  background: #045a66;
}
.testimonials_main
  .testimonial-section
  .slick-dots
  li.slick-active
  button::before {
  color: var(--accent) !important;
}
.testimonials_main .photo-section {
  background-color: #00a2b6;
  padding: 80px 0 120px;
  text-align: center;
  color: #fff;
}
.testimonials_main .photo-section h3 {
  font-size: 28px;
  color: #fff;
}
.testimonials_main .photo-slider {
  margin: 40px auto 0;
  max-width: 1340px;
  width: 100%;
}
.photo-slider .slick-slide {
  height: 700px !important;
}
.testimonials_main .photo-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-section .slick-next {
  right: 30px !important;
}
.photo-section .slick-prev {
  left: 15px !important;
  z-index: 1;
}
.photo-section .slick-prev::before,
.photo-section .slick-next::before {
  font-size: 38px;
}
.photo-section .custom-arrow svg path,
.fbk-image-wrap .custom-arrow svg path {
  fill: var(--color-white) !important;
}
.video_Area {
  background-color: #e8f5f7;
  padding: 80px 0;
  text-align: center;
}
.video_Area h3 {
  font-size: 28px;
}
.testimonials_main .video-block {
  display: flex;
  background-color: #00a2b6;
  color: #fff;
  max-width: 1340px;
  margin: 40px auto;
}
.testimonials_main .video-thumb {
  position: relative;
  width: calc(100% - 424px);
  height: 480px;
}
.testimonials_main .video-thumb iframe,
.testimonials_main .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials_main .video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 15px 20px;
}
.testimonials_main .video-desc {
  width: 400px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
}
.testimonials_main .video-desc p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  text-align: left;
}

/* =============================================================
   AMENITIES PAGE
   ============================================================= */
.amenity_main img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.amenity_main a {
  text-decoration: none;
}
.amenity_main .btn {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  min-width: 120px;
  text-align: center;
  margin-top: 10px;
}
.amenity_main .btn:hover {
  background-color: var(--accent-dark);
}
.amenity_main h2,
.amenity_main h3 {
  margin-bottom: 15px;
}
.amenity_main .amenity-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.amenity_main .amenity-section.option_list {
  background-color: #eaf8fa;
  padding: 0;
}
.amenity_Inner {
  max-width: 1340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.amenity-section.option_list .amenity-image {
  width: 50%;
}
.amenity-section.option_list img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.amenity_Para {
  padding: 60px 40px;
  width: 50%;
}
.amenity_main .amenity-text {
  flex: 1 1 400px;
}
.amenity_main .amenity-image {
  flex: 1 1 400px;
}
.amenity_main .amenity-section.option_list .amenity-image {
  flex: 1 1 50%;
}
.amenity_main .underline {
  width: 60px;
  height: 3px;
  background-color: #009bb1;
  margin-bottom: 20px;
}
.amenity_main .amenity-text p {
  margin-bottom: 25px;
  max-width: 500px;
}
.amenity_main .community-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.amenity_main .community-section .amenity_Inner {
  align-items: start;
}
.amenity_main .community-text {
  flex: 1 1 45%;
}
.amenity_main .community-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.amenity_main .community-text ul {
  list-style-type: disc;
  padding: 0;
  margin-left: 20px;
}
.amenity_main .community-text ul li {
  margin: 8px 0;
}
.amenity_main .community-images {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =============================================================
   CONTACT US PAGE
   ============================================================= */
.contactus_main .top-bar {
  background-color: #005e6b;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 16px;
}
.contactus_main .location-section {
  background: #fff;
  padding: 60px 0 0;
}
.contactus_main .location-section .content {
  margin: 0 auto 40px;
  text-align: center;
}
.contactus_main .map-container {
  width: 100%;
  height: 400px;
}
.contactus_main .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================
   HC (HOME CARE) SECTION
   ============================================================= */
.hc-top-band {
  background: #05a5b0;
  height: 84px;
}
.hc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.hc-hero-wrap {
  display: block;
  margin: 100px auto 0;
  max-width: 1340px;
  width: 100%;
}
.hc-hero {
  width: 100%;
  height: 500px;
}
.hc-hero img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
.hc-content {
  max-width: 1100px;
  margin: 60px auto 120px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
  padding: 0 48px;
}
.hc-title {
  font-size: 32px;
  margin: 0 0 18px;
  font-weight: 700;
}
.hc-accent {
  height: 4px;
  width: 56px;
  background: var(--accent);
  margin-bottom: 22px;
  border-radius: 2px;
}
.hc-left p {
  color: #000;
  font-size: 15px;
  margin: 0 0 22px;
  line-height: 1.6;
}
.hc-right {
  position: relative;
  padding-left: 28px;
  margin-top: 6px;
}
.hc-right::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.hc-bullets {
  list-style: disc;
  padding-left: 25px;
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}
.hc-bullets li {
  margin: 15px 0;
}
.hsc_Inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
}
.single-h2 {
  margin-bottom: 10px;
}

/* =============================================================
   FBK SECTIONS
   ============================================================= */
.fbk-sec {
  background: #e4f2f4;
  padding: 70px 0;
  box-sizing: border-box;
}
.fbk-sec-container {
  max-width: 1340px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
}
.fbk-sec-left {
  flex: 0 0 40%;
  min-width: 240px;
  box-sizing: border-box;
}
.fbk-sec-right {
  flex: 0 0 40%;
  min-width: 280px;
  box-sizing: border-box;
}
.fbk-sec-tag {
  display: inline-block;
  background: #6dcbd8;
  color: #fff;
  padding: 7px 19px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 700;
  margin-right: 10px;
}
.fbk-sec-text {
  color: #000;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}
.fbk-sec-btn {
  background: #00a3bb;
  color: #fff;
  padding: 12px 45px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}
.fbk-sec-btn:hover {
  background: #007e86;
}
.fbk-sec-img-box {
  width: 100%;
  height: 320px;
  background: #d0d0d0;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}
.fbk-sec-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fbk-section-highlights {
  background: #e4f2f4;
  padding: 70px 0 200px;
}
.fbk-hl-container {
  max-width: 1340px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.fbk-hl-stats {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-top: 40px;
}
.fbk-hl-item p {
  font-size: 22px;
  color: #000;
  text-align: left;
  margin-top: 0;
}
.fbk-hl-item .state-num {
  font-size: 80px;
  margin-bottom: 0;
}
.fbk-section-image {
  background: white;
  padding: 20px;
  display: flex;
  justify-content: center;
}
.fbk-white-box {
  max-width: 1340px;
  width: 100%;
  margin: auto;
  background: white;
  border-radius: 10px;
  padding: 60px 0 0;
  position: relative;
}
.fbk-image-wrap {
  width: 100%;
  height: 650px;
  position: relative;
  top: -180px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1340px;
}
.fbk-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fbk-image-wrap .slick-dotted.slick-slider {
  height: 100%;
}

/* =============================================================
   SLICK SLIDER OVERRIDES
   ============================================================= */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-dots {
  bottom: -35px !important;
}
.slick-dots li button::before {
  font-size: 16px !important;
}
.slick-dots li.slick-active button::before {
  color: var(--color-white) !important;
}
.slick-prev::before,
.slick-next::before {
  display: none !important;
}
.slick-next.custom-arrow {
  right: 10px !important;
  height: auto;
  width: auto;
}
.slick-prev.custom-arrow {
  left: 10px !important;
  z-index: 100;
  width: auto;
  height: auto;
}
.custom-arrow svg {
  width: 45px;
}
.custom-arrow svg path {
  fill: var(--accent);
}
.slick_slider_option .slick-next,
.fbk-sec-right .slick-next {
  right: 0;
}
.slick_slider_option .slick-prev,
.fbk-sec-right .slick-prev {
  left: 0;
}
.available-homes .slick-prev.custom-arrow,
.available-homes .slick-next.custom-arrow,
.testimonial-grid .slick-next.custom-arrow,
.testimonial-grid .slick-prev.custom-arrow {
  display: none !important;
}
.available-homes.single_property_page
  .slick-dots
  li.slick-active
  button::before {
  color: var(--accent) !important;
}
.post-type-archive-inventory.non_home_page .bmd-mh-inner .slick-list {
  height: 620px;
  overflow: hidden;
}
.post-type-archive-inventory .bmd-mh-inner .slick-track,
.post-type-archive-inventory .bmd-mh-inner .bmd-mh-slide {
  height: 620px;
  overflow: visible;
}
.non_home_page .bmd-main-hero {
  z-index: 2;
}
.bmd-main-hero {
  width: 100%;
  display: inline-block;
  position: relative;
}
.bmd-mh-inner.main-hero-slider {
  margin-bottom: 0 !important;
}
.non_home_page .bmd-mh-slide-inner {
  align-items: center;
  justify-content: center;
}
.bmd-mh-slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100vw;
  width: 100%;
  height: 100%;
  position: relative;
}

/* =============================================================
   MISC BUTTONS & LINKS
   ============================================================= */
.bmd-red-button {
  display: inline-block;
  padding: 15px 25px;
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 120px;
  text-align: center;
  margin-top: 35px;
}
.bmd-red-button:hover,
.bmd-red-button:focus {
  background-color: var(--accent-dark);
}

/* =============================================================
   LOCATION PAGE — DESKTOP STYLES
   ============================================================= */
body.page-template-location .hero {
  padding: 40px 0;
}
body.page-template-location .hero-content {
  padding: 0 clamp(20px, 5vw, 120px);
  max-width: 800px;
  margin: 0 auto;
}
body.page-template-location .hero h1 {
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: 0.5px;
  margin: 16px 0;
}
body.page-template-location .hero p {
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.3px;
}
body.page-template-location .feature-cards-section {
  background-color: var(--muted);
}

/* Grid sections — padding replaces old 120px 300px */
.feature-cards-grid,
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 40px;
  column-gap: 40px;
  padding: 60px clamp(16px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.close-section-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
  padding: 0 clamp(16px, 5vw, 80px) 60px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.close-section .heading_cont {
  text-align: center;
  margin-bottom: 40px;
  padding: 48px clamp(16px, 5vw, 80px) 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.location-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
  padding: 0 clamp(16px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Feature cards */
.feature-card {
  background-color: var(--color-white);
  padding: 40px;
}
.feature-card-title {
  color: var(--accent);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

/* Attraction blocks */
.attraction-block {
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.attraction-block img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.attraction-block-body {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.attraction-block-body h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.attraction-block-body .btn_blue {
  margin-top: auto;
  margin-bottom: 40px;
  align-self: flex-start;
}

/* =============================================================
   CLOSE SECTION
   ============================================================= */
.close-section {
  background-color: #eaf5f7;
  padding: 60px 0;
}
.close-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}
.close-highlight-box {
  background-color: #3ab5c1;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
}
.close-highlight-box h3 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.6px;
  margin: 0;
}
.close-body-text {
  margin: 0;
}
.close-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.close-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.close-highlight-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #3ab5c1;
  margin-top: 3px;
}
.close-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.close-highlight-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3ab5c1;
  line-height: 1.4;
}
.close-highlight-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}
.close-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  min-width: 0;
  width: 100%;
}
.area-detail-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
.area-detail-card--full {
  width: 100%;
}
.area-detail-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.area-detail-card--half {
  width: 100%;
  box-sizing: border-box;
}
.area-detail-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3ab5c1;
  margin: 0 0 14px;
  line-height: 1.3;
}
.area-detail-body {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 12px;
}
.area-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-detail-list li {
  padding-left: 18px;
  position: relative;
}
.area-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3ab5c1;
}
.additional-attractions-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.additional-attractions-pills li {
  border: 1px solid rgba(0, 163, 187, 0.2);
  background: #edf9fa;
  border-radius: 999px;
  padding: 6px 16px;
  line-height: 1.4;
  white-space: nowrap;
}

/* =============================================================
   LOCATION CTA BLOCK
   ============================================================= */
.location-cta-section {
  background-color: #fff;
  padding: 70px 0;
}
.location-cta-image-wrap {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.location-cta-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.location-cta-content .h2_title {
  margin: 0;
}
.location-cta-content > div p {
  margin: 0 0 10px;
}
.location-cta-content address {
  line-height: 1.4;
  font-style: normal;
}
.location-cta-content address strong {
  display: block;
  font-weight: 700;
}
.location-cta-content .btn_blue {
  align-self: flex-start;
}

/* =============================================================
   FOOTER CTA BAND
   ============================================================= */
.footer_cta_container {
  padding: 0 clamp(16px, 5vw, 60px);
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}
.footer_cta_container p {
  max-width: 600px;
  margin: 30px auto;
}
.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.footer-cta-buttons .btn_White {
  text-transform: none;
}

/* =============================================================
   RESPONSIVE — 1440px cap
   ============================================================= */
@media (max-width: 1440px) {
  .container,
  .steps-section .steps-container,
  .fea_Inner,
  .footer-grid,
  .contact-methods,
  .site-header .container,
  .homne_Welcome,
  .video-section,
  .hsc_Inner,
  .hc-hero-wrap,
  .grid-container,
  .amenity_Inner,
  .testimonials_main .video-block,
  .fbk-hl-container {
    max-width: 96%;
  }
}

/* =============================================================
   RESPONSIVE — 1024px (disable fixed bg on tablet/touch)
   ============================================================= */
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (min-width: 993px) and (max-width: 1340px) {
  .fbk-sec-container {
    gap: 32px;
    padding: 0 32px;
  }
  .fbk-sec-left {
    flex: 0 0 30%;
  }
  .fbk-sec-right {
    flex: 0 0 40%;
  }
  .fbk-sec-img-box {
    height: 300px;
  }
}

/* =============================================================
   RESPONSIVE — 991px
   ============================================================= */
@media (max-width: 991px) {
  .hero {
    height: 400px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 17px;
  }
  .h2_title {
    font-size: 34px;
  }
  .homne_Welcome,
  .video-section {
    margin: 30px auto;
  }
  .gallery_Section,
  .available-homes,
  .location_Area,
  .contact-section,
  .steps-section,
  .features_Home,
  .testimonials_Home,
  .footer-top,
  .amenity-section,
  .amenity_main .amenity-section,
  .amenity_main .amenity-section.option_list {
    padding: 35px 0;
  }
  .inventory_value_benefits {
    padding: 0 0 35px;
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .grid-container .listing-info h2,
  .grid-container .listing-info h3 {
    font-size: 16px;
  }
  .grid-container .details,
  .grid-container .agent {
    font-size: 14px;
  }
  .map-container {
    height: 400px;
  }
  .contact-icon {
    width: 100px;
    height: 100px;
    font-size: 38px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px;
    transition: left 0.4s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .site-nav.active {
    left: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .site-nav ul li {
    border-top: solid 1px #e7e7e7;
    padding-top: 20px;
  }
  .site-nav ul li a {
    font-size: 1.1rem;
  }
  .nav-cta {
    display: none;
  }
  .hc-hero-wrap {
    margin: 60px auto 0;
  }
  .amenity_Inner {
    flex-direction: column;
  }
  .amenity_main .underline {
    margin: 0 auto 20px;
  }
  .amenity_main .amenity-text {
    flex: 100%;
  }
  .amenity-section.option_list .amenity-image {
    width: 100%;
  }
  .amenity_main .amenity-section.option_list .amenity-image {
    flex: 100%;
    width: 94%;
  }
  .amenity-section.option_list img {
    height: auto;
  }
  .amenity_Para {
    padding: 30px 0;
    width: 94%;
  }
  .amenity_main .amenity-section {
    flex-direction: column;
    text-align: center;
  }
  .amenity_main .community-section {
    flex-direction: column;
    padding: 35px 0;
  }
  .amenity_main .community-text,
  .amenity_main .community-images {
    flex: 100%;
    width: 100%;
  }
  .amenity_main .community-section .underline {
    margin: 0 0 20px;
  }
  .gallery_main .gallery-grid,
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials_main .intro-section,
  .testimonials_main .testimonial-section,
  .testimonials_main .photo-section,
  .video_Area {
    padding: 40px 20px;
  }
  .photo-slider .slick-slide {
    height: 340px !important;
  }
  .video_Area .h2_title {
    text-align: center;
  }
  .testimonials_main .video-block {
    flex-direction: column;
    margin: 20px auto;
  }
  .testimonials_main .video-thumb {
    height: 320px;
    width: 100%;
  }
  .testimonials_main .video-desc {
    width: 94%;
    padding: 3%;
  }
  .contact-section.get_In {
    padding: 35px 20px;
  }
  .fbk-sec-container {
    flex-direction: column-reverse;
    gap: 28px;
    padding: 0 20px;
  }
  .fbk-sec-left,
  .fbk-sec-right {
    min-width: 0;
    width: 100%;
  }
  .fbk-sec-img-box {
    height: 260px;
  }
  .fbk-hl-stats {
    flex-wrap: wrap;
    gap: 90px;
    padding: 0 20px;
  }
  .fbk-hl-item .state-num {
    font-size: 60px;
  }
}

@media (max-width: 980px) {
  .hc-content {
    grid-template-columns: 1fr 320px;
  }
}

/* =============================================================
   RESPONSIVE — 900px (location page tablet)
   ============================================================= */
@media (max-width: 900px) {
  .menu-item-has-children > .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
  }
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attraction-grid {
    grid-template-columns: 1fr;
  }
  .close-section-layout {
    grid-template-columns: 1fr;
  }
  .area-detail-row--half {
    grid-template-columns: 1fr 1fr;
  }
  .location-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-cta-image-wrap {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
@media (max-width: 800px) {
  .hc-content {
    grid-template-columns: 1fr;
  }
  .hc-right {
    padding-left: 0;
    margin-top: 0;
  }
  .hc-right::before {
    display: none;
  }
  .hc-left p:last-child {
    margin: 0;
  }
  .location-cta-inner {
    gap: 30px;
  }
}

/* =============================================================
   RESPONSIVE — 768px
   ============================================================= */
@media (max-width: 768px) {
  .hero {
    height: 400px;
    background-size: cover;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .h2_title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .pipe_seprater {
    margin: 0 auto 20px;
  }
  .property-cards,
  .steps,
  .features,
  .contact-methods {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer-nav ul {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 16px;
  }
  .footer-right {
    text-align: center;
    margin-top: 30px;
    width: 100%;
  }
  .map-container {
    height: 340px;
  }
  .steps-section .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .fea_Inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-section p {
    max-width: 100%;
    margin: 0 auto;
  }
  .contact-method br {
    display: none;
  }
  .grid-container {
    grid-template-columns: 1fr;
  }
  .hsc_Inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .container {
    font-size: 15px;
    line-height: 1.5;
  }
  .container,
  .steps-section .steps-container,
  .fea_Inner,
  .footer-grid,
  .contact-methods,
  .site-header .container,
  .homne_Welcome,
  .video-section,
  .hsc_Inner,
  .hc-hero-wrap,
  .grid-container,
  .amenity_Inner {
    max-width: 94%;
  }
  .amenity_main .amenity-image {
    flex: 100%;
  }
  .gallery_main .play-button {
    width: 60px;
    height: 60px;
  }
  .gallery_main .play-icon {
    font-size: 28px;
  }
  .image-grid-item {
    height: auto;
  }
  .testimonials_main .testimonial-box {
    background-color: #046674;
    flex: 100%;
    padding: 30px 20px;
  }
  .available-homes.single_property_page .bmd-cta-centered.mobile {
    display: block !important;
  }
  .fbk-section-highlights {
    padding: 40px 0;
  }
  .fbk-hl-stats {
    gap: 60px;
  }
  .state-num {
    font-size: 30px !important;
  }
  .fbk-hl-item p {
    font-size: 18px;
  }
  .fbk-image-wrap {
    height: 260px;
    top: 0;
  }
  .fbk-section-image {
    padding: 20px;
  }
  .fbk-hl-item .state-num {
    font-size: 40px;
  }
  .custom-arrow svg {
    width: 30px;
  }
  .fbk-sec-text {
    margin-bottom: 0;
    margin-top: 0;
  }
}

/* =============================================================
   RESPONSIVE — 600px (location page mobile)
   ============================================================= */
@media (max-width: 600px) {
  .hero {
    height: auto;
    min-height: 420px;
    padding: 60px 0;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }
  .attraction-grid {
    padding: 24px 16px;
  }
  .attraction-block-body {
    padding: 0 20px;
  }
  .attraction-block-body h3 {
    font-size: 24px;
  }
  .close-section {
    padding: 40px 0;
  }
  .close-section-layout,
  .close-section .heading_cont,
  .location-cta-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .area-detail-row--half {
    grid-template-columns: 1fr;
  }
  .close-highlight-box {
    padding: 28px 20px;
  }
  .close-highlight-box h3 {
    font-size: 26px;
    line-height: 1.3;
  }
  .area-detail-card {
    padding: 20px;
  }
  .additional-attractions-pills {
    gap: 8px;
  }
  .additional-attractions-pills li {
    white-space: normal;
  }
  .location-cta-content .h2_title {
    font-size: 26px;
  }
  .location-cta-section {
    padding: 40px 0;
  }
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-cta-group .btn_blue {
    margin-right: 0;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }
  .footer_cta_container {
    padding: 0 16px;
  }
  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-cta-buttons .btn_White {
    width: 100%;
    max-width: 280px;
  }
  .footer-top .container {
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
  }
}

/* =============================================================
   RESPONSIVE — 480px
   ============================================================= */
@media (max-width: 480px) {
  .gallery_main .gallery-grid,
  .image-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fbk-hl-item p {
    font-size: 18px;
  }
  .fbk-hl-stats {
    gap: 20px;
  }
  .fbk-image-wrap {
    height: 200px;
    top: 0;
  }
  .fbk-hl-item .state-num {
    font-size: 20px;
  }
  .fbk-sec {
    padding: 48px 0;
  }
  .fbk-sec-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .fbk-sec-img-box {
    height: 200px;
  }
  .testimonials_main .testimonial-box i {
    font-size: 24px;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -30%);
  }
}
