/* === GLOBAL === */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: 'Cairo', 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #333;
	line-height: 1.8;
	background: #ffffff;
	direction: rtl;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', 'Cairo', Georgia, serif;
	color: #1a1a1a;
	font-weight: 700;
	letter-spacing: 0.02em;
}

h1 { font-size: 44px; line-height: 1.2; }
h2 { font-size: 34px; line-height: 1.25; }
h3 { font-size: 24px; line-height: 1.3; }
h4 { font-size: 20px; line-height: 1.4; }

a {
	color: #c9a961;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a:hover { color: #b8985a; }

.container {
	width: 90%;
	max-width: 1140px;
	margin: 0 auto;
}

img { max-width: 100%; height: auto; display: block; }

/* === HEADER === */
#main-header {
	background: #1a1a1a;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

#main-header .header-inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 14px 0;
}

/* === LOGO === */
.site-logo {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.site-logo svg {
	width: 48px;
	height: 48px;
	fill: #c9a961;
	-webkit-transition: fill 0.3s ease;
	transition: fill 0.3s ease;
}

.site-logo:hover svg { fill: #ffffff; }

.logo-text {
	font-family: 'Cairo', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	letter-spacing: 1px;
}

.logo-text span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	color: #c9a961;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* === NAV === */
#main-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
}

#main-nav a {
	color: #ffffff;
	font-family: 'Cairo', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 8px 14px;
	display: block;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

#main-nav a:hover,
#main-nav a.active {
	color: #c9a961;
}

.nav-cta {
	background: #c9a961;
	color: #1a1a1a !important;
	padding: 9px 20px !important;
	font-weight: 700 !important;
	margin-right: 6px;
}

.nav-cta:hover {
	background: #b8985a;
	color: #1a1a1a !important;
}

/* hamburger */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: #ffffff;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* === HERO / WORDMARK BAND === */
.hero-wordmark {
	background: url('../img/hero-bg.webp') center center / cover no-repeat;
	position: relative;
	padding: 110px 0 90px 0;
	color: #ffffff;
}

.hero-wordmark:before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.62);
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	gap: 60px;
}

.hero-text {
	-ms-flex: 1;
	flex: 1;
}

.hero-text .wordmark {
	font-family: 'Cairo', sans-serif;
	font-size: 58px;
	line-height: 1.1;
	color: #ffffff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.hero-text .tagline {
	font-size: 16px;
	color: #cccccc;
	margin-top: 14px;
	letter-spacing: 0.5px;
}

.hero-text .hero-desc {
	font-size: 15px;
	color: #eeeeee;
	margin-top: 18px;
	max-width: 540px;
	line-height: 1.9;
}

.hero-text .btn {
	margin-top: 30px;
}

/* hero floating form */
.hero-form-wrap {
	width: 320px;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	background: rgba(26,26,26,0.92);
	padding: 28px 24px 22px 24px;
}

