:root {
	--primary-color: #0077b6;
	--secondary-color: #00b4d8;
	--accent-color: #ffc300;
	--text-color: #333;
	--light-text-color: #f8f9fa;
	--dark-bg-color: #03045e;
	--section-bg-color: #f8f9fa;
	--gradient-primary: linear-gradient(
		135deg,
		var(--secondary-color) 0%,
		var(--primary-color) 100%
	);
	--shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
}

a {
	text-decoration: none;
	color: inherit;
	outline: none;
	cursor: pointer;
	transition: color 0.3s ease, box-shadow 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Header height */
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--text-color);
	line-height: 1.7;
	background-color: #ffffff;
	padding-top: 75px; /* Header height */
}

h1,
h2,
h3,
h4 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	line-height: 1.3;
}

.wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.btn {
	background: var(--gradient-primary);
	color: white;
	padding: 0.9rem 2.2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
	border: none;
}

.btn:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

/* ==================== 2. MODERN HEADER ==================== */
.modern-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 75px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.modern-header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modern-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}
.modern-logo:hover {
	box-shadow: none;
}

.logo-icon {
	max-width: 45px;
	max-height: 45px;
	border-radius: 50px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.modern-logo:hover .logo-icon {
	transform: scale(1.1);
	box-shadow: 0 0px 20px rgba(0, 118, 182, 0.9);
}
.logo-icon i {
	color: white;
	font-size: 1.4rem;
}

.logo-text {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--primary-color);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 0.5rem;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.1rem;
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	font-size: 0.95rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}
.nav-link i {
	display: none;
} /* Hide icons on desktop */
.nav-link:hover {
	background: rgba(0, 119, 182, 0.08);
	color: var(--primary-color);
}
.nav-link.nav-cta {
	background: var(--gradient-primary);
	color: white;
}
.nav-link.nav-cta:hover {
	color: white;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}
.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* ==================== 3. IMPROVED HERO CAROUSEL ==================== */
.hero-carousel-container {
	height: calc(100vh - 75px);
	position: relative;
	overflow: hidden;
	background: var(--dark-bg-color);
}

.carousel-wrapper {
	width: 100%;
	height: 100%;
}
.carousel-slides {
	width: 100%;
	height: 100%;
}
.carousel-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: white;
	font-size: 1.2rem;
}
.carousel-loading p {
	margin: 20px;
}
.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	background-size: cover;
	background-position: center;
}
.carousel-slide.active {
	opacity: 1;
	z-index: 1;
}
.carousel-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0.2) 100%
	);
}
.carousel-content {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	text-align: left;
	color: white;
	z-index: 2;
	width: 90%;
	max-width: 650px;
}
.carousel-content .catch-phrase {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease-out;
}
.carousel-content .sub-text {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	margin-bottom: 2rem;
	max-width: 500px;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease-out 0.3s backwards;
}
.carousel-content .carousel-cta {
	animation: fadeInUp 1s ease-out 0.6s backwards;
}

.carousel-controls {
	position: absolute;
	bottom: 30px;
	right: 30px;
	display: flex;
	gap: 1rem;
	z-index: 10;
}
.carousel-btn {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}
.carousel-btn:hover {
	background: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}
.carousel-indicators {
	position: absolute;
	bottom: 45px;
	left: 5%;
	display: flex;
	gap: 10px;
	z-index: 10;
}
.carousel-indicator {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;
	border: 2px solid transparent;
}
.carousel-indicator.active {
	background: white;
	width: 30px;
	border-radius: 10px;
}

.scroll-indicator {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: white;
	z-index: 10;
	animation: float 3s ease-in-out infinite;
	text-decoration: none;
}
.scroll-mouse {
	width: 25px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 15px;
}
.scroll-wheel {
	width: 3px;
	height: 8px;
	background: white;
	border-radius: 2px;
	margin: 6px auto 0;
	animation: scrollWheel 2s ease-in-out infinite;
}
.scroll-indicator span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ==================== 4. MAIN CONTENT & SECTIONS ==================== */
.content-section {
	padding: 5rem 0;
}
.gray-bg {
	background-color: var(--section-bg-color);
}

