/* Homepage 2025 Design - New CSS File */

/* ============================================
   Base Styles & Reset
   ============================================ */

/* Design Tokens */
:root {
    --primary-color: #1a5a86;
    --secondary-color: #2788cd;
    --dark: #55504c;
    --light: #f5f2e3;
    --super-light: #c6e2f7;
    --white: #ffffff;
    --max-content-width: 1400px;
    --section-padding: 80px;
}

/* ============================================
   Typography
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol:wght@400;700&family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500&family=Archivo:wght@400&display=swap');

/* ============================================
   Layout Utilities
   ============================================ */

.homepage-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
        justify-content: flex-end;
}

@media (max-width: 1440px) {
    .homepage-container {
        padding: 0 60px;
        justify-content:center;
    }
}

@media (max-width: 768px) {
    .homepage-container {
        padding: 0 20px;
    }
}

/* ============================================
   Navbar Styles
   ============================================ */

.homepage-navbar {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    
}

.homepage-navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 16px;
    border-bottom: 1px solid rgba(26, 90, 134, 0.40);
        background: linear-gradient(90deg, rgba(198, 226, 247, 0.00) 0%, rgba(198, 226, 247, 0.20) 100%), var(--White, #FFF);
        box-shadow: 0 8px 16px 0 rgba(39, 136, 205, 0.24);
}

.homepage-navbar-logo {
    flex-shrink: 0;
    width: 300px;
    padding: 8px 0;
}

.homepage-navbar-logo img {
    width: 280px;
    height: 87px;
    object-fit: contain;
}

