/**
 * Main Stylesheet for Nisari Theme
 * Color Theme: #03304b (dark blue) and #d3dfea (light blue/gray)
 */

:root {
	--primary-color: #03304b;
	--secondary-color: #d3dfea;
	--text-color: #333;
	--text-light: #666;
	--white: #ffffff;
	--light-bg: #f8f9fa;
	--border-color: #e0e0e0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--white);
	padding-bottom: 80px;
}

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

.section-padding {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 15px;
	font-weight: 700;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
}

/* Header Styles */
.site-header {
	background-color: rgba(3, 48, 75, 0.3);
	box-shadow: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.site-header.scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	max-width: 1618px;
	margin: 0 auto;
	padding: 15px 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-logo {
	height: 90px;
	width: auto;
	object-fit: contain;
	max-width: 300px;
	background: transparent;
}



/* Hero Section */
.hero-section {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: var(--white);
	padding: 150px 20px 120px;
	text-align: left;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(3, 48, 75, 0.85) 0%, rgba(4, 74, 107, 0.75) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1618px;
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding: 0 40px;
}

.hero-text {
	text-align: left;
}

.hero-title {
	font-size: 4rem;
	margin-bottom: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
}

.hero-title .highlight {
	color: var(--secondary-color);
	display: block;
	font-size: 4.5rem;
	margin-top: 5px;
	font-weight: 700;
}

.hero-title .hero-logo {
	display: inline-block;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	margin-top: 5px;
	margin-bottom: 14px;
}

.hero-tagline {
	font-size: 1.5rem;
	margin-bottom: 15px;
	font-weight: 400;
	opacity: 0.95;
	line-height: 1.5;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 40px;
	opacity: 0.9;
	font-weight: 300;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 123px;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 15px 35px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.btn-primary:hover {
	background-color: #b8c9d8;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
}

.btn-secondary:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

/* Project Overview Section */
.project-overview {
	background-color: var(--white);
}

.overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}

.overview-item {
	text-align: center;
	padding: 40px 25px;
	background-color: var(--light-bg);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	border: 2px solid transparent;
}

.overview-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(3, 48, 75, 0.1);
	border-color: var(--primary-color);
}

.overview-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.overview-item h3 {
	color: var(--primary-color);
	margin-bottom: 12px;
	font-size: 1.3rem;
	font-weight: 600;
}

.overview-item p {
	color: var(--text-light);
	font-size: 1rem;
	line-height: 1.5;
}

/* Why Choose Section */
.why-choose {
	background-color: var(--white);
}

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

.feature-card {
	padding: 40px 30px;
	background-color: var(--light-bg);
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.feature-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(3, 48, 75, 0.1);
}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.feature-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Tariff & Accommodation Section */
.tariff-section {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #e8eff5 100%);
}

.tariff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.tariff-card {
	background-color: var(--white);
	padding: 0;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
	border: 2px solid transparent;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.tariff-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 30px rgba(3, 48, 75, 0.15);
	border-color: var(--primary-color);
}

.tariff-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background-color: var(--light-bg);
	position: relative;
}

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

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

.tariff-card h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 25px 30px 0;
}

.tariff-price {
	font-size: 1.4rem;
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	padding: 0 30px;
}

.tariff-price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-light);
	margin-left: 5px;
}

.tariff-details {
	margin-top: 20px;
	padding: 20px 30px 30px;
	border-top: 1px solid var(--border-color);
}

.tariff-details p {
	color: var(--text-color);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.tariff-notes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.tariff-note-item {
	background-color: var(--white);
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--primary-color);
}