.section-header {
	margin-bottom: 3rem;
	text-align: center;
}
.section-header h2 {
	font-size: clamp(2rem, 5vw, 2.8rem);
	position: relative;
	display: inline-block;
	padding-bottom: 0.75rem;
}
.section-header h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}
.about-us-text {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: #555;
	text-align: center;
}

/* ==================== 5. PACKAGE CARDS ==================== */
.packages-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.package-card {
	background: white;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.4s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.package-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-md);
}
.package-card h3 {
	font-size: 1.6rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.package-card .price {
	font-size: 3.5rem;
	font-weight: 800;
	margin: 1.5rem 0;
	color: var(--dark-bg-color);
}
.package-card .price span {
	font-size: 1rem;
	font-weight: normal;
	color: #777;
}
.package-card ul {
	list-style: none;
	margin-bottom: 2rem;
	text-align: left;
}
.package-card ul li {
	margin-bottom: 0.8rem;
	padding-left: 30px;
	position: relative;
	color: #555;
}
.package-card ul li::before {
	content: "✓";
	color: var(--secondary-color);
	position: absolute;
	left: 0;
	font-weight: bold;
	font-size: 1.2rem;
}

/* ==================== 6. SERVICES & EXPLORE CARDS ==================== */
.services-container,
.explore-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}

.service-card,
.explore-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
}
.service-card:hover,
.explore-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-md);
}

.service-image,
.explore-image {
	position: relative;
	overflow: hidden;
	height: 250px;
}
.service-image img,
.explore-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.service-card:hover .service-image img,
.explore-card:hover .explore-image img {
	transform: scale(1.1);
}
.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.service-overlay i {
	color: white;
	font-size: 4rem;
}
.service-card:hover .service-overlay {
	opacity: 0.9;
}

.service-content {
	padding: 2rem;
	text-align: center;
}
.service-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.service-content p {
	color: #666;
	margin-bottom: 1.5rem;
}

.explore-overlay {
	padding: 2rem;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.explore-overlay i {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}
.explore-overlay h3 {
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}
.explore-overlay p {
	color: #666;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

/* ==================== 7. TESTIMONIAL CARDS ==================== */
.testimonials-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.testimonial-card {
	background: var(--section-bg-color);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	position: relative;
}
.testimonial-card::before {
	content: "“";
	position: absolute;
	top: -10px;
	left: 15px;
	font-size: 6rem;
	color: var(--primary-color);
	opacity: 0.1;
	font-family: "Times New Roman", serif;
}
.testimonial-card p {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #555;
	font-size: 1rem;
}
.testimonial-card .author {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 1.1rem;
}

/* ==================== 8. MODERN FOOTER (REVISED) ==================== */
.modern-footer {
	position: relative;
	background: var(--dark-bg-color);
	color: var(--light-text-color);
	padding-top: 4rem; /* Space for wave */
}
.footer-wave {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}
.footer-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 100px;
}
.footer-wave path {
	fill: #fff;
}
.gray-bg + .modern-footer .footer-wave path {
	fill: var(--section-bg-color);
}

.footer-content-wrapper {
	padding: 4rem 1.5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* Main 3-Column Grid */
.footer-grid {
	display: grid;
	gap: 2.5rem 2rem;
	/* Creates a responsive grid that wraps nicely on smaller screens */
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	margin-bottom: 3rem;
}
.brand-column .footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	margin-bottom: 1.5rem;
}
.footer-logo-icon {
	width: 50px;
	height: auto;
}
.brand-column .footer-logo-text {
	color: white;
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 1.4rem;
}
.footer-description {
	line-height: 1.8;
	color: #b0b0b0;
	margin-bottom: 1.5rem;
}
.social-links {
	display: flex;
	gap: 0.75rem;
}
.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}
.social-link:hover {
	background: var(--gradient-primary);
	transform: translateY(-3px);
}

.footer-heading {
	color: white;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}
