/*
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');


:root{
  --accent:#00A3BB; /* teal */
  --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;
}

body {
  margin: 0;
  font-family: var( --font-sans);
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3 {
    font-family: var( --font-title);
    font-weight: 700;
}

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;
	max-width: 1340px;
	margin: 0 auto;
}

/* .home_page_bannner{
    overflow: hidden;
} */

.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-weight: 500;
  /* font-family: var( --font-title); */
  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);
}

/* === Mobile Menu Toggle === */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}

.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);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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);
}

/* Scroll to Top Button */
.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);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1920');
    background-size: cover;
    background-position: center;
    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;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.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;
}

.hero p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.container_Short {
	max-width: 1000px;
	width: 100%;
	text-align: center;
  margin: 0 auto;
  display: block;
}
/* Welcome Section */
.homne_Welcome {
	max-width: 1340px;
	margin: 80px auto;
	padding: 0 20px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.h2_title {
    font-size: 42px;
    margin-bottom: 30px;
    color: #000;
    margin-top: 0;
    line-height: 1.3;
}

.homne_Welcome p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 15px;
}
.pipe_seprater {
	background: #00A3BB;
	height: 3px;
	width: 100px;
	display: flex;
	margin: 0 auto 30px;
}

/* Home 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%;
	height: 280px;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: all 0.4s ease;
}

.image-grid-item:hover {
    transform: translateY(0);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-grid-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 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 Section */
.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;
}

.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: 0px !important;
}
 .slick-slider {
     position: relative;
     display: block;
     box-sizing: border-box;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     -webkit-touch-callout: none;
     -khtml-user-select: none;
     -ms-touch-action: pan-y;
     touch-action: pan-y;
     -webkit-tap-highlight-color: transparent;
}
 .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 {
     height: 620px;
     overflow: visible;
}
 .post-type-archive-inventory .bmd-mh-inner .bmd-mh-slide{
     height: 620px;
     overflow: visible;
}
 .non_home_page .bmd-mh-slide-inner {
     align-items: center;
     justify-content: center;
}
 .bmd-mh-slide-inner {
     display: flex ;
     -webkit-align-items: center;
     align-items: center;
     -webkit-justify-content: center;
     justify-content: center;
     -ms-flex-direction: column;
     -webkit-flex-direction: column;
     flex-direction: column;
     max-width: 100vw;
     width: 100%;
     height: 100%;
     position: relative;
}
.grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1340px;
	margin: 30px auto 0;
	width: 100%;
}
/* ---- LISTING BOX ---- */
.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%;
	height: 260px;
	display: flex;
}
.listing-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
/* ---- TEXT SECTION ---- */
.grid-container .listing-info {
	padding: 20px;
	text-align: left;
	display: flex;
	flex-direction: column;
}
.grid-container .listing-info h2 {
	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 {
	font-family: Open Sans;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.6px;
	color: #000;
	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;
}
.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);
}
.steps-section {
	padding: 80px 0;
	margin: 0 auto;
	background: #EDF9FA;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* Grid layout for 3 boxes */
.steps-section .steps-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	justify-content: center;
	align-items: stretch;
	margin-bottom: 50px;
	max-width: 1340px;
	width: 100%;
	margin-top: 40px;
}
/* Each step box */
.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);
}
/* Icon styles */
.steps-section .step-box img {
	width: 80px;
	margin-bottom: 20px;
}
/* Step title */
.steps-section .step-box h3 {
	color: var(--accent);
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: bold;
	margin-top: 0;
}
/* Step description */
.steps-section .step-box p {
	color: #000;
	font-size: 14px;
	margin: 0;
	text-align: center;
	line-height: 1.6;
}
/* Contact button */
.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);
}
/* ---- RESPONSIVE ---- */
 @media (max-width: 768px) {
     .grid-container .listing-info h2 {
         font-size: 1.1rem;
    }
     .grid-container .listing-info h3 {
         font-size: 0.95rem;
    }
}
.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;
}
 
/* ========== SECTION 1: AMENITY FEATURE ========== */
.amenity_main .amenity-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0;
}
.amenity_Inner {
	max-width: 1340px;
	display: flex;
	justify-content: center;
	align-items: center;
} 
.amenity_main .amenity-section.option_list {
	background-color: #eaf8fa;
	padding: 0;
}
.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 .underline {
  width: 60px;
  height: 3px;
  background-color: #009bb1;
  margin-bottom: 20px;
}
 
.amenity_main .amenity-text p {
  margin-bottom: 25px;
  max-width: 500px;
}
 
.amenity_main .amenity-image {
  flex: 1 1 400px;
}
.amenity_main .amenity-section.option_list .amenity-image {
    flex: 1 1 50%;
}
 
/* ========== SECTION 2: COMMUNITY AMENITIES ========== */
.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;
}
 
