/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: hsl(205, 80%, 48%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(24, 95%, 53%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --accent: hsl(195, 85%, 41%);
    --accent-foreground: hsl(0, 0%, 100%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --muted: hsl(210, 40%, 96.1%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --border: hsl(214.3, 31.8%, 91.4%);
    --shadow-travel: 0 20px 40px -10px hsl(205 80% 48% / 0.2);
    --shadow-glow: 0 0 30px hsl(195 85% 41% / 0.3);
    --radius: 0.5rem;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-icon {
    width: 10rem;
    height:10rem;
    color: var(--primary);
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu {
    display: none;
    padding-bottom: 1rem;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: var(--shadow-travel);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

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

.btn-full {
    width: 100%;
}

.btn i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero-travel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(205, 80%, 48%, 0.8), hsla(195, 85%, 41%, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-divider {
    width: 8rem;
    height: 0.25rem;
    background: var(--secondary);
    margin: 0 auto 2rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid white;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: white;
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: hsla(210, 40%, 96.1%, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-travel);
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.bg-accent-gradient {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Experiences Section */
.experiences {
    padding: 5rem 0;
    background: var(--background);
}

.experiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .experiences-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.experience-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.experience-icon i {
    width: 1rem;
    height: 1rem;
    color: white;
}

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-accent { background: var(--accent); }

.experience-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.experience-text p {
    color: var(--muted-foreground);
}

.experiences-image {
    position: relative;
}

.experiences-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-travel);
}

.experiences-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-travel);
}

.experiences-badge i {
    width: 3rem;
    height: 3rem;
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: hsla(210, 40%, 96.1%, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-travel);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.gallery-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(205, 80%, 48%, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 1.5rem;
    color: white;
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gallery-title i {
    width: 1.25rem;
    height: 1.25rem;
}

.gallery-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsla(205, 80%, 48%, 0.1), hsla(195, 85%, 41%, 0.1));
}

.guarantee-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.guarantee-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.guarantee-text {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .guarantee-text {
        font-size: 1.5rem;
    }
}

.guarantee-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guarantee-feature i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.guarantee-feature span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-card,
.contact-card,
.features-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-travel);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.card-title i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.card-description {
    color: var(--muted-foreground);
}

.contact-form {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, hsla(205, 80%, 48%, 0.05), hsla(195, 85%, 41%, 0.05));
}

.contact-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.contact-detail i {
    width: 1.25rem;
    height: 1.25rem;
}

.features-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--foreground);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--foreground);
    color: white;
}

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

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

.footer-logo i {
    width: 2rem;
    height: 2rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

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

/* Toast Notification */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-travel);
    padding: 1rem;
    max-width: 20rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast.hidden {
    display: none;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.toast-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        padding: 0 1rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -10px hsl(205, 80%, 48%, 0.2);
    border: none;
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-title svg {
    color: hsl(205, 80%, 48%);
}

.contact-form-description {
    color: hsl(215.4, 16.3%, 46.9%);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid hsl(214.3, 31.8%, 91.4%);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: hsl(205, 80%, 48%);
}

.contact-form textarea {
    min-height: 8rem;
    resize: vertical;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-direct {
    background: linear-gradient(135deg, hsl(205, 80%, 48%, 0.05), hsl(195, 85%, 41%, 0.05));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -10px hsl(205, 80%, 48%, 0.2);
    border: none;
}

.contact-direct-header {
    margin-bottom: 1.5rem;
}

.contact-direct-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-direct-title svg {
    color: hsl(205, 80%, 48%);
}

.contact-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: hsl(215.4, 16.3%, 46.9%);
}

.contact-detail svg {
    width: 1.25rem;
    height: 1.25rem;
}

.why-choose-us {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -10px hsl(205, 80%, 48%, 0.2);
    border: none;
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.star-icon {
    color: #eab308;
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    background: hsl(222.2, 84%, 4.9%);
    color: white;
    padding: 3rem 0;
}

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

.footer-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    opacity: 0.75;
    flex-wrap: wrap;
}

/* Toast */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border: 1px solid hsl(214.3, 31.8%, 91.4%);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 20rem;
    animation: slideIn 0.3s ease-out;
}

.toast.show {
    display: block;
}

.toast-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: hsl(215.4, 16.3%, 46.9%);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 20rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid hsl(205, 80%, 48%);
    outline-offset: 2px;
}