@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
	/* Brand palette from logo */
	--brand-midnight-green: #004953; /* Airplane, text PTA, Polyglot Travel Agency */
	--brand-hooker-green: #49796b; /* Waves/route and lower arc */
	--brand-ash-gray: #b2beb5; /* Light wave streak */
	--brand-sun: #fca987; /* Sun element */

	/* Additional colors for elements */
	--brand-dark-graphite: #28292d; /* For headings */
	--brand-peach: #f69358; /* For accents */

	/* Background and main colors */
	--background-main: #fffaed; /* Main background from requirements */

	/* UI tokens */
	--primary-color: var(--brand-midnight-green);
	--primary-dark: var(--brand-hooker-green);
	--secondary-color: var(--background-main);
	--text-color: var(--brand-dark-graphite);
	--light-text: #ffffff;
	--background-light: #f4fafb;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	--accent-light: #e7f0ee;
	--accent-color: var(--brand-sun);
	--peach-accent: var(--brand-peach);
}

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

body {
	font-family: "Montserrat", sans-serif;
	color: var(--text-color);
	background-color: var(--background-light);
	overflow-x: hidden;
	position: relative;
}

a {
	border: 0;
	text-decoration: none;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--background-light);
}

::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	border-radius: 10px;
}

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

.btn {
	display: inline-block;
	padding: 14px 28px;
	background-color: var(--primary-color);
	color: var(--light-text);
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* HERO SECTION */
.hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	background:
		linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
		url("hero-person.jpg") no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: 75px;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 650px;
	padding: 0 20px 0 50px;
}

.hero h1 {
	color: var(--light-text);
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero h2 {
	color: var(--light-text);
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 30px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content-size {
	font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
}

/* QR Code Styling */
.qr-cta {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.qr-code {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 8px;
}

.qr-text {
	color: var(--light-text);
	max-width: 380px;
	opacity: 0.95;
	font-size: 14px;
	line-height: 1.4;
}

/* Hide QR on mobile */
@media (max-width: 768px) {
	.qr-cta {
		display: none;
	}
}

.hero-person {
	position: absolute;
	right: 5%;
	bottom: 0;
	height: 85%;
	z-index: 5;
}

.wave-bottom {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	z-index: 6;
}

/* FORM STYLING */
.tour-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	max-width: 450px;
}

.form-group {
	position: relative;
}

.tour-form select,
.tour-form input {
	width: 100%;
	padding: 15px 20px;
	border-radius: 30px;
	border: none;
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	color: var(--text-color);
	box-shadow: var(--shadow);
	appearance: none;
}

.form-group::after {
	content: "▼";
	font-size: 12px;
	color: var(--primary-color);
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.tour-form button {
	margin-top: 10px;
	padding: 16px 24px;
	font-size: 16px;
	border-radius: 30px;
	transition:
		transform 0.3s,
		background-color 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ABOUT SECTION */
.about {
	background-color: var(--secondary-color);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.about-container {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-photo {
	flex-shrink: 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-content h2 {
	color: var(--primary-color);
	font-size: 28px;
	margin-bottom: 15px;
}

.about-content h3 {
	color: var(--brand-secondary);
	font-size: 20px;
	margin-bottom: 12px;
	font-weight: 600;
}

.about-section {
	margin-bottom: 25px;
}

.about-section p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 0;
}

.about-conclusion {
	margin: 30px 0 25px;
	padding: 20px;
	background: linear-gradient(135deg, var(--accent-light), #f0f8f5);
	border-radius: 15px;
	text-align: center;
}

.about-conclusion p {
	font-size: 18px;
	color: var(--brand-primary);
	margin: 0;
}

.about-social {
	text-align: left;
}

.social-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.social-button:hover {
	transform: translateY(-3px);
	background-color: var(--primary-dark);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-button i {
	font-size: 20px;
}

.decorative-element {
	position: absolute;
	opacity: 0.2;
}

.element-1 {
	right: 10%;
	top: 20%;
}

.element-2 {
	left: 5%;
	bottom: 15%;
}

/* COUNTRY INFO SECTION */
.country-info {
	background-color: var(--secondary-color);
	padding: 100px 0;
	position: relative;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
}

.info-content h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin-bottom: 30px;
	color: var(--text-color);
}

.info-content p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 25px;
	color: var(--text-color);
	opacity: 0.9;
}

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

.highlight-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: transform 0.3s ease;
}

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

.highlight-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.highlight-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--text-color);
}

.highlight-text {
	opacity: 0.8;
	line-height: 1.6;
	color: var(--text-color);
}

/* DEALS SECTION */
.deals {
	padding: 100px 0;
	background-color: var(--background-light);
	position: relative;
}

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

.section-header h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 15px;
	color: var(--text-color);
}

.section-header p {
	font-size: 18px;
	color: var(--text-color);
	opacity: 0.8;
	max-width: 700px;
	margin: 0 auto;
}

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

.deal-card {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
}

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

.deal-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.deal-content {
	padding: 20px;
}

.deal-title {
	font-size: 22px;
	margin-bottom: 5px;
	font-weight: 600;
}

.deal-price {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
}

.deal-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.feature {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: var(--text-color);
}

.deal-button {
	width: 100%;
	text-align: center;
	padding: 12px;
}

/* WHY MALDIVES SECTION */
.why-maldives {
	padding: 80px 0;
	background-color: var(--background-main);
}

.why-maldives-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.why-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.4s ease;
}

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

.why-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color), #ffb69e);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.why-icon i {
	font-size: 28px;
	color: var(--primary-color);
}

