/* Travel Styles Page Specific Styles */

/* Travel Styles Grid */
.travel-styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.travel-style-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: .25s var(--ease);
    position: relative;
}

.travel-style-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.style-media {
    position: relative;
    aspect-ratio: 1.5/1;
    overflow: hidden;
}

.style-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s var(--ease);
}

.travel-style-card:hover .style-media img {
    transform: scale(1.06);
}

.style-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(201, 155, 61, .3);
}

.style-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.style-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.style-header h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--navy);
    font-size: 24px;
    letter-spacing: -.035em;
    margin: 0;
    height: 65px;
}

.style-icon {
    font-size: 28px;
    opacity: 0.8;
}

.style-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    margin-bottom: 11px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.style-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.style-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.style-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.style-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.style-price {
    font-size: 14px;
    color: var(--muted);
    font-weight: 700;
}

.style-price strong {
    font-size: 22px;
    color: var(--gold);
    font-weight: 900;
}

/* Travel Style Specific Colors */
.luxury-style .style-badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: var(--navy);
}

.luxury-style:hover {
    border-color: rgba(255, 215, 0, .3);
}

.family-style .style-badge {
    background: linear-gradient(135deg, #87ceeb, #4682b4);
    color: #fff;
}

.family-style:hover {
    border-color: rgba(135, 206, 235, .3);
}

.honeymoon-style .style-badge {
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    color: #fff;
}

.honeymoon-style:hover {
    border-color: rgba(255, 182, 193, .3);
}

.cultural-style .style-badge {
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: #fff;
}

.cultural-style:hover {
    border-color: rgba(218, 165, 32, .3);
}

.adventure-style .style-badge {
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: #fff;
}

.adventure-style:hover {
    border-color: rgba(50, 205, 50, .3);
}

.budget-style .style-badge {
    background: linear-gradient(135deg, #20b2aa, #008b8b);
    color: #fff;
}

.budget-style:hover {
    border-color: rgba(32, 178, 170, .3);
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.comparison-card {
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .64));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: .25s var(--ease);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    transform: scaleX(0);
    transition: .25s var(--ease);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.comparison-card:hover::before {
    transform: scaleX(1);
}

.comparison-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin: 0 0 12px 0;
    font-weight: 800;
}

.comparison-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
    transition: .2s var(--ease);
}

.comparison-link:hover {
    color: var(--navy);
    transform: translateX(4px);
}

/* Travel Styles Intro Section */
.travel-styles-intro {
    background: linear-gradient(180deg, rgba(255, 250, 242, .55), rgba(255, 255, 255, .78));
    padding-top: 67px;
    padding-bottom: 0;
}

/* Category Hero Background */
.category-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.category-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(6 29 53 / 93%) 0%, rgb(6 29 53 / 57%) 34%, rgba(6, 29, 53, .20) 64%, rgba(6, 29, 53, .50) 100%), linear-gradient(180deg, rgba(6, 29, 53, .2), rgb(6 29 53 / 49%)), url() center / cover no-repeat;

}

.category-hero-bg picture,
.category-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.category-hero {
    position: relative;
    isolation: isolate;
    min-height: 600px;
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 80px;
    color: #fff;
    overflow: hidden;
}

.category-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height:65px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0), var(--ivory));
    pointer-events: none;
}

.category-hero-grid {
    /* display: grid; */
    /* align-items: center; */
    /* max-width: 800px; */
}

.category-hero-copy {
    /* text-align: center; */
}

.category-hero-actions {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    /* gap: 14px; */
    /* margin-top: 32px; */
}

.category-stats {
    /* display: flex; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    /* gap: 24px; */
    /* margin-top: 40px; */
    /* color: rgba(255, 255, 255, .86); */
}

.category-stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}

.category-stats strong {
    color: var(--gold-2);
    font-size: 18px;
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.travel-style-card {
    animation: fadeInUp 0.6s ease-out;
}

.travel-style-card:nth-child(1) { animation-delay: 0.1s; }
.travel-style-card:nth-child(2) { animation-delay: 0.2s; }
.travel-style-card:nth-child(3) { animation-delay: 0.3s; }
.travel-style-card:nth-child(4) { animation-delay: 0.4s; }
.travel-style-card:nth-child(5) { animation-delay: 0.5s; }
.travel-style-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .travel-styles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .style-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .style-bottom .btn {
        width: 100%;
        justify-content: center;
    }

    .category-hero {
        min-height: 500px;
        padding-top: calc(var(--header-h) + 40px);
        padding-bottom: 60px;
    }

    .category-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .category-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .style-content {
        padding: 12px;
    }

    .style-header h3 {
        font-size: 19px;
        line-height: 23.5px;
    }

    .comparison-card {
        padding: 20px;
    }

    .travel-styles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .style-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }

    .style-icon {
        font-size: 24px;
    }
}

.section-head {
    max-width: 100%;
    margin: 0 auto 0px;
    text-align: center;
}

.travel-styles-grid-section{
    padding-top:0;
}