.homepage-navbar-options {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.homepage-navbar-menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.homepage-navbar-top {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.homepage-navbar-address {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.2;
}

.homepage-navbar-address i {
    font-size: 16px;
}

.homepage-navbar-address i.fa-map-marker-alt {
    color: var(--secondary-color);
}

.homepage-navbar-social {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 1.5px 5px 2.5px 5px;
}

.homepage-navbar-social a {
    color: var(--secondary-color);
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.homepage-navbar-social a:hover {
    opacity: 0.7;
}

.homepage-navbar-bottom {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.homepage-navbar-menu {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.homepage-navbar-menu-item {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s ease;
    cursor: pointer;
}

.homepage-navbar-menu-item:hover {
    color: var(--primary-color);
}

.homepage-navbar-menu-item-dropdown {
    position: relative;
}

.homepage-navbar-menu-item-dropdown > a {
    color: var(--dark);
    text-decoration: none;
}

.homepage-navbar-menu-item-dropdown i.fa-caret-down {
    font-size: 16px;
    color: var(--dark);
}

.homepage-navbar-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 1001;
}

.homepage-navbar-menu-item-dropdown:hover .homepage-navbar-submenu {
    display: block;
}

.homepage-navbar-submenu li {
    width: 100%;
}

.homepage-navbar-submenu a {
    padding: 12px 20px;
    font-size: 14px;
    display: block;
    color: var(--dark);
    text-decoration: none;
}

.homepage-navbar-submenu a:hover {
    background-color: var(--light);
    color: var(--primary-color);
}

.homepage-navbar-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 52px;
    padding: 16px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%), 
                linear-gradient(90deg, rgba(63, 113, 55, 1) 0%, rgba(63, 113, 55, 1) 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.homepage-navbar-cta:hover {
    opacity: 0.9;
}

.homepage-navbar-cta i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.homepage-navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(63, 113, 55, 1);
    cursor: pointer;
    padding: 8px;
}

.homepage-navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1001;
}

.homepage-navbar-mobile-menu.active {
    display: block;
}

.homepage-navbar-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.homepage-navbar-mobile-menu li {
    margin-bottom: 15px;
}

.homepage-navbar-mobile-menu a {
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.homepage-navbar-mobile-menu a:hover {
    color: var(--primary-color);
}

/* Responsive Navbar */
@media (max-width: 1023px) {
    .homepage-navbar-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
		padding:0 16px;
    }
    
    .homepage-navbar-menu-wrapper,
    .homepage-navbar-top,
    .homepage-navbar-bottom {
        display: none;
    }
    
    .homepage-navbar-mobile-toggle {
        display: block;
    }
    
    .homepage-navbar {
        padding: 20px;
    }
    
    .homepage-navbar-logo {
        width: auto;
    }
    
    .homepage-navbar-logo img {
        width: auto;
        max-width: 200px;
        height: auto;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .homepage-navbar {
            padding: 0px;
        }
}

/* ============================================
   Hero Section
   ============================================ */

.homepage-hero {
	position: relative;
	width: 100%;
	padding: 200px 16px 0 16px;
	box-sizing: border-box;
	overflow: hidden;
}

.homepage-hero-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.homepage-hero-gradient {
	position: absolute;
	inset: 0;
	 background: url('/custom/images/Hero-image.png') no-repeat center center;
     background-size: cover;
}

.homepage-hero-image-overlay {
	position: absolute;
	inset: 0;
	/* Overlay pattern - keeping the gradient overlay effect */
	/* background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(198, 226, 247, 0.1) 2px,
		rgba(198, 226, 247, 0.1) 4px
	); */
    
	opacity: 0.3;
}

.homepage-hero .homepage-container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1400px;
	padding: 0 16px;
	box-sizing: border-box;
}

.homepage-hero-layout {
	display: flex;
	gap: 64px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.homepage-hero-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
	justify-content: center;
	flex: 1;
	min-width: 550px;
}

.homepage-hero-heading {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-start;
	font-family: 'Kaisei Decol', serif;
	color: var(--primary-color);
	line-height: 1.2;
}

.homepage-hero-heading-line-1 {
	font-size: 32px;
	font-weight: 400;
	margin: 0;
	line-height: 1.2;
	display: block;
    text-align: left;
}

.homepage-hero-heading-line-2 {
	font-size: 72px;
	font-weight: 400;
	margin: 0;
	line-height: 1.2;
	display: block;
    text-align:left;
}

.homepage-hero-heading-line-3 {
	font-size: 48px;
	font-weight: 400;
	margin: 0;
	line-height: 1.2;
	display: block;
    text-align:left;
}

.homepage-hero-buttons {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	flex-wrap: wrap;
    width: 100%;
}

.homepage-hero-button {
	display: flex;
	gap: 8px;
	align-items: center;
	min-height: 52px;
	padding: 16px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: pointer;
	border-radius: 4px;
}

.homepage-hero-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.homepage-hero-button i {
	font-size: 16px;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.homepage-hero-button-primary {
	background: linear-gradient(0deg, rgba(198, 226, 247, 0) 0%, rgba(198, 226, 247, 0.4) 100%), 
	            linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
	color: var(--white);
}

.homepage-hero-button-primary i {
	color: var(--white);
}

.homepage-hero-button-secondary {
	background: linear-gradient(0deg, rgba(198, 226, 247, 0) 0%, rgba(198, 226, 247, 0.16) 100%), 
	            linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
	color: var(--secondary-color);
}

.homepage-hero-button-secondary i {
	color: var(--secondary-color);
}

.homepage-hero-team-image {
	
	max-width: 100%;
	height: auto;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.homepage-hero-team-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
    max-width: 725px;
}

/* Responsive Hero Section */
@media (max-width: 1440px) {
	
	.homepage-hero-layout {
		gap: 40px;
	}
}

@media (max-width: 1023px) {
	.homepage-hero {
		min-height: auto;
		padding: 200px 0 0 0;
	}
	
	.homepage-hero-layout {
		flex-direction: column;
		gap: 40px;
	}
	
	.homepage-hero-content {
		width: 100%;
		text-align: center;
		align-items: center;
        order:1;
        min-width: 0;
	}
	
	.homepage-hero-heading {
        align-items: start;
            text-align: left;
            width: 100%; 
	}
	
	.homepage-hero-heading-line-1 {
		font-size: 28px;
	}
	
	.homepage-hero-heading-line-2 {
		font-size: 56px;
	}
	
	.homepage-hero-heading-line-3 {
		font-size: 40px;
	}
	
	.homepage-hero-team-image {
		width: 100%;
		max-width: 500px;
		order: 2;
	}
}

@media (max-width: 768px) {
	.homepage-hero {
		padding: 20vh 0 0 0;
	}
	
	.homepage-hero .homepage-container {
		padding: 0 20px;
	}
	
	.homepage-hero-layout {
		gap: 30px;
	}
	
	.homepage-hero-heading-line-1 {
		font-size: 24px;
	}
	
	.homepage-hero-heading-line-2 {
		font-size: 48px;
	}
	
	.homepage-hero-heading-line-3 {
		font-size: 32px;
	}
	
	.homepage-hero-buttons {
		flex-direction: column;
		width: 100%;
		gap: 16px;
	}
	
	.homepage-hero-button {
		justify-content: center;
	}
	
	.homepage-hero-team-image {
		max-width: 100%;
	}
}

/* ============================================
   Intro Section
   ============================================ */

.homepage-intro {
	background-color: var(--white);
	padding: var(--section-padding) 0;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

.homepage-intro-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.homepage-intro-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: flex-start;
	position: relative;
}

.homepage-intro-heading {
	font-family: 'Kaisei Decol', serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--primary-color);
	margin: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.homepage-intro-heading-text {
	font-weight: 500;
}

.homepage-intro-heading-bold {
	font-weight: 700;
}

.homepage-intro-content {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	width: 100%;
	position: relative;
}

.homepage-intro-decorative-icon {
	position: absolute;
	top: 46.55%;
	right: 82.25%;
	bottom: -10.77%;
	left: -27vw;
	width: auto;
	height: auto;
	background-image: url('/custom/images/ico-kwokx2.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.homepage-intro-video-wrapper {
	flex: 1 0 0;
	min-width: 0;
	min-height: 0;
	position: relative;
	aspect-ratio: 800 / 533;
	overflow: hidden;
}

.homepage-intro-video-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.homepage-intro-copy {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	max-width: 680px;
	flex-shrink: 1;
	position: relative;
	z-index: 1;
}

.homepage-intro-paragraph-group {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.homepage-intro-paragraph {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--dark);
	margin: 0;
}

.homepage-intro-button {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 16px;
	box-sizing: border-box;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%), 
	            linear-gradient(90deg, var(--light) 0%, var(--light) 100%);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	text-decoration: none;
	line-height: 1.2;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: pointer;
	border-radius: 4px;
	margin-top: 8px;
}

.homepage-intro-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.homepage-intro-button span {
	white-space: nowrap;
}

/* Responsive Intro Section */
@media (max-width: 1023px) {
	.homepage-intro-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.homepage-intro-video-wrapper {
		width: 100%;
		max-width: 580px;
	}
	
	.homepage-intro-copy {
		width: 100%;
		max-width: 580px;
	}
	
	.homepage-intro-decorative-icon {
		display: none;
	}
}

@media (max-width: 768px) {
	.homepage-intro {
		padding: 60px 0;
	}
	
	.homepage-intro-container {
		padding: 0 20px;
	}
	
	.homepage-intro-inner {
		gap: 30px;
	}
	
	.homepage-intro-heading {
		font-size: 28px;
	}
	
	.homepage-intro-content {
		gap: 24px;
	}
	
	.homepage-intro-paragraph {
		font-size: 15px;
	}
	
	.homepage-intro-button {
		justify-content: center;
	}
}

/* ============================================
   Community Section
   ============================================ */

.homepage-community {
	position: relative;
	width: 100%;
	padding: var(--section-padding) 0;
	box-sizing: border-box;
	background-color: var(--white);
	overflow: hidden;
}

.homepage-community-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.homepage-community-background-overlay {
	position: absolute;
	inset: 0;
	/* Background texture image - add community background image here when available */
	 background-image: url('/custom/images/Communityx2.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	opacity: 0.4;
	/* Fallback subtle pattern */
	background-color: rgba(245, 242, 227, 0.1);
}

.homepage-community-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}

.homepage-community-heading {
	font-family: 'Kaisei Decol', serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--dark);
	text-align: center;
	margin: 0;
	width: 100%;
}

.homepage-community-slider-wrapper {
	width: 100%;
	overflow: hidden;
	padding-top: 48px;
}

.homepage-community-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	row-gap: 80px;
	width: 100%;
}


.homepage-community-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	padding: 56px 24px 24px 24px;
	box-sizing: border-box;
	background: linear-gradient(180deg, rgba(198, 226, 247, 0) 0%, rgba(198, 226, 247, 0.16) 100%), 
	            linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
	border-bottom: 1px solid rgba(26, 90, 134, 0.24);
	box-shadow: 0 8px 16px 0 rgba(39, 136, 205, 0.16);
	border-top: none;
	border-left: none;
	border-right: none;
}

