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

:root {
--primary: #1A5F5A;
--secondary: #D4A574;
--accent: #C85C3C;
--dark: #1C2826;
}

body {
font-family: 'Outfit', sans-serif;
color: var(--dark);
line-height: 1.6;
background: #FAFAFA;
}

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

.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s ease;
}

.header.hidden {
transform: translateY(-100%);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--primary);
}

.nav {
display: flex;
gap: 25px;
}

.nav a {
color: var(--dark);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

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

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 22px;
height: 2px;
background: var(--dark);
transition: 0.3s;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: white;
padding: 15px;
z-index: 2000;
transform: translateY(100%);
transition: transform 0.3s;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.privacy-content p {
margin: 0;
font-size: 13px;
}

.privacy-content a {
color: var(--secondary);
}

#acceptPrivacy {
background: var(--accent);
color: white;
border: none;
padding: 8px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 600;
}

.hero-mega {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
0% { transform: translate(0, 0); }
100% { transform: translate(100px, 100px); }
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
}

.hero-mega-content {
position: relative;
z-index: 2;
text-align: center;
color: white;
max-width: 900px;
padding: 40px 20px;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-mega-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 56px;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-mega-content > p {
font-size: 18px;
margin-bottom: 40px;
opacity: 0.95;
line-height: 1.7;
}

.hero-stats {
display: flex;
justify-content: center;
gap: 50px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-item strong {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
display: block;
margin-bottom: 5px;
}

.stat-item span {
font-size: 13px;
opacity: 0.9;
}

.btn-hero {
display: inline-block;
background: var(--accent);
color: white;
padding: 16px 40px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s;
box-shadow: 0 10px 30px rgba(200, 92, 60, 0.3);
}

.btn-hero:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(200, 92, 60, 0.4);
}

.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
color: white;
opacity: 0.7;
}

.hero-scroll span {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
}

.scroll-indicator {
width: 2px;
height: 40px;
background: linear-gradient(to bottom, white, transparent);
animation: scrollAnim 2s infinite;
}

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

.btn-primary {
display: inline-block;
background: var(--accent);
color: white;
padding: 12px 30px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(200, 92, 60, 0.3);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--primary);
padding: 10px 25px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--primary);
transition: all 0.3s;
}

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

.intro-section {
padding: 80px 0;
background: white;
}

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

.intro-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 25px;
color: var(--dark);
}

.intro-text p {
font-size: 15px;
line-height: 1.8;
margin-bottom: 20px;
color: #4A5568;
}

.intro-image {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-image img {
width: 100%;
height: auto;
display: block;
}

.destinations-featured {
padding: 80px 0;
background: #F7F7F7;
}

.destinations-featured h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

.destinations-showcase {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.dest-card {
position: relative;
border-radius: 12px;
overflow: hidden;
height: 400px;
}

.dest-image {
width: 100%;
height: 100%;
position: relative;
}

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

.dest-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 30px;
color: white;
}

.dest-overlay h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
margin-bottom: 10px;
}

.dest-overlay p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s;
}

.dest-link {
color: var(--secondary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s;
}

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

.dest-card:hover .dest-overlay p,
.dest-card:hover .dest-link {
opacity: 1;
transform: translateY(0);
}

.why-us {
padding: 80px 0;
background: white;
}

.why-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

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

.why-item {
display: flex;
gap: 20px;
}

.why-item i {
font-size: 40px;
color: var(--accent);
flex-shrink: 0;
}

.why-item h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--dark);
}

.why-item p {
font-size: 14px;
line-height: 1.7;
color: #4A5568;
}

.experiences {
padding: 80px 0;
background: var(--primary);
color: white;
}

.experiences h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
}

.exp-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.exp-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s;
}

.exp-card:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-5px);
}

.exp-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 48px;
font-weight: 700;
opacity: 0.3;
margin-bottom: 15px;
}

.exp-card h3 {
font-size: 20px;
margin-bottom: 12px;
}

.exp-card p {
font-size: 14px;
line-height: 1.7;
opacity: 0.9;
}

.testimonials-real {
padding: 80px 0;
background: #F7F7F7;
}

.testimonials-real h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
text-align: center;
margin-bottom: 50px;
color: var(--dark);
}

.testimonials-slider {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial-real {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-real p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 20px;
color: #4A5568;
font-style: italic;
}

.testimonial-author strong {
display: block;
font-size: 15px;
color: var(--dark);
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 13px;
color: #718096;
}

.planning-help {
padding: 80px 0;
background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
color: white;
text-align: center;
}

.planning-content h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 20px;
}

.planning-content > p {
font-size: 16px;
max-width: 800px;
margin: 0 auto 40px;
line-height: 1.8;
opacity: 0.95;
}

.planning-features {
display: flex;
justify-content: center;
gap: 40px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.planning-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
}

.planning-item i {
font-size: 24px;
}

.page-header {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: white;
padding: 50px 0;
text-align: center;
}

.page-header h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
margin-bottom: 12px;
}

.page-header p {
font-size: 16px;
opacity: 0.95;
}

