@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --travelite-green: #16A34A;
    --travelite-navy: #1C2B38;
    --travelite-gray: #F7F8FA;
    --travelite-text: #4F5E71;
    --travelite-light: #FFFFFF;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--travelite-text);
    background-color: var(--travelite-gray);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--travelite-navy);
    font-weight: 700;
}

/* Header & Nav */
.tl-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.tl-nav-link {
    font-weight: 500;
    color: var(--travelite-navy);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.tl-nav-link:hover {
    color: var(--travelite-green);
}

/* Hero Section */
.tl-hero {
    position: relative;
    height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 43, 56, 0.4);
}

/* Search Box Container */
.tl-search-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.tl-search-field {
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.tl-search-field:focus {
    border-color: var(--travelite-green);
}

/* Destination Cards */
.tl-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tl-card-image-wrap {
    position: relative;
    height: 240px;
}

.tl-card-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--travelite-green);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tl-card-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: #00BFA5;
    color: white;
    padding: 5px 15px;
    border-radius: 0 30px 30px 0;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Buttons */
.tl-btn-primary {
    background: var(--travelite-green);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
    display: inline-block;
}

.tl-btn-primary:hover {
    background: #e65200;
}

/* Sections */
.tl-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.tl-subtitle {
    color: var(--travelite-green);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Vertical Destination Cards */
.tl-v-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .tl-v-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .tl-v-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }
}

.tl-v-card {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
}

.tl-v-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tl-v-card:hover img {
    transform: scale(1.1);
}

.tl-v-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
}

.tl-v-card-plus {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border-radius: 8px;
    z-index: 10;
    transition: background 0.3s ease;
}

.tl-v-card:hover .tl-v-card-plus {
    background: var(--travelite-green);
}

.tl-v-card-name {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 10;
}

/* Advantages Section */
.tl-progress-bar {
    height: 10px;
    background: #EAECEF;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.tl-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--travelite-navy);
}

.tl-progress-fill {
    height: 100%;
    background: var(--travelite-green);
    border-radius: 5px;
}

.tl-adv-image-wrap {
    position: relative;
    border-radius: 40px;
}

.tl-review-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: var(--travelite-green);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(235, 102, 43, 0.3);
}