.homepage-community-icon {
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid var(--white);
	background: linear-gradient(180deg, rgba(245, 242, 227, 0.6) 0%, rgba(39, 136, 205, 0.6) 100%), 
	            linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	z-index: 2;
}

.homepage-community-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	box-sizing: border-box;
}

.homepage-community-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
	width: 100%;
}

.homepage-community-title {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--primary-color);
	margin: 0;
	width: 100%;
}

.homepage-community-description {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--primary-color);
	margin: 0;
	width: 100%;
}

/* Responsive Community Section */
@media (max-width: 1023px) {
	.homepage-community-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.homepage-community {
		padding: 60px 0;
	}
	
	.homepage-community-container {
		padding: 0 20px;
		gap: 30px;
	}
	
	.homepage-community-heading {
		font-size: 28px;
	}
	
	.homepage-community-slider-wrapper {
		overflow: hidden;
		padding-top: 40px;
		position: relative;
		width: 100vw;
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 24px;
		padding-right: 24px;
		box-sizing: border-box;
	}
	
	.homepage-community-grid {
		display: flex;
		flex-direction: row;
		gap: 24px;
		grid-template-columns: none;
		row-gap: 0;
		width: max-content;
		padding-top: 0;
	}
	
	.homepage-community-card {
		flex: 0 0 auto;
		width: 100vw;
		max-width: 400px;
		padding: 56px 20px 24px 20px;
		margin-right: 0;
		box-sizing: border-box;
	}
	
	.homepage-community-title {
		font-size: 22px;
	}
	
	.homepage-community-description {
		font-size: 15px;
	}
}

