/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
}

.nav-brand{
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-brand div{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
} 

.nav-brand h2 {
	color: #095859;
	font-weight: 700;
	font-size: 1.2rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	white-space: nowrap;
}

.nav-link:hover {
	color: #095859;
	transform: translateY(-2px);
}

.nav-link.active {
	color: #095859;
	background: rgba(9, 88, 89, 0.1);
}

.btn-outline {
	border: 2px solid #095859 !important;
	color: #095859 !important;
	background: transparent;
}

.btn-outline:hover {
	background: #095859;
	color: white !important;
}

.btn-primary {
	background: #095859 !important;
	color: white !important;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	
}

.btn-primary:hover {
	background: #074647;
	border-color: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #095859;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
	padding: 6rem 0 4rem;
	/* background: linear-gradient(135deg, #f8fdfd 0%, #e6fffe 100%); */
	background-image: url("assets/hero-image.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
   
}

.hero-content {
	animation: slideInLeft 0.8s ease;
	 position: inherit;
	z-index: 2;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #f8fdfd;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	color: #01bda4;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.search-bar {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 1rem;
	background: white;
	padding: 1rem;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-input,
.search-select {
	padding: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	min-width: 0;
}


.search-input:focus,
.search-select:focus {
	outline: none;
	border-color: #095859;
	box-shadow: 0 0 0 3px rgba(9, 88, 89, 0.1);
}

.search-btn {
	background: #095859;
	color: white;
	border: none;
	border-radius: 10px;
	padding: 1rem 2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.search-btn:hover {
	background: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
}

.hero-image {
	animation: slideInRight 0.8s ease;
}

.hero-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section-title {
	text-align: center;
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #095859;
	margin-bottom: 3rem;
}

/* Properties Grid */
.featured-properties,
.properties-listing {
	padding: 5rem 0;
}

.properties-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.property-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease;
	width: 100%;
	max-width: 100%;
}

.property-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
	transform: scale(1.05);
}

.property-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: #095859;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.property-favorite {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.9);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.property-favorite:hover {
	background: #095859;
	color: white;
}

.property-info {
	padding: 1.5rem;
}

.property-info h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.property-location {
	color: #666;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.property-features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.property-features span {
	background: #f0f9f9;
	color: #095859;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
}

.property-amenities {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.property-amenities span {
	font-size: 0.8rem;
	color: #666;
	background: #f8f8f8;
	padding: 0.2rem 0.5rem;
	border-radius: 10px;
}

.property-price {
	font-size: 1.4rem;
	font-weight: 700;
	color: #095859;
	margin-bottom: 1rem;
}

.view-btn {
	display: inline-block;
	background: #095859;
	color: white;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-align: center;
	width: 100%;
}

.view-btn:hover {
	background: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
}

/* Agents Section - IMPROVED */
.agents-section {
	padding: 5rem 0;
	background: #f8fdfd;
}

.agents-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.agent-card {
	background: white;
	padding: 2.5rem 2rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.agent-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #095859, #0a6b6d);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.agent-card:hover::before {
	transform: scaleX(1);
}

.agent-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(9, 88, 89, 0.15);
}

.agent-image {
	width: 140px;
	height: 140px;
	margin: 0 auto 2rem;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid #095859;
	position: relative;
	transition: all 0.3s ease;
}

.agent-card:hover .agent-image {
	transform: scale(1.05);
	border-color: #0a6b6d;
}

.agent-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.agent-card:hover .agent-image img {
	transform: scale(1.1);
}

.agent-info {
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
	 display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: wheat;
    border-radius: 10px;
}

.agent-card:hover .agent-info h3 {
	color: #095859;
}

.agent-title {
	color: #095859;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.agent-experience {
	color: #666;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	font-style: italic;
}

.agent-contact {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding-top: 1rem;
	border-top: 1px solid #f0f0f0;
}

.agent-contact span {
	font-size: 0.9rem;
	color: #666;
	padding: 0.5rem 1rem;
	background: #f8fdfd;
	border-radius: 25px;
	transition: all 0.3s ease;
	word-break: break-word;
}

.agent-contact span:hover {
	background: #095859;
	color: white;
	transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us {
	padding: 5rem 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	background: white;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

/* CTA Section */
.cta-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, #095859 0%, #074647 100%);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-buttons .btn-primary {
	background: white;
	color: #095859;
	border-color: white;
}

.cta-buttons .btn-primary:hover {
	background: transparent;
	color: white;
	border-color: white;
}

.cta-buttons .btn-outline {
	border-color: white;
	color: white;
}

.cta-buttons .btn-outline:hover {
	background: white;
	color: #095859;
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-info{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.footer-section h3 {
	color: #095859;
	font-size: 1.5rem;
	/* margin-bottom: 1rem; */
}

.footer-section h4 {
	color: white;
	margin-bottom: 1rem;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #095859;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.social-link {
	color: #ccc;
	text-decoration: none;
	padding: 0.5rem;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: #095859;
	background: rgba(9, 88, 89, 0.1);
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 1rem;
	text-align: center;
	color: #ccc;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, #095859 0%, #074647 100%);
	color: white;
	text-align: center;
	padding: 8rem 0 4rem;
	margin-top: 70px;
}

.page-header h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	opacity: 0.9;
}

/* Filters Section */
.filters-section {
	padding: 2rem 0;
	background: #f8fdfd;
}

.filters-container {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.search-filters {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 1rem;
	align-items: center;
}

.filter-input,
.filter-select {
	padding: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	min-width: 0;
}

.filter-input:focus,
.filter-select:focus {
	outline: none;
	border-color: #095859;
	box-shadow: 0 0 0 3px rgba(9, 88, 89, 0.1);
}

.filter-btn {
	background: #095859;
	color: white;
	border: none;
	border-radius: 10px;
	padding: 1rem 2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.filter-btn:hover {
	background: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
}

/* Listing Header */
.listing-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.listing-header h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #333;
}

.results-count {
	color: #666;
	font-size: 1rem;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}



.page-btn {
	padding: 0.8rem 1.2rem;
	border: 1px solid #e0e0e0;
	background: white;
	color: #333;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 44px;
}

.page-btn :hover,
.page-btn.active {
	background: #095859;
	color: white;
	border-color: #095859;
}

/* About Page Styles */
.about-content {
	padding: 4rem 0;
}

.about-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.about-text h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #095859;
	margin-bottom: 1.5rem;
}

.about-text p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: clamp(1rem, 2vw, 1.1rem);
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 15px;
}

.mission-section {
	padding: 4rem 0;
	background: #f8fdfd;
	text-align: center;
}

.mission-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #095859;
	margin-bottom: 1.5rem;
}

.mission-content p {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	color: #666;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.values-section {
	padding: 4rem 0;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.value-card {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	background: white;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.value-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.value-card p {
	color: #666;
	line-height: 1.6;
}

.team-section {
	padding: 4rem 0;
	background: #f8fdfd;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.team-member {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
	width: 150px;
	height: 150px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #095859;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-info h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.member-title {
	color: #095859;
	font-weight: 500;
	margin-bottom: 1rem;
}

.member-bio {
	color: #666;
	line-height: 1.6;
}

.stats-section {
	padding: 4rem 0;
	background: #095859;
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-card {
	text-align: center;
	padding: 2rem;
}

.stat-number {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: clamp(1rem, 2vw, 1.1rem);
	opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
	padding: 4rem 0;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #095859;
	margin-bottom: 1.5rem;
}

.contact-info p {
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
	font-size: clamp(1rem, 2vw, 1.1rem);
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-icon {
	font-size: 1.5rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.contact-text h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.contact-text p {
	color: #666;
	margin-bottom: 0.2rem;
	line-height: 1.4;
	word-break: break-word;
}

.contact-form-container {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #333;
	margin-bottom: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #095859;
	box-shadow: 0 0 0 3px rgba(9, 88, 89, 0.1);
}

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

.submit-btn {
	background: #095859;
	color: white;
	border: none;
	border-radius: 10px;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
}

.map-section {
	padding: 4rem 0;
	background: #f8fdfd;
}

.map-container {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
	height: 400px;
	background: linear-gradient(135deg, #095859 0%, #074647 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	padding: 2rem;
}

.map-content h3 {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: 1rem;
}

.map-content p {
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.map-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.map-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.map-btn:hover {
	background: white;
	color: #095859;
}

.faq-section {
	padding: 4rem 0;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #095859;
	margin-bottom: 1rem;
}

.faq-item p {
	color: #666;
	line-height: 1.6;
}

/* Auth Pages */
.auth-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem 0 2rem;
	background: #f8fdfd;
}

.auth-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.auth-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 600px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.auth-form-container {
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.auth-header {
	text-align: center;
	margin-bottom: 2rem;
}

.auth-header h1 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #095859;
	margin-bottom: 0.5rem;
}

.auth-header p {
	color: #666;
	font-size: clamp(1rem, 2vw, 1.1rem);
}

.auth-form {
	margin-bottom: 2rem;
}

.form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.checkbox-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	color: #666;
	font-size: 0.9rem;
}

.checkbox-container input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid #e0e0e0;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.checkbox-container input:checked + .checkmark {
	background: #095859;
	border-color: #095859;
}

.checkbox-container input:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: -2px;
	left: 2px;
	color: white;
	font-size: 12px;
}

.forgot-password {
	color: #095859;
	text-decoration: none;
	transition: opacity 0.3s ease;
	font-size: 0.9rem;
}

.forgot-password:hover {
	opacity: 0.8;
}

.auth-btn {
	background: #095859;
	color: white;
	border: none;
	border-radius: 10px;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-bottom: 1.5rem;
}

.auth-btn:hover {
	background: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
}

.auth-divider {
	text-align: center;
	position: relative;
	margin: 1.5rem 0;
}

.auth-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #e0e0e0;
}

.auth-divider span {
	background: white;
	padding: 0 1rem;
	color: #666;
}

.social-auth {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	background: white;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 0.9rem;
}

.social-btn:hover {
	background: #f8f8f8;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
	font-size: 1.2rem;
}

.auth-footer {
	text-align: center;
}

.auth-footer p {
	color: #666;
	font-size: 0.9rem;
}

.auth-link {
	color: #095859;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.auth-link:hover {
	opacity: 0.8;
}

.auth-image {
	position: relative;
	overflow: hidden;
}

.auth-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.auth-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: white;
	padding: 3rem 2rem 2rem;
	text-align: center;
}

.auth-image-overlay h3 {
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	font-weight: 600;
	margin-bottom: 1rem;
}

.auth-image-overlay p {
	opacity: 0.9;
	line-height: 1.6;
	font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Apartment Detail Page */
.apartment-details {
	padding: 6rem 0 2rem;
}

.breadcrumb {
	margin-bottom: 2rem;
	color: #666;
	font-size: 0.9rem;
}

.breadcrumb a {
	color: #095859;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.carousel-container {
	position: relative;
	margin-bottom: 3rem;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel {
	position: relative;
	height: clamp(300px, 50vw, 500px);
}

.carousel-slide {
	display: none;
	width: 100%;
	height: 100%;
}

.carousel-slide.active {
	display: block;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: clamp(40px, 8vw, 50px);
	height: clamp(40px, 8vw, 50px);
	border-radius: 50%;
	cursor: pointer;
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: #095859;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-btn:hover {
	background: white;
	transform: translateY(-50%) scale(1.1);
}

.prev-btn {
	left: clamp(10px, 3vw, 20px);
}

.next-btn {
	right: clamp(10px, 3vw, 20px);
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 10;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
	background: white;
}

.property-details-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
}

.property-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.property-header h1 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #333;
}

.property-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.action-btn {
	padding: 0.8rem 1.5rem;
	border: 1px solid #e0e0e0;
	background: white;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	white-space: nowrap;
}

.action-btn:hover {
	background: #095859;
	color: white;
	border-color: #095859;
}

.property-address {
	color: #666;
	font-size: clamp(1rem, 2vw, 1.1rem);
	margin-bottom: 1.5rem;
}

.property-price-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
	flex-wrap: wrap;
	gap: 1rem;
}

.price {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #095859;
}

.property-specs {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.property-specs span {
	background: #f0f9f9;
	color: #095859;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 500;
	font-size: 0.9rem;
}

.property-description {
	margin-bottom: 3rem;
}

.property-description h2 {
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.property-description p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 1rem;
}

/* IMPROVED Features & Amenities Section */
.property-features {
	margin-bottom: 3rem;
}

.property-features h2 {
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	font-weight: 600;
	color: #333;
	margin-bottom: 2rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.feature-category {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid #095859;
}

.feature-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(9, 88, 89, 0.15);
}

.feature-category h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #095859;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.feature-category h3::before {
	content: '✨';
	font-size: 1.2rem;
}

.feature-category ul {
	list-style: none;
	display: grid;
	gap: 0.8rem;
}

.feature-category ul li {
	color: #555;
	margin-bottom: 0;
	padding: 0.8rem 1rem;
	background: #f8fdfd;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.feature-category ul li:hover {
	background: #095859;
	color: white;
	border-left-color: #0a6b6d;
	transform: translateX(5px);
}

.feature-category ul li::before {
	content: '✓';
	color: #095859;
	font-weight: bold;
	margin-right: 0.8rem;
	font-size: 1rem;
}

.feature-category ul li:hover::before {
	color: white;
}

.floor-plan {
	margin-bottom: 3rem;
}

.floor-plan h2 {
	font-size: clamp(1.5rem, 3vw, 1.8rem);
	font-weight: 600;
	color: #333;
	margin-bottom: 2rem;
}

.floor-plan-image {
	background: #f8f8f8;
	border-radius: 15px;
	overflow: hidden;
	height: 300px;
}

.floor-plan-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-card,
.quick-info-card,
.calculator-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-card h3,
.quick-info-card h3,
.calculator-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.5rem;
}


