/* FONTS */
/* montserrat-regular */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* Critical for Lighthouse */
  src: url('https://media.prismapixel.com/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

/* montserrat-600 (Semi-Bold) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://media.prismapixel.com/fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
	
/* montserrat-700 (Bold) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://media.prismapixel.com/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* great-vibes-regular */
@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://media.prismapixel.com/fonts/great-vibes-v21-latin-regular.woff2') format('woff2');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
	overflow-y: scroll;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
	position: relative;
    scrollbar-gutter: stable; 
}
.no-scroll {
  overflow: hidden;
  overscroll-behavior: contain;
}
h1, h2, h3, h4, h5 {
    line-height: 1.2;
}
.script-font {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visable {
outline: 3px solid rgba(212, 192, 16, 0.8);
outline-offset: 3px;
} /* --- Buttons --- */
a.btn, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    appearance: none;
    font-family: inherit;
    line-height: 1.2;
    border: none;
    background: none;
}
a.btn-primary, .btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    border: 2px solid var(--primary-color);
}
a.btn-primary:hover, .btn-primary:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
a.btn-outline, .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
a.btn-outline:hover, .btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
}
a.btn-secondary-outline, .btn-secondary-outline {
    background-color: transparent;
    color: var(--tons-blue);
    border: 2px solid var(--tons-blue);
    padding: 10px 25px;
}
a.btn-secondary-outline:hover, .btn-secondary-outline:hover {
    background-color: var(--tons-blue);
    color: var(--white);
    transform: translateY(-2px);
} /* --- Header & Nav --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: var(--tons-blue);
    padding: 10px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.logo img {
    height: 32px;
    width: auto;
    transition: height 0.3s ease;
}

@media (min-width: 480px) {
.logo img {
    height: 40px;
}
.navbar {
    padding: 15px 20px;
}
}

@media (min-width: 768px) {
.logo img {
    height: 50px;
}
.navbar {
    padding: 20px 40px;
}
.navbar.scrolled {
    padding: 10px 40px;
}
} /* Right Nav Section */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--white);
}
.nav-phone, .nav-text-link {
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: color 0.3s;
    text-transform: uppercase;
}