/* ========== SECTION 3: CONTACT ========== */
.contact-section.get_In {
  background-color:var(--accent) !important;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.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 Section */
.location_Area {
	width: 100%;
	padding: 80px 0px 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);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Features Section */
.features_Home {
	background: 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;
}
.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;
}

/* 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;
}

.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;
}

@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:hover {
    transform: scale(1.15);
    background: #00a7b5;
    color: white;
    box-shadow: 0 15px 50px rgba(0,167,181,0.5);
}

/* Testimonials Section */
.testimonials_Home {
    background: #00a7b5;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
	font-size: 16px;
	margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
	background: #045A66;
	padding: 80px 0;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.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);
}

.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;
}

.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-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;
}
.inventory_value_benefits {
	display: flex;
	justify-content: center;
	padding: 0 0 60px;
	flex-direction: column;
}

 .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;
}
.inventory_home_item {
     padding: 10px;
}
.grid-container.grid-container-home {
	display: block !important;
	grid-template-columns: auto !important;
	gap: 0 !important;
	margin: 0px auto !important;
	width: 100% !important;
	max-width: 1340px;
}
 /* .inventory_homes {
     overflow: hidden;
} */
.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);
}
.video-container iframe {  
  width: 100%;
  height: 100%;
}
.hero::after {
	background-color: rgba(0,0,0,0.3);
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	position: absolute;
	z-index: 16;
	height: 100%;
}
.slick_slider_option .slick-next, .fbk-sec-right  .slick-next {
	right: 0;
}
.slick_slider_option .slick-prev, .fbk-sec-right .slick-prev {
	left: 0;
}
.testimonials_Home .slick_slider_option {
  max-width: 1340px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.slick-dots li button::before {
	font-size: 16px !important;
}
.slick-dots li.slick-active button::before {
	color: var(--color-white) !important;
}
.slick-dots {
	bottom: -35px !important;
}
.feature ul {
  margin: 0;
  padding-left: 15px;
}
.feature ul li {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.9;
}  
.feature p:empty {
  display: none;
}
.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;
}
.contact-method a {
  color: #fff;
  text-decoration: none;
}
.contact-method a:hover {
  opacity: 0.8;
}
.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 .video-wrapper {
  position: relative;
  display: inline-block;
  max-width: 800px;
  width: 100%;
}
.gallery_main .video-thumb {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.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_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 80px;
}
.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;
    border-radius: 0;
    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;
}

/* ========== SECTION 3: RESIDENT PHOTOS ========== */
.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;
}
.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;
}
/* ========== SECTION 4: RESIDENT VIDEOS ========== */
.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{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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;
}
.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;
}
.available-homes.single_property_page {
	background: #EDF9FA;
}
.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);
}
.available-homes.single_property_page  .bmd-cta-centered.mobile {
	display: none;
}
.available-homes.single_property_page .slick-dots li.slick-active button::before {
	color: var(--accent) !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);
}
.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;
}
.photo-section .custom-arrow svg path, .fbk-image-wrap .custom-arrow svg path {
	fill: var(--color-white) !important;
}
.fbk-image-wrap .slick-dotted.slick-slider {
	height: 100%;
}
.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;
}
@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;   
  }
}
.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-section-image {
    background: white;   
    padding: 50px 0 0px;  
}
.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-section-image {
	padding: 20px;
	display: flex;
	justify-content: center;
}
.single-h2{
	margin-bottom: 10px;
}
.fbk-hl-item .state-num {
	font-size: 80px;
	margin-bottom: 0;
}

 







@media(max-width:1440px){
.container_Short, .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%;
} 
}

 @media(max-width:991px){
.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 .listing-info h3, .grid-container .listing-info h2 {
	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;
}
.grid-container {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}  
.hero {
  height: 400px;
}
.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
    }
}
 @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;
}    
}

/* === Mobile Styles === */
@media (max-width: 768px) {
  .property-cards,
    .steps,
    .features,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero {
        height: 400px;
        background-size: cover;
    }
.footer-grid {
	grid-template-columns: 1fr;
	text-align: center;
	gap: 20px;
}

  .footer-nav ul {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
.h2_title {
	margin-bottom: 20px;
}  
.pipe_seprater {
	margin: 0 auto 20px;
}
.h2_title {
	font-size: 30px;
}
.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 0;
}
.contact-method br {
  display: none;
}
.grid-container {
	grid-template-columns: repeat(1, 1fr);
} 
.hsc_Inner {
  grid-template-columns: 1fr;
	gap: 20px;
}
.container_Short {
	font-size: 15px;
	line-height: 1.5;
}
.container_Short, .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: 180px;
}
.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: 40px;
    }
	.state-num {
	font-size: 30px !important;
}
.fbk-hl-item p {
	font-size: 18px;
}
  .fbk-hl-stats {
	gap: 60px;
}
.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;
}
.hero-content {
	padding: 0 20px;
}
}

@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-hl-stats {
     gap: 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%);
}  
}