.seasons {
padding: 60px 0;
background: white;
}

.seasons-grid {
display: grid;
gap: 30px;
}

.season-card {
background: #F7F7F7;
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--accent);
}

.season-icon {
margin-bottom: 15px;
}

.season-icon i {
font-size: 40px;
color: var(--secondary);
}

.season-card h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
}

.season-card p {
font-size: 14px;
margin-bottom: 20px;
line-height: 1.7;
}

.season-highlights {
list-style: none;
}

.season-highlights li {
font-size: 14px;
padding: 8px 0;
display: flex;
align-items: center;
gap: 10px;
}

.season-highlights i {
color: var(--primary);
font-size: 12px;
}

.monthly-guide {
padding: 60px 0;
background: #F7F7F7;
}

.monthly-guide h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
text-align: center;
margin-bottom: 40px;
color: var(--dark);
}

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

.month-item {
background: white;
padding: 25px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.month-item h4 {
font-size: 16px;
margin-bottom: 10px;
color: var(--primary);
display: flex;
align-items: center;
gap: 8px;
}

.month-item p {
font-size: 13px;
line-height: 1.6;
}

.seasonal-activities {
padding: 60px 0;
background: white;
}

.seasonal-activities h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
text-align: center;
margin-bottom: 40px;
color: var(--dark);
}

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

.activity-card {
background: #F7F7F7;
padding: 25px;
border-radius: 10px;
text-align: center;
transition: transform 0.3s;
}

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

.activity-card i {
font-size: 35px;
color: var(--accent);
margin-bottom: 12px;
}

.activity-card h4 {
font-size: 16px;
margin-bottom: 8px;
color: var(--dark);
}

.activity-card p {
font-size: 13px;
margin-bottom: 10px;
}

.activity-tag {
display: inline-block;
background: var(--primary);
color: white;
padding: 4px 12px;
border-radius: 15px;
font-size: 11px;
font-weight: 600;
}

.news {
padding: 60px 0;
background: white;
}

.news h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
text-align: center;
margin-bottom: 40px;
color: var(--dark);
}

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

.news-card {
background: #F7F7F7;
padding: 25px;
border-radius: 10px;
transition: transform 0.3s;
}

.news-card:hover {
transform: translateY(-3px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-date {
display: flex;
align-items: center;
gap: 8px;
color: var(--accent);
font-size: 13px;
margin-bottom: 12px;
font-weight: 600;
}

.news-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
}

.news-card p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 15px;
}

.news-link {
color: var(--primary);
text-decoration: none;
font-size: 14px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
}

.news-link:hover {
color: var(--accent);
}

.products {
padding: 60px 0;
background: #F7F7F7;
}

.products h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
text-align: center;
margin-bottom: 40px;
color: var(--dark);
}

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

.product-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
text-align: center;
position: relative;
transition: transform 0.3s;
}

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

.product-card.featured {
border: 2px solid var(--accent);
}

.product-badge {
position: absolute;
top: -12px;
right: 20px;
background: var(--accent);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.product-icon {
margin-bottom: 15px;
}

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

.product-card h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
}

.product-description p {
font-size: 14px;
margin-bottom: 15px;
}

.product-description ul {
list-style: none;
text-align: left;
margin-bottom: 20px;
}

.product-description li {
font-size: 13px;
padding: 6px 0;
display: flex;
align-items: flex-start;
gap: 8px;
}

.product-description i {
color: var(--primary);
font-size: 12px;
margin-top: 3px;
}

.product-price {
margin: 25px 0;
}

.price {
font-family: 'Space Grotesk', sans-serif;
font-size: 36px;
font-weight: 700;
color: var(--accent);
}

.contact-section {
padding: 60px 0;
background: white;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.contact-info h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 15px;
color: var(--dark);
}

.contact-info > p {
font-size: 14px;
margin-bottom: 30px;
line-height: 1.7;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-item {
display: flex;
gap: 15px;
}

.contact-icon {
width: 45px;
height: 45px;
background: #F7F7F7;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
color: var(--accent);
font-size: 18px;
}

.contact-text h4 {
font-size: 15px;
margin-bottom: 5px;
color: var(--dark);
}

.contact-text p {
font-size: 14px;
color: #4A5568;
line-height: 1.6;
}

.contact-form-wrapper h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 28px;
margin-bottom: 25px;
color: var(--dark);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 1px solid #E2E8F0;
border-radius: 6px;
font-size: 14px;
font-family: 'Outfit', sans-serif;
transition: border-color 0.3s;
}

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

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
gap: 10px;
font-size: 13px;
font-weight: 400;
cursor: pointer;
}

.checkbox-label input {
margin-top: 2px;
cursor: pointer;
}

.checkbox-label a {
color: var(--primary);
}

.map-section {
padding: 60px 0;
background: #F7F7F7;
}

.map-section h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
text-align: center;
margin-bottom: 30px;
color: var(--dark);
}