@media (min-width: 480px) {
.nav-phone, .nav-text-link {
    font-size: 0.9rem;
}
}
.nav-phone:hover, .nav-text-link:hover {
    color: var(--primary-color);
} /* --- Animated Navigation CTAs --- */
.header-cta {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(15px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease, max-width 0.5s ease, margin 0.5s ease, padding 0.5s ease;
    display: inline-flex;
    align-items: center;
    margin: 0;
    visibility: hidden;
}
.navbar.scrolled .header-cta {
    visibility: visible;
}
.header-cta.btn-primary {
    padding-left: 0;
    padding-right: 0;
} /* Reveal Rules */
.navbar.scrolled .header-cta.btn-primary {
    opacity: 1;
    max-width: 200px;
    transform: translateX(0);
    pointer-events: auto;
    margin-left: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
}
.mobile-toggle {
    background: none;
    border: none;
    padding: 5px;
    color: white;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}
.mobile-toggle svg {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
.navbar.scrolled .nav-text-link.header-cta {
    opacity: 1;
    max-width: 250px;
    transform: translateX(0);
    pointer-events: auto;
    margin-left: 20px;
}
.navbar.scrolled .header-cta.btn-primary {
    margin-left: 20px;
}
.mobile-toggle {
    margin-left: 15px;
}
}

@media (min-width: 1024px) {
.navbar.scrolled .header-cta.btn-primary {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-left: 25px;
}
.navbar.scrolled .nav-text-link.header-cta {
    margin-left: 25px;
}
.mobile-toggle {
    margin-left: 20px;
}
} /* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh; /* Mobile UX Optimization */
    height: 100dvh; /* Mobile UX Optimization: Dynamic Viewport Height */
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 0;
}
.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
} /* Slide-out Drawer */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    height: 100svh; /* Mobile UX Optimization */
    height: 100dvh; /* Mobile UX Optimization: Dynamic Viewport Height */
    width: 85%;
    max-width: 380px;
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 10px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.nav-links.active {
    right: 0;
}
.nav-links > a, .nav-links .submenu-container > a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-links > a:hover, .nav-links .submenu-container > a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}
.nav-section-label {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: default;
    user-select: none;
    text-transform: uppercase;
}
.submenu-container {
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}
.submenu-container a {
    font-size: 0.95rem;
    opacity: 0.8;
    border: none;
    padding: 8px 0;
}
.drawer-footer-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 20px;
}
.nav-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
} /* --- Hero Section - Reveal Effect Implementation --- */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh; /* Mobile UX Optimization */
    height: 100dvh; /* Mobile UX Optimization: Dynamic Viewport Height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
    transition: opacity 0.3s ease;
}
.hero2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
    transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
	.hero2 {
		height: 500px;
	}
}
.hero-video {
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: opacity .3s ease;
}

@media (prefers-reduced-motion: reduce) {
.hero-video {
    display: none;
}
.hero-fallback {
    display: block;
}
}
.hero-video.is-playing {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.hero-content {
    padding: 0 20px;
    z-index: 3;
}
.hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
    opacity: 1;
    transition: opacity .3s ease;
}
.hero-fallback.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.hero h1, .page-header h1, .hero2 h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero h1 .script-font, .page-header h1 .script-font, .hero2 h1 .script-font {
    font-size: 4rem;
    color: var(--white);
    margin-top: 10px;
}
@media (max-width: 768px) {
	.page-header h1, .hero2 h1 {
    	font-size: 1.8rem;
	}
	.page-header h1 .script-font, .hero2 h1 .script-font {
    	font-size: 3.5rem;
	}
}
/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}
.scroll-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}
.scroll-chevron {
    animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(8px);
}
60% {
transform: translateY(4px);
}
} /* Fixed Centering logic */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
.hero-buttons {
    flex-direction: row;
    max-width: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero {
    background-image: url('https://media.prismapixel.com/LakeAndBldgs.webp');
    background-size: cover;
    background-position: center;
  }
}
} /* --- Reveal Content --- */
.intro {
    position: relative;
    z-index: 5;
    margin-top: 100vh;
    margin-top: 100svh; /* Mobile UX Optimization */
    margin-top: 100dvh; /* Mobile UX Optimization: Dynamic Viewport Height */
    padding: 100px 20px 40px;
    text-align: center;
    background-color: var(--white);
}
.intro2 {
	position: relative;
	z-index: 5;
	margin-top: 600px;
	padding: 100px 20px 40px;
	text-align: center;
	background-color: var(--white);
}
@media (max-width: 767px) {
	.intro2 {
		margin-top: 500px;
	}
}
.lede {
    position: relative;
    z-index: 5;
    padding: 100px 20px 40px;
    text-align: center;
    background-color: var(--white);
}
.page-header {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
/*@media (min-width: 768px) {
}*/
@media (max-width: 767px) {
	.page-header {
		height: 500px;
	}
}
.page-header-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.page-header-text {
	text-align: center;
	color: var(--white);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	

	/* Center Text */
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;

	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
	padding-bottom: 20px;
}
section, footer {
    position: relative;
    z-index: 5;
    background-color: var(--white);
}
.intro h2, .lede h2 {
    font-size: 1.8rem;
    color: var(--tons-blue);
    margin-bottom: 20px;
}
.intro h2 .script-font, .lede h2 .script-font {
    font-size: 3.5rem; /* FIX: Updated to 3.5rem to match other headers */
    color: var(--tons-blue);
    margin-top: 5px;
}
.intro p, .lede p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 1.05rem;
}
.intro-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
} /* --- At a Glance Grid --- */
.at-a-glance {
    padding: 40px 20px 80px;
    max-width: 100%;
    margin: 0 auto;
}
.glance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
.glance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 65%;
    max-width: 1200px;
    margin: 0 auto;
}
}
.glance-grid-3up {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.glance-item:last-child:nth-child(2n - 1) {
	grid-column: span 2;
}
@media (min-width: 768px) {
.glance-grid-3up {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.glance-item:last-child:nth-child(2n - 1) {
	grid-column: span 1;
}
}

.glance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.glance-item h4 {
	color: var(--tons-blue);
}
.glance-item:hover {
    transform: scale(1.1);
}
.glance-item i {
    color: var(--primary-color);
    margin-bottom: 12px;
}
.glance-item span {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tons-blue);
}
.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--tons-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.3s ease;
} 
.glance-item span.glance-info {
	font-size: 1rem;
    color: var(--text-dark);
	font-weight:400;
	text-transform: none;
	letter-spacing: normal;
}
.glance-item a:hover {
	font-weight: 600;
}
/* --- Global Carousel Track Styles --- */
.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar {
display: none;
} /* --- Specific Override for Floor Plans Grid --- */
#floorPlanTrack {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    justify-content: center;
    gap: 20px;
} /* --- Card Styles --- */
.plan-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 20px 0px 20px;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.plan-card h4 {
    color: var(--tons-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.plan-card h5 {
	font-size: 1.2rem;
	color: var(--tons-blue);
	text-transform: uppercase;
}
.plan-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tons-blue);
}
.plan-image, .plan-carousel {
    width: 100%;
    height: 300px;
    background-color: var(--white);
    margin-bottom: 0px;
    object-fit: contain;
    border-radius: 4px;
    padding: 0px;
    position: relative;
    overflow: hidden;
}
.plan-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.plan-carousel-track::-webkit-scrollbar {
display: none;
}
.plan-slide img {
  display: block;
  max-width: 100%;
  height: auto;
}
.plan-carousel-item {
	display: flex;
	flex-direction: column;
	width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
	align-items: center;
	min-width: 100%;
}

