/* 
==============================================
TABLE OF CONTENTS
==============================================
1. Reset & Base Styles
2. Typography
3. Layout & Containers
4. Header & Navigation
5. Buttons
6. Forms
7. Cookie Banner
8. Hero Section
9. About Section
10. Destinations Section
11. Tours Section
12. Testimonials Section
13. Newsletter Section
14. Contact Section
15. Blog Preview Section
16. Footer
17. Legal Pages
18. Thank You Page
19. Utility Classes
20. Media Queries
==============================================
*/

/* 
==============================================
1. Reset & Base Styles
==============================================
*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Primary Colors */
    --primary-dark: #1E5631;    /* Dark Green */
    --primary: #3CB371;         /* Medium Green */
    --primary-light: #7ED39E;   /* Light Green */
    
    /* Secondary Colors */
    --secondary-dark: #004D70;  /* Dark Blue */
    --secondary: #0D6EFD;       /* Medium Blue */
    --secondary-light: #80B3FF; /* Light Blue */
    
    /* Neutral Colors */
    --dark: #333333;
    --medium: #666666;
    --light: #999999;
    --extra-light: #F5F5F5;
    --white: #FFFFFF;
    
    /* Accent Colors */
    --accent-1: #FF9900;        /* Orange */
    --accent-2: #FFD700;        /* Gold */
    
    /* Alert Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: 'Georgia', 'Times New Roman', Times, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
}

/* 
==============================================
2. Typography
==============================================
*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

strong {
    font-weight: 700;
}

small {
    font-size: 0.875rem;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin-left: 0;
    margin-right: 0;
}

/* 
==============================================
3. Layout & Containers
==============================================
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0;
}

/* 
==============================================
4. Header & Navigation
==============================================
*/
header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    color: var(--dark);
    font-weight: 600;
    transition: color var(--transition-fast);
    position: relative;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width var(--transition-medium);
}

nav ul li a:hover::after, 
nav ul li a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 
==============================================
5. Buttons
==============================================
*/
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-text {
    background-color: transparent;
    color: var(--primary);
    padding: 0;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.btn-text span {
    margin-left: 0.25rem;
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-text:hover span {
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* 
==============================================
6. Forms
==============================================
*/
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid var(--light);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium);
}

.form-consent input[type="checkbox"] {
    margin-top: 0.3rem;
}

/* 
==============================================
7. Cookie Banner
==============================================
*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    padding: 1.5rem;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--extra-light);
    border-radius: var(--radius-sm);
}

.cookie-option label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--medium);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-info {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--medium);
}

/* 
==============================================
8. Hero Section
==============================================
*/
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--primary-light);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 
==============================================
9. About Section
==============================================
*/
.about {
    background-color: var(--extra-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(60, 179, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
}

.feature-text h4 {
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--medium);
    margin-bottom: 0;
}

/* 
==============================================
10. Destinations Section
==============================================
*/
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    margin-bottom: 0.5rem;
}

.destination-content p {
    color: var(--medium);
    margin-bottom: 1rem;
}

/* 
==============================================
11. Tours Section
==============================================
*/
.tours {
    background-color: var(--extra-light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.tour-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tour-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--accent-1);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.tour-card h3 {
    margin-bottom: 0.5rem;
}

.tour-duration {
    color: var(--medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tour-description {
    margin-bottom: 1.5rem;
}

.tour-highlights {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.tour-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.tour-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--extra-light);
}

.tour-price {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.tours-cta {
    text-align: center;
    margin-top: 3rem;
}

.tours-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* 
==============================================
12. Testimonials Section
==============================================
*/
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    color: var(--accent-2);
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    margin: 0 0.1rem;
}

blockquote {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-left: none;
    padding-left: 0;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-tour {
    font-size: 0.9rem;
    color: var(--medium);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active {
    background-color: var(--primary);
}

.testimonial-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin: 0 1rem;
    transition: color var(--transition-fast);
}

.testimonial-arrow:hover {
    color: var(--primary-dark);
}

/* 
==============================================
13. Newsletter Section
==============================================
*/
.newsletter {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    color: var(--white);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input[type="email"] {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.newsletter-form .form-consent {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form .form-consent a {
    color: var(--white);
    text-decoration: underline;
}

/* 
==============================================
14. Contact Section
==============================================
*/
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--extra-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(60, 179, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--medium);
}

.social-links h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary-light);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

/* 
==============================================
15. Blog Preview Section
==============================================
*/
.blog-preview {
    background-color: var(--extra-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: var(--medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* 
==============================================
16. Footer
==============================================
*/
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.footer-logo span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-credentials {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 
==============================================
17. Legal Pages
==============================================
*/
.policy-content h2 {
    border-bottom: 1px solid var(--extra-light);
    padding-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-dark);
}

/* 
==============================================
18. Thank You Page
==============================================
*/
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 
==============================================
19. Utility Classes
==============================================
*/
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* 
==============================================
20. Media Queries
==============================================
*/
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        display: none;
    }
    
    nav.open {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credentials {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: var(--radius-sm);
        border-right: 1px solid var(--light);
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        border-radius: var(--radius-sm);
        width: 100%;
    }
}