.hero-form-wrap h3 {
	color: #c9a961;
	font-size: 16px;
	margin: 0 0 16px 0;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-form-wrap input,
.hero-form-wrap select,
.hero-form-wrap textarea {
	width: 100%;
	background: #f1f1f1;
	border: 1px solid #e5e5e5;
	padding: 10px 12px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #333;
	font-family: 'Cairo', sans-serif;
	direction: rtl;
}

.hero-form-wrap .submit-btn {
	background: #c9a961;
	color: #1a1a1a;
	padding: 11px 28px;
	border: none;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	cursor: pointer;
	width: 100%;
	font-family: 'Cairo', sans-serif;
	font-size: 13px;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.hero-form-wrap .submit-btn:hover {
	background: #b8985a;
}

/* === BUTTONS === */
.btn {
	display: inline-block;
	background: #c9a961;
	color: #1a1a1a;
	padding: 13px 32px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	font-weight: 700;
	font-family: 'Cairo', sans-serif;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.btn:hover { background: #1a1a1a; color: #c9a961; }

.btn-outline {
	background: transparent;
	border: 2px solid #c9a961;
	color: #c9a961;
}

.btn-outline:hover {
	background: #c9a961;
	color: #1a1a1a;
}

/* === INTRO BLOCK === */
.intro-block {
	max-width: 860px;
	margin: 70px auto 50px auto;
	text-align: center;
	padding: 0 20px;
}

.intro-block .section-label {
	font-size: 11px;
	color: #999;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.intro-block h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #1a1a1a;
}

.intro-block p {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
}

/* === TOURS TILE GRID === */
.tours-grid-section {
	padding: 20px 0 70px 0;
	background: #fafafa;
}

.tours-grid-section .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.tours-grid-section .section-title h2 {
	font-size: 34px;
	color: #1a1a1a;
}

.tours-grid-section .section-title p {
	color: #666;
	margin-top: 10px;
	font-size: 14px;
}

.tours-grid {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.tour-tile {
	-ms-flex: 0 0 33.333%;
	flex: 0 0 33.333%;
	padding: 10px;
}

.tour-tile .tile-inner {
	position: relative;
	overflow: hidden;
	height: 240px;
}

.tour-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}

.tour-tile:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.tour-tile .tile-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26,26,26,0.78);
	padding: 16px 20px;
	color: #ffffff;
	text-align: center;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.tour-tile:hover .tile-overlay {
	background: rgba(201,169,97,0.9);
}

.tour-tile .tile-overlay h3 {
	color: #ffffff;
	font-size: 17px;
	margin: 0 0 4px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tour-tile .tile-overlay .price {
	font-size: 13px;
	color: #c9a961;
	font-weight: 600;
}

.tour-tile:hover .tile-overlay .price {
	color: #1a1a1a;
}

/* === LONG-FORM 2-COL === */
.about-section {
	padding: 70px 0 60px 0;
}

.about-section .two-col {
	display: -ms-flexbox;
	display: flex;
	gap: 60px;
	-ms-flex-align: start;
	align-items: flex-start;
}

.about-section .col-right {
	-ms-flex: 0 0 45%;
	flex: 0 0 45%;
}

.about-section .col-left {
	-ms-flex: 1;
	flex: 1;
}

.about-section h2 {
	font-size: 34px;
	margin-bottom: 16px;
}

.about-section p {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 16px;
}

.about-section ul {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}

.about-section ul li {
	padding: 7px 0 7px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
	color: #444;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.about-section ul li i {
	color: #c9a961;
	width: 18px;
}

/* === TESTIMONIAL BAND (dark photo bg) === */
.testimonial-band {
	background: url('../img/testimonial-bg.webp') center center / cover no-repeat;
	padding: 110px 0 100px 0;
	color: #ffffff;
	text-align: center;
	position: relative;
}

.testimonial-band:before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.6);
}

.testimonial-band .testimonial-inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
}

.testimonial-band .stars {
	color: #c9a961;
	font-size: 20px;
	margin-bottom: 22px;
}

.testimonial-band p.quote {
	font-size: 18px;
	font-style: italic;
	line-height: 1.9;
	color: #ffffff;
}

.testimonial-band .author {
	display: block;
	margin-top: 22px;
	font-family: 'Cairo', sans-serif;
	letter-spacing: 1px;
	font-size: 13px;
	color: #c9a961;
}

/* === PRICES / PACKAGES SECTION === */
.packages-section {
	padding: 70px 0;
	background: #ffffff;
}

.packages-section .section-title {
	text-align: center;
	margin-bottom: 50px;
}

.packages-section .section-title h2 { font-size: 34px; }
.packages-section .section-title p { color: #666; margin-top: 10px; }

.packages-grid {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
}

.package-card {
	-ms-flex: 0 0 calc(33.333% - 16px);
	flex: 0 0 calc(33.333% - 16px);
	border: 1px solid #e5e5e5;
	padding: 30px 24px;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
}

.package-card:hover {
	border-color: #c9a961;
	box-shadow: 0 6px 28px rgba(201,169,97,0.15);
}

.package-card.featured {
	border-color: #c9a961;
	border-width: 2px;
}

.package-card .badge {
	position: absolute;
	top: -12px;
	right: 50%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	background: #c9a961;
	color: #1a1a1a;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 14px;
	letter-spacing: 1px;
}

.package-card .pkg-icon {
	font-size: 36px;
	color: #c9a961;
	margin-bottom: 14px;
}

.package-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.package-card .duration {
	font-size: 12px;
	color: #999;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.package-card .price {
	font-size: 34px;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1;
}

.package-card .price span {
	font-size: 14px;
	font-weight: 400;
	color: #999;
}

.package-card .pkg-features {
	list-style: none;
	padding: 0;
	margin: 20px 0 24px 0;
	text-align: right;
}

.package-card .pkg-features li {
	font-size: 13px;
	color: #555;
	padding: 6px 0;
	border-bottom: 1px solid #f5f5f5;
}

.package-card .pkg-features li i {
	color: #c9a961;
	margin-left: 8px;
}

/* === DARK FEATURE BAND === */
.feature-dark-band {
	background: #1c1c1c;
	padding: 80px 0;
	color: #ffffff;
	text-align: center;
}

.feature-dark-band h2 {
	color: #ffffff;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.feature-dark-band .sub {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 18px;
	color: #c9a961;
	margin-top: 18px;
}

.stats-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 60px;
	margin-top: 50px;
}

.stat-item .num {
	font-size: 48px;
	font-weight: 800;
	color: #c9a961;
	line-height: 1;
}

.stat-item .label {
	font-size: 13px;
	color: #aaa;
	margin-top: 6px;
	letter-spacing: 1px;
}

/* === TESTIMONIAL CAROUSEL === */
.testimonial-slider {
	padding: 80px 0 100px 0;
	text-align: center;
	background: #f9f9f9;
}

.testimonial-slider .title-eyebrow {
	font-size: 11px;
	color: #999;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.testimonial-slider h2 {
	font-size: 34px;
	margin: 10px 0 40px 0;
}

.testimonial-slider .slide {
	display: none;
}

.testimonial-slider .slide.active {
	display: block;
}

.testimonial-slider .slide p {
	max-width: 780px;
	margin: 0 auto 18px auto;
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	font-style: italic;
}

.testimonial-slider .slide .reviewer {
	font-size: 13px;
	color: #c9a961;
	font-weight: 700;
}

.slider-controls {
	margin-top: 30px;
}

.slider-arrow {
	display: inline-block;
	width: 34px;
	height: 34px;
	border: 1px solid #cccccc;
	line-height: 32px;
	color: #999;
	cursor: pointer;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: none;
	margin: 0 4px;
}

.slider-arrow:hover {
	border-color: #c9a961;
	color: #c9a961;
}

/* === CTA BAND === */
.cta-band {
	background: #1a1a1a;
	padding: 70px 0;
	text-align: center;
	color: #ffffff;
}

.cta-band h2 {
	color: #ffffff;
	font-size: 30px;
	line-height: 1.3;
	max-width: 720px;
	margin: 0 auto 26px auto;
}

.cta-band p {
	color: #aaa;
	max-width: 560px;
	margin: 0 auto 28px auto;
	font-size: 15px;
}

/* === DESTINATIONS CARD STRIP === */
.destinations-section {
	padding: 70px 0;
}

.destinations-section .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.dest-cards {
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.dest-card {
	-ms-flex: 1;
	flex: 1;
	position: relative;
	overflow: hidden;
}

.dest-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}

.dest-card:hover img {
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}

.dest-card .dest-info {
	padding: 16px 0 4px 0;
}

.dest-card .dest-info h3 {
	font-size: 17px;
	margin-bottom: 6px;
}

.dest-card .dest-info p {
	font-size: 13px;
	color: #666;
}

.dest-card .dest-info a {
	font-size: 13px;
	font-weight: 600;
}

/* === FINAL SPLIT CTA FORM === */
.final-cta {
	display: -ms-flexbox;
	display: flex;
}

.final-cta .cta-left {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	background: #1a1a1a;
	padding: 70px 50px 70px 50px;
}

.final-cta .cta-right {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	background: url('../img/cta-bg.webp') center center / cover no-repeat;
	min-height: 500px;
	position: relative;
}

.final-cta .cta-right:before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.3);
}