/* ============================================
   Services Section
   ============================================ */

.homepage-services {
	position: relative;
	width: 100%;
	padding: var(--section-padding) 0;
	box-sizing: border-box;
	overflow: hidden;
}

.homepage-services-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.homepage-services-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--light, rgba(245, 242, 227, 1)) 100%), 
	            linear-gradient(90deg, rgba(198, 226, 247, 1) 0%, rgba(198, 226, 247, 1) 100%);
}

.homepage-services-image-overlay {
	position: absolute;
	inset: 0;
	mix-blend-mode: luminosity;
	opacity: 0.5;
	overflow: hidden;
	/* Background decorative image - add when available */
	 background-image: url('/custom/images/Services-bg-x2.webp'); 
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
}

.homepage-services-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.homepage-services-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	width: 100%;
	padding-bottom: 32px;
}

.homepage-services-heading {
	font-family: 'Kaisei Decol', serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--primary-color);
	margin: 0;
	width: 100%;
}

.homepage-services-description {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: center;
	max-width: 784px;
	width: 100%;
}

.homepage-services-description p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--primary-color);
	margin: 0;
	text-align: center;
}

.homepage-services-cards {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	width: 100%;
	padding-top: 48px;
}

.homepage-services-card {
	flex: 1 0 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	background: linear-gradient(179.99999543366917deg, rgba(198, 226, 247, 0) 0%, rgba(198, 226, 247, 0.16) 100%), 
	            linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
	border-bottom: 1px solid rgba(26, 90, 134, 0.24);
	box-shadow: 0 8px 16px 0 rgba(39, 136, 205, 0.16);
	overflow: hidden;
	min-height: 490px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-services-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px 0 rgba(39, 136, 205, 0.24);
}

.homepage-services-card-image {
	width: 100%;
	aspect-ratio: 2000 / 1333;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.homepage-services-card:nth-child(2) .homepage-services-card-image {
	aspect-ratio: 4096 / 2732;
}

.homepage-services-card:nth-child(3) .homepage-services-card-image {
	aspect-ratio: 4096 / 2725;
}

.homepage-services-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.homepage-services-card-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
	padding: 0 24px 24px 24px;
	width: 100%;
	box-sizing: border-box;
}

.homepage-services-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--primary-color);
	margin: 0;
	width: 100%;
}

.homepage-services-card-description {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--secondary-color);
	margin: 0;
	width: 100%;
}

