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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Colors */
:root {
    --turquoise-dark: #1e6b7a;
    --turquoise-medium: #2891a3;
    --turquoise-light: #87ceeb;
}

/* Header */
.header {
    background-color: var(--turquoise-dark);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.plane-icon {
    width: 2rem;
    height: 2rem;
}

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

/* Language Toggle */
.language-toggle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-icon {
    font-size: 1.2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--turquoise-light);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--turquoise-medium);
}

.mobile-nav-link {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--turquoise-light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--turquoise-light), var(--turquoise-medium));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-brand {
    display: block;
    color: var(--turquoise-light);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out 0.2s both;
    opacity: 0.9;
}

.hero-btn {
    background: var(--turquoise-dark);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.hero-btn:hover {
    background: var(--turquoise-medium);
    transform: scale(1.05);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--turquoise-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

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

.about-card {
    background: rgba(135, 206, 235, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.about-icon {
    background: var(--turquoise-medium);
    padding: 1rem;
    border-radius: 50%;
    width: fit-content;
    margin: 0 auto 1.5rem;
}

.about-icon svg {
    width: 3rem;
    height: 3rem;
    color: white;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: center;
}

.stat-icon {
    background: var(--turquoise-medium);
    padding: 0.75rem;
    border-radius: 50%;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat h4 {
    font-weight: 600;
    color: var(--turquoise-dark);
}

.stat p {
    color: #666;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: rgba(135, 206, 235, 0.1);
}

.values-header {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(-0.5rem);
}

.value-icon {
    background: var(--turquoise-medium);
    padding: 1rem;
    border-radius: 50%;
    width: fit-content;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--turquoise-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.75;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background: white;
}

.destinations-header {
    margin-bottom: 4rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 112rem;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.destination-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(-0.5rem);
}

.destination-image {
    position: relative;
}

.destination-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.rating span {
    font-size: 0.875rem;
    font-weight: 600;
}

.destination-content {
    padding: 1.5rem;
}

.destination-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.location-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--turquoise-medium);
}

.destination-location h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--turquoise-dark);
}

.destination-content p {
    color: #666;
    line-height: 1.75;
}

/* Footer */
.footer {
    background: var(--turquoise-dark);
    color: white;
    padding: 3rem 0;
}

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

.footer-brand {
    grid-column: span 2;
}

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

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

.footer-brand p {
    color: var(--turquoise-light);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--turquoise-light);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav button {
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-nav button:hover {
    color: var(--turquoise-light);
}

.footer-bottom {
    border-top: 1px solid var(--turquoise-medium);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--turquoise-light);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: 6rem;
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        gap: 1rem;
        align-items: stretch;
    }

    .logo {
        order: 1;
        justify-content: center;
    }

    .language-toggle {
        position: static;
        transform: none;
        order: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
        order: 3;
        align-self: flex-end;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
        width: 100%;
        order: 4;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}