.final-cta h2 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 8px;
}

.final-cta .form-sub {
	color: #aaa;
	font-size: 14px;
	margin-bottom: 24px;
}

.final-cta input,
.final-cta select,
.final-cta textarea {
	width: 100%;
	padding: 12px 14px;
	background: #2a2a2a;
	border: 1px solid #3a3a3a;
	color: #ffffff;
	margin-bottom: 12px;
	font-size: 13px;
	font-family: 'Cairo', sans-serif;
	direction: rtl;
}

.final-cta input::placeholder,
.final-cta textarea::placeholder {
	color: #888;
}

.final-cta .form-row {
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
}

.final-cta .form-row input {
	-ms-flex: 1;
	flex: 1;
}

/* === FOOTER === */
#main-footer {
	background: #111111;
	color: #999999;
	padding: 50px 0 20px 0;
	font-size: 13px;
}

.footer-grid {
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer-col {
	-ms-flex: 1;
	flex: 1;
	min-width: 180px;
}

.footer-col h4 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.footer-col p {
	line-height: 1.8;
	font-size: 13px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 9px;
}

.footer-col ul li a {
	color: #999999;
	font-size: 13px;
}

.footer-col ul li a:hover { color: #c9a961; }

.footer-col .contact-item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 13px;
}

.footer-col .contact-item i {
	color: #c9a961;
	margin-top: 3px;
	width: 16px;
}

.footer-social {
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

.footer-social a {
	width: 34px;
	height: 34px;
	border: 1px solid #2a2a2a;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	border-color: #c9a961;
	color: #c9a961;
}

#footer-bottom {
	border-top: 1px solid #2a2a2a;
	padding-top: 18px;
	margin-top: 36px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}

#footer-bottom .footer-links {
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

#footer-bottom .footer-links a {
	color: #666;
	font-size: 12px;
}