.plan-carousel img {
	width: 100%;
    min-width: 100%;
    height: 90%;
    object-fit: contain;
    padding: 10px;
}
.mini-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(91, 123, 145, 0.7);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}
.mini-nav svg {
    width: 16px;
    height: 16px;
}
.mini-nav:hover {
    background: rgba(91, 123, 145, 0.95);
}
.mini-nav.prev {
    left: 10px;
}
.mini-nav.next {
    right: 10px;
}

.mini-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.mini-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(91, 123, 145, 0.3);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.mini-indicator-dot.active {
    width: 20px;
    background-color: var(--tons-blue);
}

/* Floor Plan Anchor Padding */
#aruba, #cozumel, #bermuda, #montego, #eastbay, #cayman, #bimini {
	scroll-margin-top: 25vh;
}	
	
/* --- Floor Plans Section --- */
.floor-plans {
    background-color: var(--tons-blue);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.floor-plans-header {
    padding: 0 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.floor-plans-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.floor-plans .script-font {
    font-size: 3.5rem;
    margin-top: 5px;
}
.fp-carousel {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: 20px;
	height: 250px;
	align-items: stretch;
	padding-bottom: 10px;
	-webkit-overflow-scrolling: touch;
/*    height: 288px;
    overflow: hidden;*/
}
.fp-carousel::-webkit-scrollbar {
	display: none;
}
.slider-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 15px;
	position: relative;
	bottom: 8px;
	flex: 0 0 100%;
	scroll-snap-align: center;
	text-align: center;
}
.fp-carousel .plan-image {
	max-height: 100%; 
	width: auto; 
	object-fit: contain;
}


/* Container for each floorplan slide */
.fp-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the title and image */
    text-align: center;
    padding: 10px;
	scroll-snap-align: center;
	min-width: 100%;
}

/* Ensure the image still behaves inside the wrapper */
.fp-item img {
    max-width: 100%;
    height: 210px;
    display: block;
    object-fit: contain; /* Prevents stretching */
}

/* Style your title */
.fp-item h4 {
    margin-bottom: 0px;
    font-size: 1.2rem;
    color: var(--tons-blue);
    font-weight: bold;
	text-transform: uppercase;
	touch-action: pan-x;
	-webkit-overflow-scrolling: touch;
}


/* --- Teams --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
	.team-grid {
    	grid-template-columns: repeat(4, 1fr);
    	gap: 40px;
		width:100%;
    	max-width: 800px;
    	margin: 0 auto;
	}
}
.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.team-item h4 {
	color: var(--white);
}
.team-item:hover {
    transform: scale(1.1);
}
.team-item i {
    color: var(--primary-color);
    margin-bottom: 12px;
}
.team-item span {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.team-item img {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: var(--white);
	margin-bottom:20px;
}
/* --- Photo Gallery (EDGE TO EDGE) --- */
.photo-gallery {
    padding: 0;
    background-color: var(--white);
    text-align: center;
}
.photo-gallery .carousel-container {
    max-width: none;
    padding: 0;
}
.photo-gallery .gallery-card {
    flex: 0 0 100%;
    min-width: 100%;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-shadow: none;
}