.why-card h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.why-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
}

/* ATOLLS SECTION */
.atolls-info {
	padding: 100px 0;
	background-color: var(--background-light);
}

.atoll-card {
	margin: 50px 0;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	min-height: 500px;
}

.atoll-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 0;
}

.atoll-gradient {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(255, 250, 237, 1) 0%,
		rgba(255, 250, 237, 0.4) 40%,
		transparent 100%
	);
	z-index: 1;
}

.atoll-content {
	position: relative;
	z-index: 2;
	width: 60%;
	padding-right: 40px;
}

.atoll-title {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.atoll-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
	color: var(--text-color);
}

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

.atoll-features h4 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 18px;
}

.atoll-features ul {
	list-style: none;
	padding: 0;
}

.atoll-features li {
	margin-bottom: 10px;
	padding-left: 0;
	line-height: 1.5;
}

.atoll-highlight {
	background-color: var(--background-light);
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid var(--accent-color);
}

.atoll-highlight p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

/* ACCOMMODATION SECTION */
.accommodation {
	padding: 100px 0;
	background-color: var(--background-main);
}

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

.accommodation-card {
	background-color: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
}

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

.accommodation-image {
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.accommodation-content {
	padding: 25px;
}

.accommodation-content h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.accommodation-content p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: var(--text-color);
}

.accommodation-features {
	margin-top: 15px;
}

.accommodation-features ul {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 10px;
}

.accommodation-features li {
	padding-left: 25px;
	position: relative;
	font-size: 14px;
	line-height: 1.5;
}

.accommodation-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

/* ACTIVITIES SECTION */
.activities {
	padding: 80px 0;
	background-color: var(--background-light);
}

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

.activity-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.4s ease;
}

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

.activity-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.activity-icon i {
	font-size: 28px;
	color: white;
}

.activity-card h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.activity-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
}

/* WHY CHOOSE US SECTION (УТП) */
.why-choose {
	padding: 80px 0;
	background: var(--background-main);
	position: relative;
}

