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

:root {
    --primary-color: #1a3d1b;
    --primary-light: #2c5f2d;
    --secondary-color: #c8a165;
    --accent-color: #d4af37;
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #f8f6f3;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26, 61, 27, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 61, 27, 0.12);
    --shadow-lg: 0 8px 24px rgba(26, 61, 27, 0.16);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --text-secondary: #555;
    --border-light: #e0e0e0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --btn-padding: 14px 36px;
    --btn-padding-sm: 10px 24px;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a1f0b 0%, var(--primary-color) 50%, #0a1f0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.loader-spinner::before,
.loader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease-in-out infinite;
}

.loader-spinner::before {
    width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);
}

.loader-spinner::after {
    width: 44px;
    height: 44px;
    top: 8px;
    left: 8px;
    border: 3px solid transparent;
    border-bottom-color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.loader-text {
    color: var(--white);
    font-size: 0.9rem;
    margin-top: 25px;
    opacity: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.loader-text::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Base */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-link, .footer-section a, .social-icon {
    transition: color 0.3s ease, opacity 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 4px 16px rgba(26, 61, 27, 0.12);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 15%,
        var(--accent-color) 50%,
        rgba(212, 175, 55, 0.3) 85%,
        transparent 100%) 1;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px) saturate(180%);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    position: relative;
}

.logo {
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 48px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 6px 20px rgba(26, 61, 27, 0.2));
}

.logo:hover .logo-img {
    transform: scale(1.02) translateY(-2px);
    filter: drop-shadow(0 10px 30px rgba(26, 61, 27, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--accent-color),
        transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

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

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.mobile-social {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 110px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-image-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600') center/cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(26, 61, 27, 0.4),
        rgba(44, 95, 45, 0.3),
        rgba(10, 31, 11, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo {
    max-width: 240px;
    margin-bottom: 40px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4))
            drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 6px 20px rgba(0,0,0,0.5),
                 0 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    font-weight: 500;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.9;
    z-index: 3;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    padding: 0;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Page Header */
.page-header {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 61, 27, 0.4), rgba(44, 95, 45, 0.3));
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 30px;
}

.header-logo {
    max-width: 160px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 18px;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: var(--btn-padding);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200,161,101,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.btn-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 12px;
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards */
.destinations-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

a.destination-card {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.destination-card,
.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    border: 1px solid rgba(26, 61, 27, 0.08);
}

.destination-card:hover,
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

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

.destination-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
}

.destination-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.destination-content,
.service-card {
    padding: 25px;
}

.destination-content h3 {
    margin-bottom: 15px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

/* Welcome Section */
.welcome-section {
    position: relative;
    overflow: hidden;
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

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

.why-choose-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.why-choose-text .content-badge {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.why-choose-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2610 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}

.footer-section {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 8px 0;
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.85);
}

.footer-section li:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.95rem;
    opacity: 1;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.85);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 998;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Payment Partners Section */
.payment-partners-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.payment-partners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.payment-partners-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.payment-info {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

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

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
}

.payment-method i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 16px 24px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--primary-color);
    color: var(--white);
    z-index: 10001;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

/* Placeholder min-heights to prevent CLS */
#nav-placeholder { min-height: 85px; }
@media (min-width: 769px) { #nav-placeholder { min-height: 110px; } }
#footer-placeholder { min-height: 400px; }

/* Utility classes */
.text-center-mt { text-align: center; margin-top: 20px; }
.payment-security-note { margin-top: 25px; font-size: 0.95rem; color: var(--text-light); }

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }

    .why-choose-content {
        gap: 40px;
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

    .why-choose-image img {
        min-height: 400px;
    }
}

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

    .nav-container {
        height: 85px;
        padding: 0 20px;
    }

    .logo-img {
        height: 32px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .social-links {
        display: none;
    }

    .nav-menu .mobile-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 20px 0;
        border-top: 1px solid rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    .nav-menu .mobile-social a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--bg-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: var(--transition-smooth);
    }

    .nav-menu .mobile-social a:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    .hero {
        margin-top: 85px;
    }

    .page-header {
        margin-top: 85px;
    }

    .hero h1,
    .page-header h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .page-header p {
        font-size: 1.1rem;
    }

    .hero-logo {
        max-width: 180px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .destinations-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-image {
        order: -1;
    }

    .why-choose-image img {
        min-height: 280px;
        max-height: 350px;
    }

    .why-choose-text {
        text-align: center;
    }

    .why-choose-text .content-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .why-item {
        text-align: left;
    }

    .why-choose-text h2 {
        font-size: 1.8rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .navbar {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
}