.contact-form{
	
}

.agent-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.agent-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.agent-details h4 {
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.agent-details p {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 0.2rem;
	word-break: break-word;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-btn {
	padding: 1rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 0.9rem;
	text-decoration: none;
}

.contact-btn.primary {
	background: #095859;
	color: white;
	text-decoration: none;

}

.contact-btn.primary:hover {
	background: #074647;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(9, 88, 89, 0.3);
	text-decoration: none;
}

.contact-btn.secondary {
	background: transparent;
	color: #095859;
	border: 1px solid #095859;
	text-decoration: none;
}

.contact-btn.secondary:hover {
	background: #095859;
	color: white;
	text-decoration: none;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
	gap: 1rem;
}

.info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.info-label {
	color: #666;
	font-weight: 500;
	font-size: 0.9rem;
}

.info-value {
	color: #333;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: right;
}

.cost-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
	gap: 1rem;
}

.cost-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cost-item.total {
	font-weight: 700;
	color: #095859;
	border-top: 2px solid #095859;
	padding-top: 1rem;
	margin-top: 1rem;
}

.similar-properties {
	padding: 4rem 0;
	background: #f8fdfd;
}


.footer-logo{
	width: 60px;
	height: 60px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.search-bar {
		grid-template-columns: 1fr;
	}
	
	.auth-content {
		grid-template-columns: 1fr;
	}
	
	.auth-image {
		display: none;
	}
	
	.property-details-container {
		grid-template-columns: 1fr;
	}
	
	.about-intro {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.contact-content {
		grid-template-columns: 1fr;
	}
	
	.search-filters {
		grid-template-columns: 1fr 1fr;
	}
	
	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	.agents-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: left 0.3s ease;
		box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
		z-index: 999;
	}
	
	.nav-menu.active {
		left: 0;
	}
	
	.nav-menu .nav-link {
		margin: 0.5rem 0;
		font-size: 1.2rem;
		width: 80%;
		text-align: center;
	}
	
	.container {
		padding: 0 15px;
	}
	
	.hero {
		padding: 5rem 0 3rem;
	}
	
	.hero-image img {
		height: 300px;
	}
	
	.section-title {
		margin-bottom: 2rem;
	}
	
	.properties-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.search-filters {
		grid-template-columns: 1fr;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.page-header {
		padding: 6rem 0 3rem;
	}
	
	.property-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.property-price-info {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.property-specs {
		justify-content: flex-start;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.agents-grid,
	.team-grid {
		grid-template-columns: 1fr;
	}
	
	.values-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}
	
	.auth-form-container {
		padding: 2rem 1.5rem;
	}
	
	.form-options {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.listing-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.contact-item {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	
	.contact-icon {
		margin-bottom: 0.5rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.agent-card {
		padding: 2rem 1.5rem;
	}
	
	.agent-image {
		width: 120px;
		height: 120px;
	}
	
	.agent-contact span {
		font-size: 0.85rem;
		padding: 0.4rem 0.8rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}
	
	.navbar .container {
		padding: 1rem 10px;
	}
	
	.nav-brand h2 {
		font-size: 1.3rem;
	}
	
	.hero {
		padding: 4rem 0 2rem;
	}
	
	.hero-image img {
		height: 250px;
	}
	
	.search-bar,
	.filters-container {
		padding: 1rem;
	}
	
	.search-input,
	.search-select,
	.filter-input,
	.filter-select {
		padding: 0.8rem;
		font-size: 0.9rem;
	}
	
	.search-btn,
	.filter-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.property-card {
		margin: 0 auto;
		max-width: 100%;
	}
	
	.property-info {
		padding: 1rem;
	}
	
	.agent-card,
	.feature-card,
	.value-card,
	.team-member,
	.faq-item {
		padding: 1.5rem;
	}
	
	.auth-form-container {
		padding: 1.5rem 1rem;
	}
	
	.contact-form-container,
	.contact-card,
	.quick-info-card,
	.calculator-card {
		padding: 1.5rem;
	}
	
	.page-header {
		padding: 5rem 0 2rem;
	}
	
	.carousel {
		height: 250px;
	}
	
	.carousel-btn {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}
	
	.prev-btn {
		left: 5px;
	}
	
	.next-btn {
		right: 5px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.map-placeholder {
		height: 300px;
		padding: 1rem;
	}
	
	.map-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.map-btn {
		width: 100%;
		max-width: 200px;
	}
	
	.social-links {
		justify-content: center;
	}
	
	.pagination {
		gap: 0.3rem;
	}
	
	.page-btn {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}
	
	.checkbox-container {
		font-size: 0.8rem;
	}
	
	.social-btn {
		font-size: 0.8rem;
		padding: 0.8rem;
	}
	
	.info-item,
	.cost-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.info-value {
		text-align: left;
	}
	
	.agent-card {
		padding: 1.5rem 1rem;
	}
	
	.agent-image {
		width: 100px;
		height: 100px;
		margin-bottom: 1.5rem;
	}
	
	.agent-info h3 {
		font-size: 1.2rem;
	}
	
	.agent-contact {
		gap: 0.6rem;
	}
	
	.agent-contact span {
		font-size: 0.8rem;
		padding: 0.4rem 0.6rem;
	}
	
	.feature-category {
		padding: 1.5rem;
	}
	
	.feature-category ul li {
		padding: 0.6rem 0.8rem;
		font-size: 0.9rem;
	}
}

/* Extra small devices */
@media (max-width: 320px) {
	.container {
		padding: 0 5px;
	}
	
	.navbar .container {
		padding: 1rem 5px;
	}
	
	.hero {
		padding: 3rem 0 2rem;
	}
	
	.search-bar,
	.filters-container {
		padding: 0.8rem;
	}
	
	.property-info {
		padding: 0.8rem;
	}
	
	.agent-card,
	.feature-card,
	.value-card,
	.team-member,
	.faq-item,
	.auth-form-container,
	.contact-form-container,
	.contact-card,
	.quick-info-card,
	.calculator-card {
		padding: 1rem;
	}
	
	.carousel {
		height: 200px;
	}
	
	.map-placeholder {
		height: 250px;
	}
	
	.agent-image {
		width: 80px;
		height: 80px;
	}
	
	.feature-category {
		padding: 1rem;
	}
}

/* Print styles */
@media print {
	.navbar,
	.hamburger,
	.carousel-btn,
	.carousel-indicators,
	.action-btn,
	.contact-btn,
	.search-btn,
	.filter-btn,
	.submit-btn,
	.auth-btn,
	.social-btn,
	.map-btn,
	.page-btn {
		display: none !important;
	}
	
	.hero,
	.page-header {
		background: white !important;
		color: black !important;
	}
	
	.cta-section,
	.stats-section {
		background: white !important;
		color: black !important;
	}
	
	.property-card,
	.agent-card,
	.feature-card,
	.value-card,
	.team-member,
	.faq-item {
		box-shadow: none !important;
		border: 1px solid #ddd;
	}
}

/* High contrast mode */
@media (prefers-contrast: high) {
	.property-badge,
	.btn-primary,
	.search-btn,
	.filter-btn,
	.submit-btn,
	.auth-btn {
		background: #000 !important;
		color: #fff !important;
		border-color: #000 !important;
	}
	
	.btn-outline {
		border-color: #000 !important;
		color: #000 !important;
	}
	
	.nav-link.active {
		background: #000 !important;
		color: #fff !important;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	
	.property-card:hover,
	.agent-card:hover,
	.feature-card:hover,
	.value-card:hover,
	.team-member:hover,
	.faq-item:hover {
		transform: none !important;
	}
}

/* Floating Message Button */
.floating-message-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #095859, #0a6b6c);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(9, 88, 89, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    user-select: none;
}

.floating-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(9, 88, 89, 0.4);
    background: linear-gradient(135deg, #0a6b6c, #095859);
}

.floating-message-btn i {
    font-size: 18px;
}

.floating-message-btn span {
    white-space: nowrap;
}

/* Message Popup Modal */
.message-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.message-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.message-popup {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.message-popup-overlay.active .message-popup {
    transform: scale(1) translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #095859, #0a6b6c);
    color: white;
    border-radius: 15px 15px 0 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
}

.popup-content {
    padding: 25px;
}

.agent-info-popup {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.agent-avatar-popup {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-details-popup h4 {
    margin: 0 0 5px 0;
    color: #095859;
    font-size: 16px;
}

.agent-details-popup p {
    margin: 2px 0;
    font-size: 14px;
    color: #666;
}

.popup-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.popup-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.popup-contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.popup-contact-form input,
.popup-contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.popup-contact-form input:focus,
.popup-contact-form textarea:focus {
    outline: none;
    border-color: #095859;
    box-shadow: 0 0 0 3px rgba(9, 88, 89, 0.1);
}

.popup-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-submit-btn {
    background: linear-gradient(135deg, #095859, #0a6b6c);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.popup-submit-btn:hover {
    background: linear-gradient(135deg, #0a6b6c, #095859);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(9, 88, 89, 0.3);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-message-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .floating-message-btn span {
        display: none;
    }

    .message-popup {
        width: 95%;
        margin: 20px;
    }

    .popup-content {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .agent-info-popup {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}