.tariff-note-item p {
	color: var(--text-color);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.tariff-note-item strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* Apartment Units Section */
.apartment-units {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #e8eff5 100%);
}

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

.unit-card {
	background-color: var(--white);
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.unit-card:hover {
	transform: translateY(-10px);
}

.unit-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.unit-price {
	font-size: 2rem;
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 20px;
}

.unit-features {
	list-style: none;
	margin-bottom: 25px;
}

.unit-features li {
	padding: 8px 0;
	color: var(--text-color);
	border-bottom: 1px solid var(--border-color);
}

.unit-features li:last-child {
	border-bottom: none;
}

.unit-size {
	color: var(--text-light);
	margin-bottom: 20px;
	font-weight: 500;
}

/* Amenities Section */
.amenities {
	background-color: var(--white);
}

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

.amenity-item {
	padding: 25px 20px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 8px;
	text-align: center;
	font-weight: 500;
	transition: all 0.3s;
	font-size: 1rem;
}

.amenity-item:hover {
	background-color: var(--primary-color);
	color: var(--white);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(3, 48, 75, 0.2);
}

/* Location Section */
.location {
	background-color: var(--light-bg);
}

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

.location-item {
	padding: 30px;
	background-color: var(--white);
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-item h3 {
	color: var(--primary-color);
	margin-bottom: 10px;
	font-size: 1.3rem;
}

.location-item p {
	color: var(--text-light);
	font-size: 1.1rem;
}

.location-map-container {
	margin-top: 50px;
}

.location-map {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
	width: 100%;
	height: 450px;
	border: 0;
	display: block;
}

/* Investment Section */
.investment {
	background-color: var(--white);
}

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

.investment-item {
	padding: 40px 30px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #044a6b 100%);
	color: var(--white);
	border-radius: 10px;
	text-align: center;
	transition: transform 0.3s;
}

.investment-item:hover {
	transform: translateY(-5px);
}

.investment-item h3 {
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.investment-item p {
	opacity: 0.9;
	font-size: 1rem;
}

/* About Section */
.about-section {
	background-color: var(--white);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
}

.lead-text {
	font-size: 1.2rem;
	color: var(--text-color);
	line-height: 1.8;
	margin-bottom: 40px;
}

.mission-vision-inline {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 30px;
}

.mv-item h4 {
	color: var(--primary-color);
	font-size: 1.3rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.mv-item p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 1rem;
}

.about-image img,
.services-image img,
.facilities-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
	background-color: var(--light-bg);
}

.mv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.mv-card {
	padding: 50px 40px;
	background-color: var(--white);
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.mv-card:hover {
	transform: translateY(-5px);
}

.mv-icon {
	font-size: 4rem;
	margin-bottom: 20px;
}

.mv-card h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.mv-card p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 1.1rem;
}

.mission-card {
	border-top: 4px solid var(--primary-color);
}

.vision-card {
	border-top: 4px solid var(--secondary-color);
}

/* Services Section */
.services {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #e8eff5 100%);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: var(--white);
	padding: 0;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	text-align: left;
	overflow: hidden;
}

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

.service-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

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

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

.service-card h3 {
	color: var(--primary-color);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	padding: 20px 30px 0;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.6;
	margin: 0;
	padding: 0 30px 30px;
}

/* Facilities Section */
.facilities {
	background-color: var(--light-bg);
}

.facilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.facility-item {
	padding: 25px 20px;
	background-color: var(--white);
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.facility-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(3, 48, 75, 0.1);
}

.facility-icon {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.facility-item p {
	color: var(--text-color);
	font-weight: 500;
	margin: 0;
}

.facilities-image {
	margin-top: 40px;
}

/* Contact Form Section */
.contact-form {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #e8eff5 100%);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	align-items: start;
}

.form-container {
	max-width: 100%;
}

.contact-info {
	background-color: var(--white);
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
	color: var(--primary-color);
	margin-bottom: 25px;
	font-size: 1.5rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-detail-item strong {
	color: var(--primary-color);
	display: block;
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.contact-detail-item p {
	color: var(--text-color);
	line-height: 1.6;
	margin: 0;
}

.contact-detail-item a {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-detail-item a:hover {
	text-decoration: underline;
}

.contact-form-element {
	background-color: var(--white);
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--primary-color);
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid var(--border-color);
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s;
	font-family: inherit;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.contact-form-element .btn {
	width: 100%;
	padding: 15px;
	font-size: 1.1rem;
}

/* Form Messages */
.form-message {
	padding: 15px 20px;
	margin-bottom: 25px;
	border-radius: 5px;
	font-weight: 500;
	animation: slideDown 0.3s ease-out;
}

.form-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer Styles */
.site-footer {
	background: linear-gradient(135deg, var(--primary-color) 0%, #044a6b 100%);
	color: var(--white);
}

.footer-main {
	padding: 80px 0 40px;
}

.footer-container {
	max-width: 1618px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-brand {
	margin-bottom: 50px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo-img {
	height: 80px;
	width: auto;
	object-fit: contain;
}

.footer-tagline {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

.footer-description {
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.9;
	margin-bottom: 25px;
	max-width: 500px;
}

.footer-social {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.social-icon {
	padding: 10px 18px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	color: var(--white);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.footer-link-group h4 {
	color: var(--secondary-color);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-link-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-group ul li {
	margin-bottom: 12px;
}

.footer-link-group a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.85;
	transition: all 0.3s;
	font-size: 0.95rem;
}

.footer-link-group a:hover {
	opacity: 1;
	color: var(--secondary-color);
	padding-left: 5px;
}

.contact-info-item {
	margin-bottom: 20px;
}

.contact-info-item strong {
	color: var(--secondary-color);
	display: block;
	margin-bottom: 8px;
	font-size: 1rem;
}

.contact-info-item p {
	margin: 0;
	opacity: 0.9;
	line-height: 1.6;
	font-size: 0.95rem;
}

.contact-info-item a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.3s;
}

.contact-info-item a:hover {
	opacity: 1;
	color: var(--secondary-color);
}

.footer-bottom {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	text-align: center;
	margin: 0;
	opacity: 0.8;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.section-padding {
		padding: 50px 0;
	}

	.overview-grid,
	.features-grid,
	.units-grid,
	.amenities-grid,
	.location-grid,
	.investment-grid,
	.services-grid,
	.facilities-grid,
	.mv-grid,
	.tariff-grid {
		grid-template-columns: 1fr;
	}

	.tariff-notes {
		grid-template-columns: 1fr;
	}

	.tariff-price {
		font-size: 1.3rem;
	}

	.tariff-image {
		height: 180px;
	}

	.tariff-card h3 {
		padding: 20px 20px 0;
		font-size: 1.2rem;
	}

	.tariff-price {
		padding: 0 20px;
	}

	.tariff-details {
		padding: 15px 20px 25px;
	}

	.location-map-container {
		margin-top: 30px;
	}

	.location-map iframe {
		height: 300px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.hero-section {
		min-height: 60vh;
		padding: 100px 20px;
		background-attachment: scroll;
	}

	.hero-title {
		font-size: 2.8rem;
	}

	.hero-title .highlight {
		font-size: 3.2rem;
	}

	.hero-tagline {
		font-size: 1.3rem;
	}

	.mission-vision-inline {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.site-logo {
		height: 60px;
		max-width: 200px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-main {
		padding: 50px 0 30px;
	}

	.footer-container {
		padding: 0 20px;
	}

	.floating-footer {
		display: none;
	}

	body {
		padding-bottom: 100px;
	}
}

/* Floating Footer */
.floating-footer {
	position: fixed;
	bottom: 79px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	width: 80%;
	max-width: 1618px;
}

.floating-footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
	background-color: rgba(3, 48, 75, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	padding: 0;
	border-radius: 15px;
	position: relative;
	width: 100%;
	min-height: 70px;
}

.floating-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 20px;
	position: relative;
}

.floating-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.3);
}

.floating-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	text-decoration: none;
	color: var(--white);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
	text-align: center;
}

.floating-link:hover {
	color: var(--secondary-color);
}

.floating-link:hover .floating-item-icon {
	color: var(--secondary-color);
}

.floating-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: currentColor;
	transition: color 0.3s;
}

.floating-item-icon svg {
	width: 100%;
	height: 100%;
}

.floating-item-text {
	white-space: nowrap;
}

.floating-divider {
	display: none;
}

/* Mobile Footer */
.mobile-footer {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	background: transparent;
	box-shadow: none;
	border: none;
	gap: 15px;
	flex-direction: column;
}

.mobile-footer-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-decoration: none;
	color: var(--white);
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
}

.mobile-footer-btn span {
	display: none;
}

.mobile-footer-btn svg {
	width: 28px;
	height: 28px;
	color: var(--white);
	transition: all 0.3s;
}

.mobile-whatsapp {
	background-color: #25D366;
}

.mobile-whatsapp:hover,
.mobile-whatsapp:active {
	background-color: #20ba5a;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-call {
	background-color: var(--primary-color);
}

.mobile-call:hover,
.mobile-call:active {
	background-color: #022a3f;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(3, 48, 75, 0.4);
}

/* Call Dropdown Styles */
.call-dropdown-wrapper {
	position: relative;
}

.call-dropdown-btn {
	cursor: pointer;
	border: none;
	padding: 0;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

.floating-item .call-dropdown-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	text-decoration: none;
	color: var(--white);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
	text-align: center;
	background: none;
}

.floating-item .call-dropdown-btn:hover {
	color: var(--secondary-color);
}

.floating-item .call-dropdown-btn:hover .floating-item-icon {
	color: var(--secondary-color);
}

.call-dropdown-menu {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(3, 48, 75, 0.98);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 10px 0;
	min-width: 180px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(10px);
	transition: all 0.3s ease;
	margin-bottom: 10px;
	z-index: 1000;
}

.call-dropdown-wrapper.active .call-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.call-option {
	display: block;
	padding: 12px 20px;
	color: var(--white);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.call-option:last-child {
	border-bottom: none;
}

.call-option:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--secondary-color);
}

/* Mobile Call Dropdown */
.mobile-call-wrapper {
	position: relative;
}

.mobile-call-dropdown {
	bottom: auto;
	top: 50%;
	right: 100%;
	left: auto;
	transform: translateY(-50%) translateX(10px);
	margin-right: 10px;
	margin-top: 0;
	margin-bottom: 0;
	min-width: 200px;
}

.mobile-call-wrapper.active .mobile-call-dropdown {
	transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
	.mobile-footer {
		display: flex;
	}
}

/* Screen Reader Text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