.why-choose .section-header h2 {
	color: var(--text-color);
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.why-choose .section-header p {
	color: var(--text-color);
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
	line-height: 1.5;
}

.why-back {
	padding: 80px 0;
	background: var(--background-light);
	position: relative;
}

.why-back .section-header h2 {
	color: var(--text-color);
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.why-back .section-header p {
	color: var(--text-color);
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
	line-height: 1.5;
}

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

.utp-card {
	background: white;
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	text-align: center;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	border: 1px solid rgba(0, 73, 83, 0.1);
}

.utp-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.utp-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--peach-accent), var(--accent-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.utp-icon i {
	color: white;
	font-size: 24px;
}

.utp-card h3 {
	color: var(--text-color);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.3;
}

.utp-card p {
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
}

.utp-cta {
	text-align: center;
	margin-top: 40px;
}

/* Responsive для УТП блока */
@media (max-width: 768px) {
	.utp-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.utp-card {
		padding: 30px 20px;
	}

	.why-choose {
		padding: 60px 0;
	}
}

/* OLD WHY CHOOSE SECTION (для совместимости) */
.benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.benefit-card {
	background-color: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
	text-align: center;
}

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

.benefit-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--background-light);
	border-radius: 50%;
	color: var(--primary-color);
	font-size: 30px;
}

.benefit-title {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

.benefit-text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
	opacity: 0.8;
}

/* TESTIMONIALS SECTION */
.testimonials {
	padding: 100px 0;
	background-color: var(--background-main);
}

.testimonial-slider {
	overflow: hidden;
	position: relative;
	margin-top: 50px;
}

.testimonial-track {
	display: flex;
	transition: transform 0.5s ease;
}

.testimonial-slide {
	min-width: 100%;
	padding: 0 20px;
}

.testimonial-card {
	background-color: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: var(--shadow);
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	overflow: hidden;
	background-color: var(--background-light);
}

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

.testimonial-text {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 20px;
	font-style: italic;
	position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
	content: '"';
	font-size: 60px;
	color: var(--primary-color);
	opacity: 0.2;
	position: absolute;
	line-height: 0;
}

.testimonial-text::before {
	top: 15px;
	left: -15px;
}

.testimonial-text::after {
	bottom: -10px;
	right: -15px;
}

.testimonial-author {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
}

.testimonial-trip {
	color: var(--primary-color);
	font-size: 14px;
}

.testimonial-controls {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
	padding-bottom: 12px;
}

.control-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow);
	font-size: 18px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

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

/* CONTACT SECTION */
.contact {
	padding: 100px 0;
	background-color: var(--background-light);
	position: relative;
	overflow: hidden;
}

.contact-container {
	display: flex;
	gap: 50px;
	align-items: center;
}

.contact-info {
	flex: 1;
}

.contact-form {
	flex: 1;
	padding: 40px;
	border-radius: 20px;
}

.form-input {
	display: block;
	width: 100%;
	padding: 15px 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
	transition: border-color 0.3s;
}

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

textarea.form-input {
	min-height: 150px;
	resize: vertical;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.contact-info-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	border-radius: 50%;
	color: white;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-info-content h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-info-content p,
.contact-info-content a {
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info-content a:hover {
	color: var(--primary-color);
}

/* FOOTER */
.footer {
	background-color: var(--text-color);
	color: white;
	padding: 60px 0 30px;
}

.footer a {
	color: white;
}

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

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

.footer-logo-img {
	height: 50px;
	width: auto;
}

.footer-about p {
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0.8;
}

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

.social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	font-size: 18px;
	transition: all 0.3s ease;
}

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

.footer-heading {
	font-size: 18px;
	margin-bottom: 25px;
	font-weight: 600;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-links a:hover {
	opacity: 1;
}

.footer-contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	align-items: flex-start;
}

.footer-contact-item i {
	color: var(--primary-color);
	font-size: 18px;
	margin-top: 3px;
}

.footer-contact-info {
	flex: 1;
}

.copyright {
	text-align: center;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	opacity: 0.7;
}

/* MODAL */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background-color: white;
	border-radius: 20px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	position: relative;
	transform: translateY(50px);
	transition: transform 0.5s ease;
}

.modal.active .modal-content {
	transform: translateY(0);
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--text-color);
}