.homepage-services-button {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 16px;
	box-sizing: border-box;
	background: linear-gradient(0.000005683599184180821deg, rgba(198, 226, 247, 0) 0%, var(--super-light, rgba(198, 226, 247, 0.4)) 100%), 
	            linear-gradient(90deg, rgba(39, 136, 205, 1) 0%, rgba(39, 136, 205, 1) 100%);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	text-decoration: none;
	line-height: 1.2;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}

.homepage-services-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.homepage-services-button span {
	white-space: nowrap;
}

/* Responsive Services Section */
@media (max-width: 1023px) {
	.homepage-services-cards {
		flex-direction: column;
		gap: 40px;
		padding-top: 40px;
	}
	
	.homepage-services-card {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.homepage-services {
		padding: 60px 0;
	}
	
	.homepage-services-container {
		padding: 0 20px;
		gap: 20px;
	}
	
	.homepage-services-header {
		gap: 20px;
		padding-bottom: 24px;
	}
	
	.homepage-services-heading {
		font-size: 28px;
	}
	
	.homepage-services-description p {
		font-size: 15px;
	}
	
	.homepage-services-cards {
		gap: 32px;
		padding-top: 32px;
	}
	
	.homepage-services-card-content {
		padding: 0 20px 20px 20px;
	}
	
	.homepage-services-card-title {
		font-size: 22px;
	}
	
	.homepage-services-card-description {
		font-size: 15px;
	}
	
	.homepage-services-button {
		max-width: 300px;
	}
}

/* ============================================
   Google Reviews Section
   ============================================ */

.homepage-reviews {
	position: relative;
	width: 100%;
	padding: var(--section-padding) 0 104px 0;
	box-sizing: border-box;
	overflow: hidden;
}

.homepage-reviews-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.homepage-reviews-background-overlay {
	position: absolute;
	inset: 0;
	background-color: var(--white);
	background-image: url('/custom/images/Communityx2.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.4;
}

.homepage-reviews-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}

.homepage-reviews-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	width: 100%;
}

.homepage-reviews-stars-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.homepage-reviews-google-logo-stars {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.homepage-reviews-google-logo {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 70px;
	overflow: hidden;
}

.homepage-reviews-google-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.homepage-reviews-stars-image {
	width: 114px;
	height: 26px;
	flex-shrink: 0;
}

.homepage-reviews-stars-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.homepage-reviews-rating-text {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: var(--primary-color);
	margin: 0;
	text-align: center;
	letter-spacing: 0.16px;
}

.homepage-reviews-heading {
	font-family: 'Kaisei Decol', serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--dark);
	text-align: center;
	margin: 0;
	width: 100%;
	padding-top: 16px;
}

.homepage-reviews-slider {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	width: 100%;
}

.homepage-reviews-widget-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Style the Elfsight widget container */
.homepage-reviews-widget-wrapper .elfsight-app-b6ecc6a2-1592-406c-87b0-1c0477c930af {
	width: 100%;
	max-width: 100%;
}

/* Responsive Reviews Section */
@media (max-width: 1023px) {
	.homepage-reviews {
		padding: 60px 0 80px 0;
	}
	
	.homepage-reviews-container {
		gap: 40px;
	}
	
	.homepage-reviews-heading {
		font-size: 28px;
		padding-top: 12px;
	}
}

@media (max-width: 768px) {
	.homepage-reviews {
		padding: 60px 0 60px 0;
	}
	
	.homepage-reviews-container {
		padding: 0 20px;
		gap: 32px;
	}
	
	.homepage-reviews-stars-section {
		gap: 6px;
	}
	
	.homepage-reviews-google-logo-stars {
		gap: 6px;
	}
	
	.homepage-reviews-google-logo {
		width: 32px;
		height: 32px;
	}
	
	.homepage-reviews-stars-image {
		width: 90px;
		height: 20px;
	}
	
	.homepage-reviews-rating-text {
		font-size: 14px;
	}
	
	.homepage-reviews-heading {
		font-size: 24px;
		padding-top: 10px;
	}
	
	.homepage-reviews-slider {
		gap: 20px;
	}
}

/* ============================================
   CTA Section
   ============================================ */

.homepage-cta {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background: linear-gradient(-0.000009526967915007845deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 25.529%), 
	            linear-gradient(180deg, rgba(39, 136, 205, 0) 0%, rgba(39, 136, 205, 0.48) 100%), 
	            linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 100%);
}