@media (min-width: 1024px) {
.photo-gallery .gallery-card {
    height: 80vh;
}
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-gallery .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 10;
}
.photo-gallery .indicator-dot {
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.photo-gallery .indicator-dot.active {
    background-color: var(--white);
    width: 40px;
}
.photo-gallery .carousel-btn {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
} /* --- Carousel UI Controls --- */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}
.floor-plans .carousel-container {
    padding: 0 20px;
    overflow: visible;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
}
.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev {
    left: 30px;
}
.carousel-btn.next {
    right: 30px;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-top: 25px;
    z-index: 20;
    position: relative;
}
.indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #d1d5db;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.indicator-dot.active {
    width: 30px;
    background-color: var(--primary-color);
} 
/* --- Section Style --- */
.primary-color {color: var(--primary-color);}
.tons-blue {color: var(--tons-blue);}
.dark-blue {color: var(--dark-blue);}
.dark-text {color: var(--text-dark);}
.light-text {color: var(--text-light);}
.dark {background-color: var(--tons-blue); color: var(--text-light);}
.light {background-color: var(--white); color: var(--text-dark);}
.dark-bgimage {background-image: linear-gradient(rgba(44,62,80,0.75), rgba(44,62,80,0.75)), url('https://media.prismapixel.com/Tree.webp');
    background-size: cover; }
.text-centered {text-align: center;}
@media (min-width: 821px) {
	.text-centered {text-align: left;}
}
.section-container {
	padding: 100px 0;
}
.section-header {
	padding: 0 20px;
	max-width: 800px;
	margin:0px auto 50px auto;
	text-align: center;
}
.section-header h3, .section-flex-container h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}
.light .section-header h3 {
	color: var(--tons-blue);
}
.section-header .script-font, .section-flex-container .script-font {
	font-size: 3.5rem;
	margin-top: 5px;
}
.section-flex-container {
    display: flex;
    flex-direction: column;
    gap: 20px 50px;
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}
.reverse {
	flex-direction: column-reverse;
}
@media (min-width:821px) {
	.reverse {
		flex-direction: column;
	}
}
.flex-content-40, .flex-content-50, .flex-content-60 {
	width: 100%;
}
.rounded-img {
	border-radius: 20px;
	overflow:hidden;
}
.flex-content-40 img, .flex-content-50 img, .flex-content-60 img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.flex-content-40 img:hover, .flex-content-50 img:hover, .flex-content-60 img:hover {
	transform: scale(1.1);
}
@media (min-width: 821px) {
	.section-flex-container {
		display: flex;
		flex-direction: row;
	}
	.flex-content-50 {
		width: 50%;
		text-align: left;
	}
	.flex-content-60 {
		width: 60%;
		text-align: left;
	}
	.flex-content-40 {
		width: 40%;
		text-align: left;
	}	
}
.section-flex-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
	border-radius: 20px;
}
/* --- grids --- */
.flex-grid {
	text-align: center;
	display: flex; 
	flex-direction: row;
	flex-wrap: wrap;
	gap: 30px 50px; /* px between rows - px between columns */
}
.flex-start {justify-content: flex-start;}
.flex-center {justify-content: center;}
.flex-end {justify-content: flex-end;}
.flex-even {justify-content: space-evenly;}
.item-row {
	width: 100%;
}
@media (min-width: 821px) {
	.item-row {width: 50%;}
}
.flex-grid-item {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 200px;
    max-width: 150px;
    transition: transform 0.3s ease;
}
.flex-grid-item.fp-image {
	max-width: 250px;
}
.flex-grid-item:hover, .flex-grid-item img:hover {
    transform: scale(1.1);
}
@media (max-width: 820px) {
    .flex-grid-item {
        flex: 1 1 40%; /* On tablets/mobile, they will swap to 2 per row */
    }
}

.flex-grid-item-2up {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 calc(50%-20px);
    max-width: 35%;
}
.flex-grid-item-2up.fp-image {
	max-width: 50%;
}
.flex-grid-item-2up .video-card:hover {
    transform: scale(1.1);
}
@media (max-width: 820px) {
    .flex-grid-item-2up {
        flex: 1 1 100%; /* On tablets/mobile, they will swap to 2 per row */
		max-width: 100%;
    }
}