.modal-title {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.modal-form .btn {
	width: 100%;
}

/* DECORATIVE ELEMENTS */
.palm-decoration {
	position: absolute;
	bottom: 0;
	right: 5%;
	width: 120px;
	opacity: 0.2;
	z-index: 1;
}

.shell-decoration {
	position: absolute;
	top: 10%;
	right: 5%;
	width: 80px;
	opacity: 0.2;
	z-index: 1;
}

.airplane-path {
	position: absolute;
	top: 100px;
	right: -100px;
	width: 200px;
	opacity: 0.3;
	z-index: 1;
}

/* WHY TRUST SECTION */
.why-trust {
	padding: 80px 0;
	background: linear-gradient(135deg, #fffaed 0%, #f8f9fa 100%);
}

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

.trust-card {
	background: white;
	padding: 35px 25px;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 73, 83, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

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

.trust-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
}

.trust-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--brand-primary);
	margin-bottom: 15px;
	line-height: 1.3;
}

.trust-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
	opacity: 0.9;
}

.trust-cta {
	text-align: center;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.trust-card {
		padding: 40px 30px;
	}
}

/* ANIMATIONS */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

.animate-float {
	animation: float 5s ease-in-out infinite;
}

/* NAVIGATION */
.nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 15px 0;
	transition: all 0.3s ease;
}

.nav.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	display: flex;
	align-items: center;
}

.nav-logo-img {
	height: 45px;
	width: auto;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-links a {
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--primary-color);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-dropdown-toggle i {
	font-size: 12px;
	transition: transform 0.3s;
}

.nav-dropdown.active .nav-dropdown-toggle i {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 200px;
	box-shadow: var(--shadow);
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	list-style: none;
	padding: 10px 0;
	margin-top: 10px;
}

.nav-dropdown.active .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-dropdown-menu li {
	margin: 0;
}

.nav-dropdown-menu a {
	display: block;
	padding: 12px 20px;
	color: var(--text-color);
	transition: all 0.3s;
}

.nav-dropdown-menu a:hover {
	background-color: var(--accent-light);
	color: var(--primary-color);
}

/* Nav CTA */
.nav-cta {
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--brand-sun), #ffb69e);
	color: var(--brand-primary) !important;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(252, 169, 135, 0.4);
}
.nav-cta i {
	font-size: 18px;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: var(--text-color);
	transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

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

/* WHATSAPP BUTTON */
.whatsapp-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 100;
	cursor: pointer;
	transition: all 0.3s ease;
}

.whatsapp-button:hover {
	transform: scale(1.1);
}

/* WhatsApp tooltip */
.whatsapp-button::after {
	content: attr(data-tooltip);
	position: absolute;
	right: 70px;
	bottom: 50%;
	transform: translateY(50%);
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}
.whatsapp-button:hover::after {
	opacity: 1;
}

/* WhatsApp Float Component */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
}

.whatsapp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	color: white;
	font-size: 30px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.whatsapp-btn:hover {
	transform: scale(1.1);
	color: white;
	text-decoration: none;
}