#footer-bottom .footer-links a:hover { color: #c9a961; }

/* === COOKIE BAR === */
.cookie-notice {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	background: #1a1a1a;
	padding: 16px 24px;
	font-size: 13px;
	color: #cccccc;
	z-index: 9999;
	border-top: 3px solid #c9a961;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cookie-notice p { margin: 0; font-size: 13px; }

.cookie-notice p a { color: #c9a961; }

.cookie-btns {
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}

.cookie-notice .accept-btn {
	background: #c9a961;
	color: #1a1a1a;
	padding: 8px 22px;
	border: 0;
	cursor: pointer;
	font-weight: 700;
	font-family: 'Cairo', sans-serif;
	font-size: 13px;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.cookie-notice .accept-btn:hover { background: #b8985a; }

.cookie-notice .deny-btn {
	background: transparent;
	border: 1px solid #555;
	color: #aaa;
	padding: 8px 18px;
	cursor: pointer;
	font-family: 'Cairo', sans-serif;
	font-size: 13px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.cookie-notice .deny-btn:hover { border-color: #c9a961; color: #c9a961; }

/* === PAGE HERO (inner pages) === */
.page-hero {
	background: #1a1a1a;
	padding: 70px 0 60px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero:before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: url('../img/hero-bg.webp') center/cover no-repeat;
	opacity: 0.12;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
	color: #ffffff;
	font-size: 40px;
	margin-bottom: 12px;
}

.page-hero .breadcrumb {
	font-size: 13px;
	color: #888;
}

.page-hero .breadcrumb a { color: #c9a961; }

/* === INNER PAGE CONTENT === */
.inner-content {
	padding: 70px 0 80px 0;
}

.inner-content .content-wrap {
	max-width: 860px;
	margin: 0 auto;
}

.inner-content h2 {
	font-size: 28px;
	margin: 36px 0 14px 0;
	color: #1a1a1a;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 16px;
}

.inner-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.inner-content ul li {
	padding: 7px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
	color: #555;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.inner-content ul li i { color: #c9a961; }

/* === CONTACTS PAGE === */
.contacts-grid {
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.contacts-grid .contact-form-col {
	-ms-flex: 1;
	flex: 1;
	min-width: 300px;
}

.contacts-grid .contact-info-col {
	-ms-flex: 0 0 320px;
	flex: 0 0 320px;
}

.contact-form-col input,
.contact-form-col select,
.contact-form-col textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e5e5e5;
	background: #fafafa;
	margin-bottom: 14px;
	font-size: 14px;
	font-family: 'Cairo', sans-serif;
	color: #333;
	direction: rtl;
}

.contact-form-col textarea { height: 140px; resize: vertical; }

.contact-info-box {
	background: #1a1a1a;
	padding: 34px 28px;
	color: #cccccc;
}

.contact-info-box h3 {
	color: #c9a961;
	font-size: 18px;
	margin-bottom: 24px;
}

.contact-info-box .info-item {
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
}

.contact-info-box .info-item i {
	color: #c9a961;
	font-size: 18px;
	margin-top: 2px;
	width: 20px;
}

.contact-info-box .info-item .info-text {
	font-size: 13px;
	line-height: 1.7;
}

/* === RESERVATION PAGE === */
.reservation-section {
	padding: 70px 0 80px 0;
}

.reservation-form {
	max-width: 800px;
	margin: 0 auto;
}

.reservation-form .form-group {
	margin-bottom: 20px;
}

.reservation-form label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 6px;
	letter-spacing: 0.5px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e5e5e5;
	background: #fafafa;
	font-size: 14px;
	font-family: 'Cairo', sans-serif;
	color: #333;
	direction: rtl;
}

.reservation-form select { cursor: pointer; }
.reservation-form textarea { height: 120px; resize: vertical; }

.reservation-form .form-row {
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.reservation-form .form-row .form-group {
	-ms-flex: 1;
	flex: 1;
}

/* === REVIEWS PAGE === */
.reviews-section {
	padding: 60px 0 80px 0;
}

.reviews-grid {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
}

.review-card {
	-ms-flex: 0 0 calc(50% - 12px);
	flex: 0 0 calc(50% - 12px);
	border: 1px solid #e5e5e5;
	padding: 28px 24px;
}

.review-card .stars {
	color: #c9a961;
	margin-bottom: 12px;
}

.review-card p {
	font-size: 14px;
	line-height: 1.8;
	color: #555;
	font-style: italic;
	margin-bottom: 16px;
}

.review-card .reviewer-info {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.reviewer-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #c9a961;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #1a1a1a;
	font-weight: 700;
	font-size: 16px;
}

.reviewer-info .name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.reviewer-info .date { font-size: 12px; color: #999; }

/* form success / error messages */
.form-message {
	padding: 14px 18px;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 600;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
	.hero-inner { flex-direction: column; gap: 40px; }
	.hero-text .wordmark { font-size: 38px; }
	.hero-form-wrap { width: 100%; }
	.tour-tile { -ms-flex: 0 0 50%; flex: 0 0 50%; }
	.package-card { -ms-flex: 0 0 100%; flex: 0 0 100%; }
	.about-section .two-col { flex-direction: column; }
	.dest-cards { -ms-flex-wrap: wrap; flex-wrap: wrap; }
	.dest-card { -ms-flex: 0 0 calc(50% - 10px); flex: 0 0 calc(50% - 10px); }
	.final-cta { flex-direction: column; }
	.final-cta .cta-right { min-height: 280px; }
	.stats-row { flex-wrap: wrap; gap: 30px; }
	.review-card { -ms-flex: 0 0 100%; flex: 0 0 100%; }
	h2 { font-size: 26px; }
	h1 { font-size: 32px; }
}

@media (max-width: 640px) {
	#main-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; right: 0; left: 0; background: #1a1a1a; padding: 10px 0; }
	#main-nav.open { display: -ms-flexbox; display: flex; }
	.nav-toggle { display: block; }
	.tour-tile { -ms-flex: 0 0 100%; flex: 0 0 100%; }
	.dest-card { -ms-flex: 0 0 100%; flex: 0 0 100%; }
	.final-cta .cta-left { padding: 40px 20px; }
	.footer-grid { flex-direction: column; }
	.contacts-grid { flex-direction: column; }
	.contacts-grid .contact-info-col { -ms-flex: 0 0 auto; flex: 0 0 auto; }
	.reservation-form .form-row { flex-direction: column; }
	.package-card .price { font-size: 26px; }
}
