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

:root {
    --primary-color: #2563eb;
    --text-dark: #262626;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navbar */
.navbar {
    background: var(--bg-light);
    padding: 1.625rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    background: var(--bg-white);
    padding: 4rem 0 5rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.search-form {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.search-form > *:not(.search-form-loader) {
    width: 100%;
    height: 100%;
}

.search-form iframe,
.search-form script + * {
    width: 100% !important;
    min-height: 100%;
}

.search-form-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: var(--bg-white);
    border-radius: 16px;
    z-index: 1;
    padding: 1rem;
}

.loader-skeleton {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skeleton-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.skeleton-field {
    height: 52px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-button {
    height: 52px;
    background: linear-gradient(90deg, #006DFF 25%, #0052cc 50%, #006DFF 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
    opacity: 0.7;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

/* Destinations Section */
.destinations-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    height: 300px;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-image.paris {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=800&q=80') center/cover;
}

.destination-image.tokyo {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=800&q=80') center/cover;
}

.destination-image.newyork {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=800&q=80') center/cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.destination-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.destination-overlay p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #000000;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
    background: var(--bg-white);
    min-height: calc(100vh - 200px);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.why-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.why-list li strong {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    /* Navbar Mobile */
    .navbar {
        background: var(--bg-light);
        padding: 1.125rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        color: #000000;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    .logo:hover {
        opacity: 0.8;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.875rem;
        font-weight: 500;
        transition: color 0.2s;
    }

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

    /* Hero Section Mobile */
    .hero {
        background: var(--bg-white);
        padding: 1.5rem 0 0;
        text-align: left;
        min-height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        padding-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.375rem;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.2;
        margin-top: 5vh;
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        color: var(--text-light);
        margin-bottom: 0;
        text-align: left;
    }

    .search-form {
        background: var(--bg-white);
        border-radius: 14px;
        padding: 0.75rem 0.625rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        width: 100%;
        max-width: 1000px;
        margin-top: auto;
        margin-bottom: calc(15vh - 1.5rem);
        flex: 0 0 auto;
        min-height: 380px;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        position: relative;
        box-sizing: border-box;
    }

    .search-form > *:not(.search-form-loader) {
        width: 100%;
        height: 100%;
    }

    .search-form iframe,
    .search-form script + * {
        width: 100% !important;
        min-height: 100%;
    }

    .search-form-loader {
        border-radius: 14px;
        align-items: stretch;
        justify-content: stretch;
        padding: 0.75rem 0.625rem;
        width: 100%;
        box-sizing: border-box;
    }

    .loader-skeleton {
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .skeleton-row {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-bottom: 1rem;
        box-sizing: border-box;
    }

    .skeleton-field,
    .skeleton-button {
        height: 52px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 3rem 0;
        background: var(--bg-light);
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        background: var(--bg-white);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        color: var(--text-light);
        font-size: 0.875rem;
        line-height: 1.6;
    }

    /* Destinations Section Mobile */
    .destinations-section {
        padding: 3rem 0;
        background: var(--bg-white);
    }

    .section-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2rem;
        text-align: center;
    }

    .destinations-grid {
        gap: 1.5rem;
    }

    .destination-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s, box-shadow 0.2s;
        cursor: pointer;
        height: 250px;
    }

    .destination-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .destination-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.25rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: white;
    }

    .destination-overlay h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .destination-overlay p {
        font-size: 0.9375rem;
        font-weight: 500;
        opacity: 0.9;
    }

    /* Footer Mobile */
    .footer {
        background: var(--bg-light);
        padding: 2.5rem 0 1.25rem;
        margin-top: auto;
        border-top: 1px solid var(--border-color);
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        color: #000000;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        color: var(--text-light);
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-column h4 {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

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

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }

    .footer-column ul li a {
        text-decoration: none;
        color: var(--text-light);
        font-size: 0.875rem;
        transition: color 0.2s;
    }

    .footer-column ul li a:hover {
        color: var(--primary-color);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        color: var(--text-light);
        font-size: 0.875rem;
    }

    /* About Page Mobile */
    .about-section {
        padding: 2rem 0;
    }

    .about-header {
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .about-title {
        font-size: 1.75rem;
        text-align: left;
    }

    .about-subtitle {
        font-size: 1rem;
        text-align: left;
    }

    .about-block {
        padding: 1.5rem;
    }

    .about-block h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .about-block p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

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

    .feature-item {
        padding: 1.25rem;
    }

    .feature-item h3 {
        font-size: 1.125rem;
    }

    .feature-item p {
        font-size: 0.875rem;
    }

    .why-list li {
        padding: 0.875rem 0;
        padding-left: 1.75rem;
        font-size: 0.9375rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        background: var(--bg-white);
        padding: 1.25rem 0 0;
        min-height: calc(100vh - 70px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        padding-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 2.125rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 5vh;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        color: var(--text-light);
        margin-bottom: 0;
    }

    .search-form {
        background: var(--bg-white);
        border-radius: 12px;
        padding: 0.75rem 0.625rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        width: 100%;
        margin-top: auto;
        margin-bottom: calc(15vh - 1.25rem);
        flex: 0 0 auto;
        min-height: 360px;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        position: relative;
        box-sizing: border-box;
    }

    .search-form > *:not(.search-form-loader) {
        width: 100%;
        height: 100%;
    }

    .search-form iframe,
    .search-form script + * {
        width: 100% !important;
        min-height: 100%;
    }

    .search-form-loader {
        border-radius: 12px;
        align-items: stretch;
        justify-content: stretch;
        padding: 0.75rem 0.625rem;
        width: 100%;
        box-sizing: border-box;
    }

    .loader-skeleton {
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .skeleton-row {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        box-sizing: border-box;
    }

    .skeleton-field,
    .skeleton-button {
        height: 48px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .features-section,
    .destinations-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .destination-card {
        height: 220px;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-links {
        gap: 1.25rem;
    }
}
