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

body {
    background: linear-gradient(135deg, #f8fbf8 0%, #e8f4f1 45%, #fff5e8 100%);
    color: #1d2d44;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Header Section */
.site-header {
    align-items: center;
    background: #ffffffde;
    border-bottom: 1px solid #d7ebe7;
    box-shadow: 0 12px 30px #195f5a12;
    display: flex;
    justify-content: space-between;
    padding: 24px 8%;
}

.logo {
    align-items: center;
    color: #163c40;
    display: flex;
    font-size: 32px;
    font-weight: 800;
    gap: 12px;
    letter-spacing: 0.5px;
    position: relative;
}

.plane-icon {
    align-items: center;
    animation: plane-fly 2.6s ease-in-out infinite;
    background: linear-gradient(135deg, #ff8a3d, #ffd166);
    border-radius: 50%;
    box-shadow: 0 8px 22px #ff8a3d4d;
    color: #ffffff;
    display: inline-flex;
    font-size: 24px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.logo-text strong {
    color: #f97316;
}

.logo::after {
    background: linear-gradient(90deg, #ff8a3d, transparent);
    border-radius: 999px;
    content: "";
    height: 3px;
    left: 16px;
    opacity: 0.8;
    position: absolute;
    top: 43px;
    width: 42px;
}

@keyframes plane-fly {
    0%,
    100% {
        transform: translate(0, 0) rotate(-8deg);
    }

    50% {
        transform: translate(6px, -5px) rotate(8deg);
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.social-links a {
    align-items: center;
    background: #eef8f6;
    border-radius: 999px;
    color: #28736f;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    padding: 9px 15px;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    box-shadow: 0 10px 22px #214c4a26;
    transform: translateY(-2px) scale(1.04);
}

.social-links .instagram:hover {
    background: #fce7f3;
    color: #be185d;
}

.social-links .facebook:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

.social-links .twitter:hover {
    background: #e0f2fe;
    color: #0369a1;
}

/* Menubar Section */
.menu-bar {
    background: #2f8f88;
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 12px 8%;
}

.menu-bar a {
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 22px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.menu-bar a:hover {
    background: #f4c76b;
    color: #203637;
    transform: translateY(-2px);
}

/* Page Layout Section */
.page-wrapper {
    display: grid;
    gap: 28px;
    grid-template-columns: 330px 1fr;
    margin: 34px auto;
    max-width: 1320px;
    padding: 0 24px;
}

/* Sidebar Section */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.side-card {
    background: #ffffff;
    border: 1px solid #deede9;
    border-radius: 18px;
    box-shadow: 0 14px 32px #1b6d6617;
    padding: 22px;
}

.side-card h2 {
    color: #0f766e;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 18px;
}

/* Popular Destinations Section */
.destination-list {
    display: grid;
    gap: 14px;
}

.destination-item {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e4ecea;
    border-radius: 16px;
    box-shadow: 0 8px 18px #173f3b0f;
    display: grid;
    gap: 14px;
    grid-template-columns: 88px 1fr;
    min-height: 108px;
    padding: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.destination-item:hover {
    box-shadow: 0 16px 28px #173f3b24;
    transform: translateY(-4px);
}

.destination-item img {
    border-radius: 12px;
    height: 88px;
    object-fit: cover;
    width: 88px;
}

.destination-item span {
    color: #1d2d44;
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.destination-item small {
    color: #0f766e;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 4px 0 5px;
}

.destination-item p {
    color: #44516c;
    font-size: 14px;
    line-height: 1.35;
}

/* Travel Tips Section */
.tips-list {
    display: grid;
    gap: 12px;
}

.tip-item {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 46px 1fr;
}

.tip-icon {
    align-items: center;
    background: #dff4e6;
    border-radius: 50%;
    color: #0f766e;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.tip-item p {
    color: #28344f;
    font-size: 15px;
    line-height: 1.35;
}

/* Main Content Section */
.main-content {
    align-items: flex-start;
    display: flex;
    gap: 30px;
}

/* Main Travel Cards */
.travel-card {
    background: #ffffff;
    border: 1px solid #deede9;
    border-radius: 18px;
    box-shadow: 0 12px 28px #1b6d6617;
    display: block;
    flex: 0 1 calc(33.333% - 20px);
    height: auto;
    min-height: 0;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.travel-card:hover {
    box-shadow: 0 18px 36px #1b6d6628;
    transform: translateY(-5px);
}

.travel-card img {
    border-radius: 18px 18px 0 0;
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.card-icon {
    align-items: center;
    background: #e4f5e8;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #d7eee7;
    color: #0f766e;
    display: flex;
    font-size: 22px;
    height: 58px;
    justify-content: center;
    margin: -29px auto 0;
    position: relative;
    width: 58px;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.card-body h2 {
    color: #0f766e;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0;
}

.card-body p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #28344f;
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
    overflow: hidden;
}

.feature-list {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    align-items: center;
    border-bottom: 1px solid #e6eeee;
    color: #28344f;
    display: flex;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 0 7px;
}

.feature-list span {
    align-items: center;
    background: #e8f6ef;
    border-radius: 50%;
    color: #0f766e;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.card-bottom {
    margin-top: 8px;
    text-align: center;
}

.package-button {
    background: #117c6f;
    border-radius: 9px;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    min-width: 170px;
    padding: 10px 20px;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.package-button:hover {
    background: #0d665c;
    transform: translateY(-2px);
}

/* Footer Section */
.site-footer {
    background: #244142;
    color: #f4fbfa;
    margin-top: 34px;
    padding: 24px 8%;
    text-align: center;
}

/* Tablet Responsive Section */
@media (max-width: 1050px) {
    .page-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .main-content {
        flex-wrap: wrap;
        order: 1;
    }

    .travel-card {
        flex: 0 1 calc(50% - 15px);
    }

}

/* Mobile Responsive Section */
@media (max-width: 640px) {
    .site-header,
    .menu-bar {
        align-items: center;
        flex-direction: column;
    }

    .site-header {
        gap: 18px;
        text-align: center;
    }

    .logo {
        font-size: 28px;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        justify-content: center;
        min-width: 142px;
    }

    .menu-bar {
        gap: 8px;
    }

    .menu-bar a {
        text-align: center;
        width: 100%;
    }

    .page-wrapper {
        margin: 24px auto;
        padding: 0 16px;
    }

    .main-content {
        flex-direction: column;
    }

    .travel-card {
        flex-basis: auto;
    }

    .travel-card img {
        height: 240px;
    }

    .card-body {
        padding: 20px;
    }
}