.flex-grid span.title {
	font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.flex-grid span a:hover {
	color: var(--tons-blue);
}
.flex-grid-image {
	width: 150px;
	height: 150px;
	margin: 0 auto 20px auto;
}
.flex-grid-image img {
    display: block;
    border-radius: 50%;
    background: var(--white);
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
    transition: transform 0.6s ease;
}
/*.flex-grid-item-2up img:hover {
    transform: scale(1.1);
}*/
.fp-buttons {
	display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    gap: 30px 30px;
    justify-content: center;
    margin-top: 50px;
}
.fp-buttons a {
	width: 100%;
}
@media (min-width: 768px) {
	.fp-buttons {
		flex-direction: row;
	}
	.fp-buttons a {
		width: auto;
	}
}


.fp-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	width: 100%;	
	margin-top: 20px;
}
.fp-grid-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}
.fp-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.fp-grid-item.thumb img {
	object-fit: contain;
}
.fp-grid-item:hover img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
	.fp-grid {
		flex: 1.2;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.fp-grid-item {
		height: 175px;
	}
}


.map {
	width: 100%;
	height: 550px;
	overflow: hidden;
	border: none;
	position: relative;
}
.map-layer {
	margin-top: -60px;
	border:0;
	position: absolute;
	bottom:0;
}
.map-key {
    display: flex;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
	padding-top: 20px;
}
.map-key-container {
    display: flex;
    flex: 1 1 200px;
	padding:5px 0px;
	flex-direction: row;
    max-width: 150px;
}
.map-key-item {
	display: flex;
	flex: 1 1 200px;
    gap: 5px;
	align-items: center;
	justify-content: flex-start;
}
.max {
	width:100%;
}
@media (min-width: 768px) {
	.map {
		height: 550px;
	}
	.map-layer {
	margin-top: -60px;	
	}
	.map-key-item {
		justify-content: center;
	}
}
.info-block {
		width: 95%;
		margin: 0 auto;
    	padding: 20px;
    	background: white;
    	border-radius: 12px;	
}
.info-block p {
	margin-bottom: 10px;
}
@media (min-width: 768px) {
	.info-block {
		width: 80%;
		margin: 0 auto;
    	padding: 50px;
	}
}
.fp-image {
	width: 250px;
	height: auto;
	margin: 0 auto 20px auto;
}
.fp-image img {
	display: block;
	border-radius: 12px;
	background: var(--white);
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
/* --- Dark BG Sections --- */
.dark-section {
	padding: 100px 0;
	background-color: var(--tons-blue);
	color: var(--white);
}
.dark-section-header {
	padding: 0 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	text-align: center;
}
.dark-section-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.dark-section .script-font {
    font-size: 3.5rem;
    margin-top: 5px;
}
/* --- Words of Wisdom --- */
.words-of-wisdom {
	margin: 50px auto;
	width: 95%;
	color: var(--text-light);
}
@media (min-width: 768px) {
	.words-of-wisdom {width:80%;}
}
.words-of-wisdom p {
	padding: 20px 0px;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-image: linear-gradient(to right, transparent 0%, var(--text-light) 20%, var(--text-light) 80%, transparent 100%) 1;
}
/* --- Checklist --- */
.checklist {
	list-style-type: none;
    text-align: left;
    width: 80%;
    color: var(--tons-blue);
    margin: 50px auto;
	column-count: 1;
	column-gap: 0px;
	list-style-position: inside;
}
@media (min-width: 768px) {
	.checklist {
		column-count: 2;
		column-gap: 50px;
	}
	.checklist.no-columns {
		column-count: 1;
	}
}
.checklist li {
	padding-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.checklist a {
	font-weight: 600;
}
.checklist a:hover {
	transform: translateY(-2px);
	text-decoration: underline;
}
.checkmark {
	font-size:1rem;
}
#utility-info .icon-circle {
	border: 2px solid white;
}
#utility-info .icon-circle {border: 2px solid white;}
#utility-info span.glance-info a:hover {color:var(--primary-color);}
.yos {font-size: .8rem;}
/* --- Amenities Section --- */
.amenities {
    padding: 100px 0;
    background-color: var(--white);
}
.amenities-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}
.amenities-text {
    text-align: center;
}
.amenities-text h3 {
    color: var(--tons-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.amenities-text .script-font {
    font-size: 3.5rem;
}
.amenities-text p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 1.05rem;
}
.amenity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}
.amenity-item {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.amenity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.amenity-item:hover img {
    transform: scale(1.1);
}
.amenity-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
    padding: 20px 15px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
.amenities-container {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 60px;
}
.amenities-text {
    flex: 1;
    text-align: left;
}
.amenities-text p {
    margin: 0 0 30px 0;
}
.amenity-grid {
    flex: 1.2;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.amenity-item {
    height: 240px;
}
.amenities-container > .btn {
    display: none;
}
.amenities-text > .btn {
    display: inline-block;
}
}

@media (max-width: 767px) {
.amenities-text > .btn {
    display: none;
}
.amenities-container > .btn {
    display: inline-block;
    margin-top: 10px;
}
} /* --- Neighborhood Section --- */
.neighborhood {
    padding: 100px 0;
    background-image: linear-gradient(rgba(44,62,80,0.75), rgba(44,62,80,0.75)), url('https://media.prismapixel.com/Tree.webp');
    background-size: cover;
    text-align: center;
}
.neighborhood-container {
    width: 80%;
    border: 2px solid var(--tons-blue);
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    background-color: white;
}

@media (max-width: 767px) {
.neighborhood-container {
    width: 95%;
}
}
.neighborhood h3 {
    color: var(--tons-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.neighborhood .script-font {
    font-size: 3.5rem;
    color: var(--tons-blue);
}
.neighborhood-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 0 30px 0;
}

@media (min-width: 768px) {
.neighborhood-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px 30px 20px;
}
}
.neighborhood-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}
.neighborhood-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}
.neighborhood-card:hover img {
    transform: scale(1.1);
}
.neighborhood-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent 70%);
    z-index: 2;
}
.neighborhood-card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    text-align: left;
    color: white;
}
.neighborhood-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.neighborhood-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
} /* --- Testimonials --- */
.testimonials {
    background-image: linear-gradient(135deg, var(--tons-blue), var(--dark-blue));
    padding: 100px 10px;
    text-align: center;
    color: white;
}
@media (min-width: 768px){
	.testimonials {
		padding: 100px 50px;
	}
}
.testimonials h3 {
    font-size: 1.8rem;
}
.testimonials .script-font {
    font-size: 3.5rem;
}
.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 60px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.quote {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 25px;
    max-width: 800px;
    line-height: 1.6;
}
.resident-name {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
}
.testimonials .indicator-dot {
    background-color: rgba(255,255,255,0.2);
}
.testimonials .indicator-dot.active {
    background-color: var(--primary-color);
}
.view-all-btn {
    margin-top: 50px;
} /* --- Tour Booking Section --- */
.tour-booking {
    padding: 100px 20px;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}