.homepage-cta-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	gap: 40px;
	align-items: center;
	position: relative;
}

.homepage-cta-headshot {
	flex-shrink: 0;
	width: 306.97px;
	height: 500px;
	max-width: 320px;
	max-height: 500px;
	overflow: visible;
	position: relative;
	margin-top: -59.83px;
}

.homepage-cta-headshot img {
	width: 104.24%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	margin-left: -2.12%;
}

.homepage-cta-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
	width: 100%;
	padding-bottom: 24px;
	padding-top: 0;
}

.homepage-cta-heading {
	font-family: 'Kaisei Decol', serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--white);
	margin: 0;
	width: 100%;
	white-space: pre-wrap;
}

.homepage-cta-description {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--super-light);
	margin: 0;
	width: 100%;
	white-space: pre-wrap;
}

.homepage-cta-button {
	display: flex;
	gap: 8px;
	align-items: center;
	min-height: 52px;
	padding: 16px;
	box-sizing: border-box;
	background: linear-gradient(0.000004523680985357714deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%), 
	            linear-gradient(90deg, var(--light) 0%, var(--light) 100%);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	text-decoration: none;
	line-height: 1.2;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}

.homepage-cta-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.homepage-cta-button i {
	font-size: 16px;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
}

.homepage-cta-button span {
	white-space: nowrap;
}

/* Responsive CTA Section */
@media (max-width: 1440px) {
	.homepage-cta-container {
		padding: 0 60px;
	}
	
	.homepage-cta-headshot {
		width: 280px;
		height: 460px;
		max-width: 280px;
		max-height: 460px;
	}
}

@media (max-width: 1023px) {
	.homepage-cta {
		padding: 60px 0 0;
	}
	
	.homepage-cta-container {
		flex-direction: column;
		align-items: center;
		gap: 40px;
		padding: 0 20px;
	}
	
	.homepage-cta-headshot {
		width: 100%;
		max-width: 300px;
		margin: 0;
		aspect-ratio: 306.97 / 500;
		order:2;
	}
	
	.homepage-cta-headshot img {
		width: 100%;
		height: 100%;
		margin-left: 0;
		object-fit: cover;
	}
	
	.homepage-cta-content {
		align-items: center;
		text-align: center;
		padding-bottom: 0;
	}
	
	.homepage-cta-heading {
		font-size: 36px;
		text-align: center;
	}
	
	.homepage-cta-description {
		font-size: 20px;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.homepage-cta {
		padding: 60px 0 0;
	}
	
	.homepage-cta-container {
		gap: 30px;
	}
	
	.homepage-cta-headshot {
		order:2;
	}
	
	.homepage-cta-content {
		gap: 20px;
	}
	
	.homepage-cta-heading {
		font-size: 32px;
	}
	
	.homepage-cta-description {
		font-size: 18px;
	}
	
	.homepage-cta-button {
		justify-content: center;
	}
}

/* ============================================
   Logos Section
   ============================================ */

.homepage-logos {
	width: 100%;
	box-sizing: border-box;
	background-color: var(--white);
}

.homepage-logos-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
	display: flex;
	gap: 80px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.homepage-logos-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.homepage-logos-item:first-child {
	width: 194px;
	height: 83px;
}

.homepage-logos-item:nth-child(2) {
	width: 297px;
	height: 83px;
}

.homepage-logos-item:nth-child(3) {
	width: 343px;
	height: 74px;
}

.homepage-logos-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

/* Responsive Logos Section */
@media (max-width: 1023px) {
	.homepage-logos-container {
		gap: 60px;
		padding: 40px 20px;
	}
	
	.homepage-logos-item:first-child {
		width: 160px;
		height: 68px;
	}
	
	.homepage-logos-item:nth-child(2) {
		width: 240px;
		height: 68px;
	}
	
	.homepage-logos-item:nth-child(3) {
		width: 280px;
		height: 60px;
	}
}

@media (max-width: 768px) {
	.homepage-logos {
		padding: 60px 0;
	}
	
	.homepage-logos-container {
		flex-direction: column;
		gap: 40px;
		padding: 40px 20px;
	}
	
	.homepage-logos-item:first-child {
		width: 194px;
		height: 83px;
	}
	
	.homepage-logos-item:nth-child(2) {
		width: 297px;
		height: 83px;
	}
	
	.homepage-logos-item:nth-child(3) {
		width: 100%;
		height: auto;
	}
}

/* ============================================
   Footer Section
   ============================================ */

.homepage-footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 12.862%), 
                linear-gradient(180deg, rgba(39, 136, 205, 0) 0%, rgba(39, 136, 205, 0.48) 100%), 
                linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.homepage-footer .homepage-container {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 40px 16px;
}