.map-wrapper {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-cta {
padding: 60px 0;
background: white;
}

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

.cta-item {
text-align: center;
padding: 25px;
}

.cta-item i {
font-size: 40px;
color: var(--accent);
margin-bottom: 15px;
}

.cta-item h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--dark);
}

.cta-item p {
font-size: 14px;
line-height: 1.6;
}

.thankyou-main,
.error-main {
min-height: calc(100vh - 130px);
display: flex;
align-items: center;
justify-content: center;
}

.thankyou-section,
.error-section {
padding: 60px 0;
}

.thankyou-content,
.error-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.thankyou-icon {
margin-bottom: 25px;
}

.thankyou-icon i {
font-size: 70px;
color: #27AE60;
}

.thankyou-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
}

.thankyou-content p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 25px;
}

.thankyou-info {
background: #F7F7F7;
padding: 15px;
border-radius: 8px;
margin-bottom: 30px;
}

.thankyou-info p {
margin: 0;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-family: 'Space Grotesk', sans-serif;
font-size: 100px;
font-weight: 700;
color: var(--accent);
margin-bottom: 20px;
}

.error-content h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
}

.error-content > p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 30px;
}

.error-suggestions {
background: #F7F7F7;
padding: 25px;
border-radius: 8px;
margin-bottom: 30px;
text-align: left;
}

.error-suggestions h3 {
font-size: 18px;
margin-bottom: 15px;
color: var(--dark);
}

.error-suggestions ul {
list-style: none;
}

.error-suggestions li {
font-size: 14px;
padding: 8px 0;
display: flex;
align-items: center;
gap: 10px;
}

.error-suggestions i {
color: var(--primary);
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.policy-header {
background: var(--primary);
color: white;
padding: 40px 0;
text-align: center;
}

.policy-header h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 32px;
margin-bottom: 10px;
}

.policy-header p {
font-size: 14px;
opacity: 0.9;
}

.policy-content {
padding: 60px 0;
background: white;
}

.policy-text {
max-width: 900px;
margin: 0 auto;
}

.policy-text h2 {
font-family: 'Space Grotesk', sans-serif;
font-size: 24px;
margin-top: 35px;
margin-bottom: 15px;
color: var(--dark);
}

.policy-text h3 {
font-size: 18px;
margin-top: 25px;
margin-bottom: 12px;
color: var(--primary);
}

.policy-text h4 {
font-size: 16px;
margin-top: 20px;
margin-bottom: 10px;
color: var(--dark);
}

.policy-text p {
font-size: 14px;
line-height: 1.8;
margin-bottom: 15px;
}

.policy-text ul,
.policy-text ol {
margin-bottom: 20px;
padding-left: 25px;
}

.policy-text li {
font-size: 14px;
line-height: 1.8;
margin-bottom: 8px;
}

.footer {
background: var(--dark);
color: white;
padding: 25px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-info p {
font-size: 13px;
margin: 0;
}

.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: white;
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--secondary);
}

@media (max-width: 1024px) {
.destinations-showcase {
grid-template-columns: repeat(2, 1fr);
}

.exp-grid {
grid-template-columns: repeat(2, 1fr);
}

.testimonials-slider {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.nav {
position: fixed;
top: 60px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transform: translateX(-100%);
transition: transform 0.3s;
}

.nav.active {
transform: translateX(0);
}

.menu-toggle {
display: flex;
}

.hero-mega-content h1 {
font-size: 36px;
}

.hero-stats {
gap: 30px;
}

.stat-item strong {
font-size: 28px;
}

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

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

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

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

.testimonials-slider {
grid-template-columns: 1fr;
}

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

.footer-content {
flex-direction: column;
text-align: center;
}

.error-number {
font-size: 70px;
}
}

@media (max-width: 480px) {
.logo {
font-size: 18px;
}

.hero-mega {
min-height: 90vh;
}

.hero-mega-content h1 {
font-size: 28px;
}

.hero-mega-content > p {
font-size: 16px;
}

.hero-stats {
gap: 20px;
}

.stat-item strong {
font-size: 24px;
}

.stat-item span {
font-size: 12px;
}

.intro-text h2,
.why-content h2,
.experiences h2,
.testimonials-real h2,
.planning-content h2 {
font-size: 28px;
}

.page-header h1 {
font-size: 28px;
}

.btn-primary,
.btn-secondary,
.btn-hero {
padding: 10px 20px;
font-size: 14px;
}

.thankyou-content h1,
.error-content h1 {
font-size: 24px;
}

.thankyou-icon i {
font-size: 50px;
}

.error-number {
font-size: 60px;
}

.dest-card {
height: 350px;
}

.exp-card,
.testimonial-real,
.product-card {
padding: 20px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 15px;
}

.logo {
font-size: 16px;
}

.hero-mega-content h1 {
font-size: 24px;
}

.hero-mega-content > p {
font-size: 15px;
}

.stat-item strong {
font-size: 20px;
}

.intro-text h2 {
font-size: 24px;
}

.dest-card {
height: 300px;
}

.why-item {
flex-direction: column;
}

.exp-number {
font-size: 36px;
}
}