.booking-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 40px;
	color: var(--dark-blue);
}
.tour-booking h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.tour-booking h4 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: var(--shadow);
}
.tour-booking .script-font {
    font-size: 3.5rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}
.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
}

@media (min-width: 600px) {
.booking-form {
    grid-template-columns: 1fr 1fr;
}
.full-width {
    grid-column: 1 / span 2;
}
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-blue);
    margin-bottom: 8px;
    display: block;
}
.booking-container a.btn-outline, .booking-container .btn {
	border: 2px solid rgba(44,62,80,0.3);
	background: rgba(255,255,255,0.1);
	color: var(--dark-blue);
}
.booking-container a.btn-outline:hover, .booking-container .btn:hover {
	background: var(--white);	
	border: 2px solid var(--white);
	transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.form-group input, .form-group select, .form-group textarea{
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark-blue);
    outline: none;
    transition: all 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
color: var(--dark-blue);
opacity: 1; /* Firefox */
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--dark-blue);
}
.booking-form .btn {
    margin-top: 10px;
    width: 100%;
    padding: 15px;
}	
.verif-chk {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
/* --- Footer --- */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    opacity: 0.05;
    transform: translateX(50%);
    pointer-events: none;
    z-index: 0;
}
.footer-content {
    position: relative;
    z-index: 1;
}
.footer-content h4 {
    color: var(--primary-color);
}
.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 30px auto;
}
.footer-info p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.social-icons {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.legal-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    opacity: 0.7;
}
.legal-icons img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}
.privacy-link {
    font-size: 0.85rem;
    margin-top: 30px;
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.copyright-text {
    font-size: 0.8rem;
    /*opacity: 0.5;*/
    margin-top: 20px;
}
/* Cookie Consent */
.cookie-container {
    position: fixed;
    bottom: -300px; /* Hidden by default */
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    transition: bottom 0.5s ease-in-out;
    z-index: 99999;
    display: flex;
    justify-content: center;
}

.cookie-container.show {
    bottom: 0 !important;
}

.cookie-content {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-container a {
	text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; }
}
/* Skipper Bubble */
/*#smsbubble {
	position: fixed;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	bottom: 10px;
	right: 10px;
	z-index:100;
}
	#smshelperLink p {
	line-height: 15px !important;
}
.smsicon {
	background: url("https://www.prismapixel.com/ApartmentSiteTemplate/assets/images/skipper-head.svg") no-repeat center;
	background-color: var(--primary-color);
	background-size: contain;
	width: 75px;
	height: 75px;
	border-radius: 50px;
	color: white;
	display: block;
	text-align: center;
	line-height: 50px;
	font-size: 25px;
	margin: 10px;
	opacity: 0.75;
	box-shadow: 2px 2px 25px 2px rgba(0, 0, 0, 0.17);
	transform: perspective(1px) translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform opacity;
	cursor: pointer;
}

.smsicon:focus, .smsicon.clicked {
	transform: scale(1.2);
	opacity:1;
}

#smshelper {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 100px;
	background: white;
	width: 300px;
	border-radius: 10px;
	box-shadow: 2px 2px 25px 2px rgba(0, 0, 0, 0.17);
	padding: 10px;
	text-align: center;
	cursor: default;
	z-index: 1000;
}

#smshelper p {
	margin: 0;
	font-size: 14px;
}

#smshelper a {
	text-decoration: none;
	color: black;
}

#smshelper:before {
	position: absolute;
	content: '';
	top: 25px;
	right: -20px;
	border-style: solid;
	border-width: 10px 10px 10px 15px;
	border-color: transparent transparent transparent white;
}
.small {
	font-size: 10px !important;
	margin-top: 5px !important;
	font-style: italic;
}*/

/* Skipper Bubble Container */
#smsbubble {
    position: fixed;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}

