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

:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8C42;
    --text-dark: #1f2937;
    --text-medium: #2d3748;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --button-black: #000000;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo a {
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

.search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--text-dark);
}

.btn-signin {
    padding: 0.6rem 1.5rem;
    background: var(--button-black);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-signin:hover {
    background: var(--text-dark);
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 140px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-images {
    flex: 1;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    z-index: 2;
}

.hero-image-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-image-item:hover {
    transform: scale(1.05);
}

.hero-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.airplane-animation {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    animation: flyPath 8s ease-in-out infinite;
    font-size: 1.5rem;
}

@keyframes flyPath {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(200px);
        opacity: 0;
    }
}

.airplane-path {
    position: absolute;
    right: -50px;
    top: 50%;
    width: 200px;
    height: 2px;
    border-top: 2px dashed var(--text-lighter);
    opacity: 0.3;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destinations {
    padding: 100px 0;
    background: var(--bg-white);
}

.destinations-overview {
    padding: 80px 0;
    background: var(--bg-light);
    background-image: url('images/Top Destinations.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.destinations-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.80);
    z-index: 1;
}

.destinations-overview .container {
    position: relative;
    z-index: 2;
}

.destinations-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-title a {
    transition: color 0.3s ease;
    cursor: pointer;
}

.section-title a:hover {
    color: var(--primary-orange);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-medium);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.btn-outline {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

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

.country-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

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

.country-card .card-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.card-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1.75rem;
}

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

.card-content .location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 1rem;
    color: var(--secondary-orange);
}

.country-section {
    padding: 100px 0;
}

.country-section:nth-child(even) {
    background: var(--bg-light);
}

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

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.attraction-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.attraction-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.attraction-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
    transition: opacity 0.3s ease;
    z-index: 1;
}

.attraction-card:hover .attraction-image::before {
    opacity: 0.5;
}

.attraction-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.attraction-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.attraction-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.attraction-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.attraction-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.attraction-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.attraction-7 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.attraction-8 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.attraction-9 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.attraction-10 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.attraction-11 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.attraction-12 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.attraction-13 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.attraction-14 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.attraction-15 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.attraction-16 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.attraction-17 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.attraction-18 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.attraction-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.reviews-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-rating {
    color: var(--primary-orange);
    font-size: 1rem;
}

.review-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.comparison-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-table thead {
    background: var(--bg-light);
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.info-table-wrapper {
    margin: 3rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 500px;
}

.info-table thead {
    background: var(--bg-light);
}

.info-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.9rem;
}

.info-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 0.9rem;
}

.info-table tbody tr:hover {
    background: var(--bg-light);
    transition: background 0.2s ease;
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item.active {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    outline: none;
}

.accordion-header:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: -2px;
}

.accordion-header:hover {
    color: var(--primary-orange);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 1.5rem;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.accordion-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.stories-section {
    padding: 100px 0;
    background: var(--bg-white);
    background-image: none;
}

.stories-guide {
    padding: 100px 0;
    background: var(--bg-light);
}

.stories-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.story-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.story-details p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.story-details p:last-child {
    margin-bottom: 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.main-story {
    grid-row: span 2;
}

.story-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card-link:hover .story-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.story-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.main-story .story-image {
    height: 350px;
}

.story-content {
    padding: 1.5rem;
}

.story-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.story-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.main-story .story-content h3 {
    font-size: 1.5rem;
}

.story-excerpt {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-values {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-team {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

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

.team-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2rem 80px;
    background: var(--bg-white);
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thank-you-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.thank-you-subtext {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.thank-you-contact-info {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.thank-you-contact-info p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.thank-you-contact-info p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-text {
        font-size: 1.1rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-outline {
        width: 100%;
    }
}

.page-hero {
    padding: 140px 2rem 60px;
    background: var(--bg-light);
    background-image: url('images/Top Destinations.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.80);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

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

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.mission-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.mission-image {
    position: sticky;
    top: 120px;
}

.mission-image-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-text-section {
    margin-bottom: 4rem;
}

.about-text-section .about-text {
    margin-bottom: 1.5rem;
    text-align: left;
}

@media (max-width: 968px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image {
        position: static;
        order: -1;
    }
}

.attractions-detail-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.attractions-stats {
    padding: 100px 0;
    background: var(--bg-light);
}

.attractions-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.attractions-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.attraction-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.attraction-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.attraction-detail-card .attraction-content {
    padding: 2rem;
}

.attraction-detail-card .attraction-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.attraction-location {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.map-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-info-table {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 3rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.map-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-actions .btn-outline {
    width: 100%;
    text-align: center;
}

.legal-content {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-text p {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-text a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: var(--secondary-orange);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
}

.cookie-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cookie-table tbody tr:hover {
    background: var(--bg-light);
    transition: background 0.2s ease;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 60px;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

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

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-images {
        max-width: 100%;
        order: -1;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-item {
        aspect-ratio: 1;
    }

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

    .filters {
        gap: 0.75rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
        white-space: nowrap;
    }

    .countries-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

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

    .main-story {
        grid-row: span 1;
    }

    .airplane-animation,
    .airplane-path {
        display: none;
    }

    .nav {
        padding: 1rem;
    }

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

    .table-wrapper {
        border-radius: 8px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .info-table-wrapper {
        margin: 2rem 0;
    }

    .info-table {
        font-size: 0.8rem;
        min-width: 400px;
    }

    .info-table th,
    .info-table td {
        padding: 0.75rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .attractions-detail-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 1.75rem;
    }

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

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.25rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 1rem;
    }

    .footer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

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

    .contact-info-table {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

.article-page {
    padding: 140px 0 80px;
    background: var(--bg-white);
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.article-content {
    max-width: 100%;
}

.article-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.article-image-sidebar {
    position: sticky;
    top: 120px;
}

.article-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 968px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-image-sidebar {
        position: static;
        order: -1;
    }

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

@media (max-width: 640px) {
    .article-page {
        padding: 120px 0 60px;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-text {
        font-size: 1rem;
    }
}