/* Footer */
.footer-disclaimer {
	margin-top: 20px;
	font-size: 12px;
	color: #667;
}
.footer-disclaimer a {
	color: var(--primary-color);
	text-decoration: underline;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
	.hero-person {
		height: 70%;
		right: 0;
	}

	.contact-container {
		flex-direction: column;
	}

	.contact-info,
	.contact-form {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.info-highlights {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.hero-content {
		padding: 0 20px;
		text-align: center;
		margin: 0 auto;
		margin-top: 80px;
	}

	.hero-person {
		display: none;
	}

	.tour-form {
		margin: 0 auto;
	}

	.about-container {
		flex-direction: column;
		text-align: center;
	}

	.about-content {
		padding: 0 20px;
	}

	.whatsapp-button {
		width: 50px;
		height: 50px;
		font-size: 24px;
		bottom: 20px;
		right: 20px;
	}

	.whatsapp-float {
		bottom: 20px;
		right: 20px;
	}

	.whatsapp-btn {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	/* Mobile Navigation */
	.mobile-menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 58px;
		right: -100%;
		width: 280px;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 20px;
		box-shadow: var(--shadow);
		transition: right 0.3s ease;
		overflow-y: auto;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: var(--accent-light);
		margin: 10px 0;
		border-radius: 8px;
		display: none;
	}

	.nav-dropdown.active .nav-dropdown-menu {
		display: block;
	}

	.nav-dropdown-menu a {
		padding: 10px 15px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.section-header h2 {
		font-size: 28px;
	}

	.section-header p {
		font-size: 16px;
	}

	.benefit-card,
	.deal-card,
	.testimonial-card {
		padding: 20px;
	}

	.footer-container {
		grid-template-columns: 1fr;
	}
}

/* EMIRATES CITY CARDS WITH IMAGES */
.emirate-detailed {
	position: relative;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.emirate-detailed:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.city-image-placeholder {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	z-index: 1;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

/* Background images for each city */
.city-image-placeholder[data-city="dubai"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/dubai-city.jpg") center / cover no-repeat;
}

.city-image-placeholder[data-city="abu-dhabi"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/abu-dhabi-city.jpg") center / cover no-repeat;
}

.city-image-placeholder[data-city="sharjah"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/sharjah-city.jpg") center / cover no-repeat;
}

.city-image-placeholder[data-city="ajman"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/ajman-city.jpg") center / cover no-repeat;
}

.city-image-placeholder[data-city="ras-al-khaimah"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/ras-al-khaimah-city.jpg") center / cover no-repeat;
}

.city-image-placeholder[data-city="fujairah"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/fujairah-city.jpg") center / cover no-repeat;
}

.city-image-placeholder[data-city="umm-al-quwain"] {
	background:
		linear-gradient(
			to left,
			rgba(255, 255, 255, 0),
			rgba(255, 255, 255, 0.4) 40%,
			rgba(255, 255, 255, 0.8) 70%,
			white 90%
		),
		url("uae/umm-al-quwain-city.jpg") center / cover no-repeat;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	.city-image-placeholder {
		position: static;
		width: 100%;
		height: 200px;
		margin: -40px -40px 20px -40px;
		opacity: 1;
	}

	.emirate-detailed > div[style*="z-index: 2"] {
		position: static !important;
	}
}

/* UAE PAGE SPECIFIC STYLES */
.emirates-info {
	padding: 80px 0;
	background: var(--secondary-color);
}

.emirate-card {
	margin: 50px 0;
	background: white;
	padding: 40px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.emirate-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 0;
}

.emirate-gradient {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.8) 60%,
		white 80%
	);
	z-index: 1;
}

.emirate-content {
	position: relative;
	z-index: 2;
}

.emirate-title {
	color: var(--brand-primary);
	margin-bottom: 25px;
	font-size: 28px;
}

.emirate-description {
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 16px;
}

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

.emirate-features h4 {
	color: var(--brand-secondary);
	margin-bottom: 15px;
}

.emirate-features ul {
	line-height: 1.6;
	padding-left: 20px;
}

.emirate-features ul li {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	padding: 5px 10px;
	margin-bottom: 8px;
	backdrop-filter: blur(1px);
	display: block;
}

.emirate-highlight {
	background: var(--accent-light);
	padding: 20px;
	border-radius: 15px;
	border-left: 4px solid var(--brand-sun);
}

.emirate-highlight p {
	margin: 0;
	line-height: 1.6;
}

.vacation-scenarios {
	padding: 80px 0;
}

.scenarios-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.scenario-card {
	padding: 35px;
	border-radius: 20px;
}

.scenario-card.family {
	background: linear-gradient(135deg, #e7f0ee, white);
	border-left: 5px solid var(--brand-sun);
}

.scenario-card.romance {
	background: linear-gradient(135deg, #fef7f0, white);
	border-left: 5px solid var(--brand-secondary);
}

.scenario-card.friends {
	background: linear-gradient(135deg, #f0f8f5, white);
	border-left: 5px solid var(--brand-primary);
}

.scenario-card.adventure {
	background: linear-gradient(135deg, #e3f2fd, white);
	border-left: 5px solid #2196f3;
}

.scenario-card.relaxation {
	background: linear-gradient(135deg, #f3e5f5, white);
	border-left: 5px solid #9c27b0;
}

.scenario-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.scenario-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.scenario-icon.family {
	background: var(--brand-sun);
}

.scenario-icon.romance {
	background: var(--brand-secondary);
}

.scenario-icon.friends {
	background: var(--brand-primary);
}

.scenario-icon.adventure {
	background: #2196f3;
}

.scenario-icon.relaxation {
	background: #9c27b0;
}

.scenario-icon i {
	font-size: 20px;
}

.scenario-icon.family i {
	color: var(--brand-primary);
}

.scenario-icon.romance i,
.scenario-icon.friends i,
.scenario-icon.adventure i,
.scenario-icon.relaxation i {
	color: white;
}

.scenario-card h3 {
	color: var(--brand-primary);
	margin: 0;
}

.scenario-card > p {
	margin-bottom: 15px;
	line-height: 1.6;
}

.scenario-recommendation {
	margin-bottom: 10px;
	color: var(--brand-secondary);
	font-weight: 500;
}

.scenario-features {
	margin-top: 15px;
}

.scenario-features ul {
	margin: 0;
	padding-left: 20px;
	line-height: 1.6;
	color: var(--text-color);
	font-size: 15px;
	list-style: none;
}

.scenario-features li {
	padding-left: 20px;
	position: relative;
	margin-bottom: 8px;
}

.scenario-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

.scenario-card ul {
	margin: 0;
	padding-left: 20px;
	line-height: 1.6;
	color: var(--text-color);
	font-size: 15px;
}

.seasons-climate {
	padding: 60px 0;
	background: linear-gradient(135deg, var(--accent-light), var(--secondary-color));
}

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

.season-card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow);
}

.season-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.season-icon.optimal {
	background: linear-gradient(135deg, var(--brand-sun), #ffb69e);
}

.season-icon.summer {
	background: linear-gradient(135deg, #ffd700, #ffb347);
}

.season-icon i {
	font-size: 24px;
}

.season-icon.optimal i {
	color: var(--brand-primary);
}

.season-icon.summer i {
	color: #d2691e;
}

.season-card h3 {
	color: var(--brand-primary);
	margin-bottom: 15px;
}

.season-period {
	font-size: 18px;
	font-weight: 600;
	color: var(--brand-secondary);
	margin-bottom: 10px;
}

.season-card p {
	line-height: 1.6;
	color: var(--text-color);
}

.climate-note {
	margin-top: 40px;
	background: white;
	padding: 25px;
	border-radius: 15px;
	border-left: 4px solid var(--accent-color);
	box-shadow: var(--shadow);
}

.climate-note p {
	margin: 0;
	line-height: 1.6;
	color: var(--text-color);
}

.climate-note strong {
	color: var(--primary-color);
}

.hero-accent {
	margin: 20px 0;
	padding: 15px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	backdrop-filter: blur(10px);
}

.hero-accent strong {
	color: var(--brand-sun);
}

/* Responsive styles for Maldives page */
@media (max-width: 992px) {
	.atoll-image,
	.atoll-gradient {
		width: 100%;
		height: 300px;
		position: static;
	}

	.atoll-content {
		width: 100%;
		padding-right: 0;
		margin-top: 20px;
	}

	.atoll-card {
		padding: 0;
		min-height: auto;
	}
}

@media (max-width: 768px) {
	.atoll-features {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.atoll-title {
		font-size: 20px;
	}

	.atoll-description {
		font-size: 15px;
	}

	.accommodation-grid {
		grid-template-columns: 1fr;
	}
}