.homepage-footer-map {
    width: 514px;
    height: 460px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.homepage-footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.homepage-footer-content {
    flex: 1;
    display: flex;
    gap: 64px;
    padding-left: 40px;
	align-self: center;
}

.homepage-footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.homepage-footer-column h3 {
    font-family: 'Kaisei Decol', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

.homepage-footer-hours {
    display: flex;
    gap: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
}

.homepage-footer-hours-days,
.homepage-footer-hours-times {
    display: flex;
    flex-direction: column;
}

.homepage-footer-hours-days p,
.homepage-footer-hours-times p {
    margin: 0;
}

.homepage-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.homepage-footer-contact-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.homepage-footer-contact-item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-footer-contact-item-icon i {
    font-size: 18px;
}

.homepage-footer-contact-item-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}

.homepage-footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 16px;
}

.homepage-footer-social-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.homepage-footer-social-icons {
    display: flex;
    gap: 13px;
}

.homepage-footer-social-icon {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.homepage-footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.homepage-footer-social-icon a {
    color: var(--secondary-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.homepage-footer-social-icon:hover a {
	color:white;
}

/* Responsive Footer */
@media (max-width: 1023px) {
    .homepage-footer .homepage-container {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .homepage-footer-map {
        width: 100%;
        max-width: 514px;
        margin: 0 auto;
    }
    
    .homepage-footer-content {
        flex-direction: column;
        padding-left: 0;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .homepage-footer {
        padding: 60px 0;
    }
    
    .homepage-footer-hours {
        flex-direction: row;
        gap: 10px;
    }
}

/* ============================================
   Copyright Section
   ============================================ */

.homepage-copyright {
    background-color: var(--secondary-color);
    padding: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.homepage-copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    margin: 0;
    white-space: nowrap;
}

.homepage-copyright-text a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

.homepage-copyright-text a:hover {
    color: var(--super-light);
}

.homepage-copyright-text .copyright-separator {
    color: var(--super-light);
    margin: 0 8px;
}

/* Responsive Copyright */
@media (max-width: 768px) {
    .homepage-copyright-text {
        font-size: 12px;
        padding: 0 20px;
        white-space: normal;
        line-height: 1.4;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* ============================================
   Responsive Breakpoints
   ============================================ */



/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .homepage-container {
        padding: 0 60px;
    }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
    .homepage-container {
        padding: 0 20px;
    }
}

/* ============================================
   Mobile Bottom Navigation
   ============================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    height: 52px;
    gap: 0;
}

.mobile-nav-item {
    flex: 1 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px;
    box-sizing: border-box;
    gap: 8px;
}

.mobile-nav-item a {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.mobile-nav-item a:hover {
    opacity: 0.9;
}

.mobile-nav-item i {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.mobile-nav-item span {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.mobile-nav-item-secondary {
    background: linear-gradient(0.000010984648312728496deg, rgba(198, 226, 247, 0) 0%, rgba(198, 226, 247, 0.4) 100%), 
                linear-gradient(90deg, rgba(39, 136, 205, 1) 0%, rgba(39, 136, 205, 1) 100%);
}

.mobile-nav-item-primary {
    background: linear-gradient(0.000010984648312728496deg, rgba(198, 226, 247, 0) 0%, rgba(198, 226, 247, 0.4) 100%), 
                linear-gradient(90deg, rgba(26, 90, 134, 1) 0%, rgba(26, 90, 134, 1) 100%);
}

.mobile-nav-item-accent {
    background: linear-gradient(0.000010984648312728496deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%), 
                linear-gradient(90deg, rgba(63, 113, 55, 1) 0%, rgba(63, 113, 55, 1) 100%);
}

/* Show mobile navigation on devices below 768px */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body .uwy.userway_p5 .userway_buttons_wrapper {
        bottom: 80px !important;
    }
    
    body {
        padding-bottom: 52px;
    }
}

