.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 24px;
}

.site-breadcrumb {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 55px 0;
}

.breadcrumb-title {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.2;
}

.breadcrumb-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-menu li {
    color: rgba(255,255,255,0.75);
}

.breadcrumb-menu li.active {
    color: var(--white-color);
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
}
.content-box {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 38px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.content-box h2 {
    margin-top: 0;
    color: var(--dark-color);
    font-size: 32px;
}

.editor-content {
    font-size: 17px;
    color: var(--text-color);
}

.editor-content h2,
.editor-content h3,
.editor-content h4 {
    color: var(--dark-color);
    margin-top: 28px;
}

.editor-content p {
    margin-bottom: 16px;
}

.editor-content ul,
.editor-content ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.editor-content img {
    border-radius: var(--border-radius);
    margin: 18px 0;
}
.blog-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--light-color);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-category {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.blog-card h2 {
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--dark-color);
}

.blog-card p {
    color: var(--muted-color);
    margin-bottom: 18px;
}

.read-more {
    font-weight: 800;
    color: var(--primary-color);
}

.blog-detail-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--muted-color);
    font-weight: 700;
}
.detail-cover {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 28px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

.airline-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.airline-head img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 18px;
    background: var(--light-color);
    padding: 14px;
}

.flight-deal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0 36px;
}

.flight-deal-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--white-color);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.flight-deal-card strong {
    font-size: 18px;
    color: var(--dark-color);
}

.flight-deal-card span,
.flight-deal-card small {
    color: var(--muted-color);
}

.flight-deal-card b {
    font-size: 22px;
    color: var(--primary-color);
}
.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 14px;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: 38px;
    color: var(--dark-color);
    line-height: 1.2;
}

.section-heading p {
    margin: 0;
    color: var(--muted-color);
    font-size: 17px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.destination-card {
    position: relative;
    min-height: 260px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--dark-color);
    box-shadow: var(--box-shadow);
}

.destination-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.72)
    );
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-card-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: var(--white-color);
}

.destination-card-content h3 {
    margin: 0 0 4px;
    font-size: 24px;
}

.destination-card-content span {
    color: rgba(255,255,255,0.82);
    font-weight: 700;
}

.airline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.airline-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.airline-card:hover {
    transform: translateY(-4px);
}

.airline-card img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    background: var(--light-color);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 18px;
}

.airline-card h3 {
    margin: 0 0 10px;
    color: var(--dark-color);
    font-size: 22px;
}

.airline-card p {
    margin: 0;
    color: var(--muted-color);
}