.smsicon {
    background: url("https://www.prismapixel.com/ApartmentSiteTemplate/assets/images/skipper-head.svg") no-repeat center;
    background-color: var(--primary-color, #2563eb); /* Added fallback color */
    background-size: 70%; /* Adjusted for a cleaner look */
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-left: 15px;
    opacity: 0.85;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

/* Hover & Active States */
.smsicon:hover, .smsicon:focus {
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
}

#smshelper {
    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px); 
    transition: all 0.3s ease;

    background: white;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    text-align: center;
    position: relative; /* Changed from fixed for better alignment inside flexbox */
}

/* Toggle Class */
#smshelper.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

#smshelper p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

#smshelper .small {
    display: block;
    font-size: 10px;
    margin-top: 8px;
    color: #777;
    font-style: italic;
}

/* The Speech Bubble Arrow */
#smshelper:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}


/* --- RESPONSIVE BREAKPOINTS --- */

@media (min-width: 768px) {
#floorPlanTrack .plan-card {
    width: calc(50% - 10px);
    min-width: unset;
    flex: 0 0 auto;
}
.gallery-card {
    min-width: 100%;
}
}

@media (min-width: 1024px) {
.hero h1, .page-header h1, .hero2 h1 {
    font-size: 3.5rem;
}
.hero h1 .script-font, .page-header h1 .script-font, .hero2 h1 .script-font {
    font-size: 5rem;
}
#floorPlanTrack .plan-card {
    width: calc(33.333% - 13.34px);
    margin-bottom: 20px;
}
.gallery-card {
    height: 600px;
    min-width: 100%;
}
.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    padding: 80px 60px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.footer-logo img {
    margin: 0 0 20px 0;
}
.social-icons {
    margin: 20px 0 0 0;
    justify-content: flex-start;
}
.footer-content > div {
    flex: 1;
    padding: 0 20px;
}
.footer-content > div:first-child {
    padding-left: 0;
}
.footer-content > div:last-child {
    padding-right: 0;
}
}
.privacy-policy {
	margin: 0 auto;
	width: 80%;
	text-align: left;
}
@media (min-width:768px) {
	.privacy-policy {
		width: 60%;
	}
}
.privacy-policy p {
	margin-bottom: 20px;
}
.privacy-policy h1, .privacy-policy h2, .privacy-policy h3, .privacy-policy h4 {
	color: var(--tons-blue);
	text-align: center;
	margin: 20px auto;
}
.privacy-policy strong {
	color: var(--tons-blue);
}
.privacy-policy a {
	font-weight: bold;
	color: var(--tons-blue);
}
.privacy-policy a:hover {
	text-decoration: underline;
}
