/* Additional styles for the Kerala sections */
.kerala-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.kerala-intro h2 {
    color: #2c5f2d;
    margin-bottom: 30px;
    font-weight: 700;
}

.kerala-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    color: #2c5f2d;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #2c5f2d;
    margin: 15px auto 0;
}

.kerala-highlights {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/assets/images/kerala-background.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.highlight-item h4 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.highlight-item p {
    color: #666;
}

.category-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 25px;
    margin: 0 10px 10px;
    background: white;
    border: 2px solid #2c5f2d;
    color: #2c5f2d;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-tab.active,
.category-tab:hover {
    background: #2c5f2d;
    color: white;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.cta-section {
    padding: 100px 0;
    background-color: #09aeda;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: black;
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f8fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .kerala-intro,
    .kerala-highlights,
    .category-section,
    .cta-section {
        padding: 50px 0;
    }
}

.progress-wrap {
    mix-blend-mode: normal !important;
}