.footer-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--secondary-color);
}
.footer-links {
	list-style: none;
}
.footer-links li {
	margin-bottom: 0.75rem;
}
.footer-links a {
	color: #b0b0b0;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}
.footer-links a:hover {
	color: var(--secondary-color);
	padding-left: 0.5rem;
}
.footer-links a i {
	font-size: 0.6rem;
}

/* Clickable Contact Info */
.contact-info {
	list-style: none;
}
.contact-info li {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.contact-info a {
	color: #b0b0b0;
	text-decoration: none;
	display: flex;
	transition: color 0.3s ease;
}
.contact-info a:hover {
	color: var(--secondary-color);
}
.contact-info i {
	color: var(--secondary-color);
	font-size: 1.1rem;
	width: 20px;
	margin-top: 4px;
}

/* New Map Section */
.footer-map-section {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.footer-map-section .footer-heading {
	text-align: center;
}
.footer-map-section .footer-heading::after {
	left: 50%;
	transform: translateX(-50%);
}
.map-container {
	border-radius: 15px;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.9rem;
	color: #888;
}
.footer-bottom a {
	color: #888;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-bottom a:hover {
	color: var(--secondary-color);
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
	.footer-grid,
	.footer-heading {
		text-align: center;
	}
	.footer-heading::after {
		left: 50%;
		transform: translateX(-50%);
	}
	.contact-info a,
	.footer-links a,
	.social-links {
		justify-content: center;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}
/* ==================== 9. WHATSAPP BUTTON ==================== */
.whatsapp-float-modern {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: all 0.3s ease;
	text-decoration: none;
}
.whatsapp-float-modern:hover {
	transform: translateY(-5px) scale(1.1);
}
.whatsapp-float-modern i {
	color: white;
	font-size: 30px;
}
.whatsapp-ripple {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	animation: ripple 2s infinite;
}
.whatsapp-tooltip {
	position: absolute;
	right: 75px;
	background: white;
	color: var(--text-color);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
}
.whatsapp-float-modern:hover .whatsapp-tooltip {
	opacity: 1;
	right: 80px;
}

/* ==================== 10. HELPERS (LOADING, ANIMATIONS) ==================== */
.loading-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem;
	gap: 1.5rem;
	color: #888;
	grid-column: 1 / -1; /* Span across grid */
}
.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid rgba(0, 119, 182, 0.1);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes float {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-10px);
	}
}
@keyframes scrollWheel {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(10px);
	}
}
@keyframes ripple {
	from {
		transform: scale(1);
		opacity: 1;
	}
	to {
		transform: scale(1.8);
		opacity: 0;
	}
}

/* ==================== 11. RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
	.nav-menu-container {
		position: fixed;
		top: 75px;
		right: -100%;
		width: 300px;
		height: calc(100vh - 75px);
		background: white;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
		transition: right 0.4s ease-in-out;
	}
	.nav-menu-container.active {
		right: 0;
	}
	.nav-menu {
		flex-direction: column;
		padding: 2rem;
		gap: 1rem;
		height: 100%;
	}
	.nav-link {
		justify-content: flex-start;
		padding: 1rem;
		font-size: 1.1rem;
	}
	.nav-link i {
		display: inline-block;
		width: 25px;
		text-align: center;
	} /* Show icons */
	.mobile-menu-toggle {
		display: flex;
		z-index: 1001;
	}

	.mobile-menu-toggle.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.mobile-menu-toggle.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.carousel-content {
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		padding: 0 1rem;
	}
	.carousel-indicators {
		left: 50%;
		transform: translateX(-50%);
	}
	.carousel-controls {
		display: none;
	} /* Hide buttons on mobile, rely on swipe */
	.scroll-indicator {
		display: none;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.brand-column {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.content-section {
		padding: 3rem 0;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-heading::after {
		left: 50%;
		transform: translateX(-50%);
	}
	.footer-links a,
	.contact-info li {
		justify-content: center;
	}
	.social-links {
		justify-content: center;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.newsletter-content {
		text-align: center;
	}
	.newsletter-form {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.nav-menu-container {
		width: 100%;
	}
	.package-card {
		padding: 1.5rem;
	}
	.package-card .price {
		font-size: 2.8rem;
	}
	.whatsapp-tooltip {
		display: none;
	}
}
