/* ==== GENERAL STYLES ==== */
:root {
    --main-accent-color: #0077ff;
    --company-blue: #0077ff;
    --dark-blue: #0057c2;
    --text-dark: #222;
    --text-light: #fff;
    --bg-dark: #0b0d17;
    --radius: 18px;
    --shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.hero {
    width: 100%;
    position: relative;
    height: calc(100dvh - var(--header-height));
    overflow: hidden;
}

.hero video,
.hero img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.hero-text-overlay {
    text-transform: uppercase;
    font-family: var(--accent-font-regular);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 5vw, 4rem);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .25));
}

.hero-title {
	font-size: clamp(2rem, 3.4vw, 7rem);
	font-weight: 400;
	line-height: 1.05;
	color: #fff;
	max-width: 23ch;
}

.hero-subtitle {
	margin-top: 0;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	font-weight: 500;
	color: rgba(255, 255, 255, .9);
	max-width: 50ch;
	letter-spacing: .1em;
}

.hero-title,
.hero-subtitle {
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-action-buttons {
    position: absolute;
	bottom: 100px;
	right: 50%;
	display: flex;
	gap: 1rem;
	z-index: 1;
	transform: translateX(50%);
}

.hero-action-buttons a,
.hero-action-buttons button {
    white-space: nowrap;
	text-decoration: none;
	color: white;
	padding: 14px 20px;
	background-color: transparent;
	font-family: var(--accent-font-regular);
	border: 1px solid #979797;
	font-size: 1.1rem;
	transition: background-color .2s, border-color .2s;
	letter-spacing: .1em;
	cursor: pointer;
	font-weight: 400;
	border-radius: 14px;
    backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
}

.hero-action-buttons a:hover,
.hero-action-buttons button:hover {
    background-color: var(--main-accent-color) !important;
    border-color: var(--main-accent-color);
    color: white !important;
}
@media (max-width:768px) {
    .hero-action-buttons {
	    flex-direction: column;
    }
    .hero-action-buttons a, .hero-action-buttons button {
	    text-align: center;
        padding: 10px 16px;
        font-size: 1.2rem;
    }
}

/* ==== BUTTONS ==== */
.btn {
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    border: 2px solid var(--company-blue);
	background: var(--company-blue);
	color: #fff;
	box-shadow: var(--shadow);
	border-radius: 30px;
	padding: 10px 20px;
}

.btn-primary:hover {
    background: var(--dark-blue);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ==== FEATURE CARDS ==== */
.features {
    padding: 4rem 2rem;
}

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

.feature-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow 0.4s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--company-blue), #00306f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.icon-wrap img {
    width: 54px;
    height: 54px;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}

@media (max-width: 1200px) {
    .features {
        padding: 3rem 2rem;
    }
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 2.2rem 2rem;
    }
    .feature-card {
        padding: 1rem;
    }
}

/* ==== FEATURED TOURS ==== */

.horizontal-scroll-container {
    width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
}

.section-title {
    margin-bottom: 0;
	font-size: 36px;
	font-family: system-ui;
	font-weight: 500;
	width: 100%;
	margin-top: 0;
}

.featured-tours-section .section-title {
    width: calc(100% - 40px);
}
.featured-tours-section {
	width: 100%;
	max-width: 1440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 40px 0;
}

.tours-grid {
	display: flex;
	flex-direction: row;
	gap: 25px;
	width: calc(100% - 40px);
	margin: 0 20px;
}
.transfer-card {
	min-width: 330px;
}


/* ==== TESTIMONIALS SECTION ==== */
.testimonials {
	background: #292929;
	text-align: center;
	margin: 20px;
	width: 100%;
	margin-top: 40px;
}

/* Section title */
.testimonials .section-title {
    font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

/* Carousel container */
.testimonial-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cards container */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
	width: calc(100% - 30px);
    max-width: 800px;
    transition: all 0.4s ease-in-out;
    height: 200px;
    margin-bottom: 20px;
}

/* Single testimonial card */
.testimonial-card {
    background: var(--bg-dark);
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-between;
	text-align: center;
}

/* Hover effect */
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Testimonial text */
.testimonial-card p {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Author name */
.testimonial-card span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--company-blue);
    margin-bottom: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
        height: 400px;
    }
}

/* === CONTACT US BANNER === */
.contact-banner {
    background: linear-gradient(135deg, var(--company-blue), #00306f);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    max-width: 1000px;
    margin: 20px;
	margin-top: 0;
    margin-bottom: 40px;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Subtle hover effect */
.contact-banner:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Inner content */
.contact-content {
    max-width: 650px;
    margin: 0 auto;
    color: #fff;
}

/* Title */
.contact-content h2 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* Description */
.contact-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Contact button */
.contact-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #fff;
    color: var(--company-blue);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect for button */
.contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}


@media (max-width: 768px) {
    .btn {
		padding: 10px;
		border-radius: 10px;
    }
    .section-title {
        font-size: 26px;
        margin-top: 20px;
    }
    .transfer-card img {
        height: 225px;
    }
    .tours-grid {
        gap: 15px;
    }

    .testimonials .section-title {
	    font-size: 1.4rem;
    }

    .contact-content h2 {
        font-size: 1.4rem;
        margin-top: 0;
    }
    .contact-content p {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .contact-banner {
        padding: 15px;
        border-radius: 16px;
    }
    .contact-btn {
        padding: 10px;
        font-size: 1rem;
    }
}