/* ==========================================
   FEATURES SECTION
   Features Grid, Gallery, Latest Content, Hotels, Restaurants
   ========================================== */

/* Features Section - Clean & Minimal */
.features {
    background-color: #fafafa;
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    justify-content: center;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.feature-card h3 {
    margin: 0 0 0.8rem 0;
    color: var(--primary-blue);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    letter-spacing: -0.02em;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.feature-card p {
    padding: 0;
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
    letter-spacing: 0.01em;
    font-weight: 400;
}

.feature-image {
    width: 100%;
    max-width: 100%;
    height: 200px;
    max-height: 200px;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin: 0 0 1rem 0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.feature-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0 1rem 0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.feature-carousel-images {
    position: relative;
    width: 100%;
    height: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.feature-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    max-height: 200px;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: block;
}

.feature-carousel-image.active {
    opacity: 1;
}

.feature-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    border-radius: 50%;
    font-size: 0.85rem;
}

.feature-carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.feature-carousel-btn.prev {
    left: 0.5rem;
}

.feature-carousel-btn.next {
    right: 0.5rem;
}

.feature-carousel-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.feature-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.feature-carousel-dots .dot.active {
    background-color: white;
    transform: scale(1.2);
}

.feature-carousel-dots .dot:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery {
    background-color: var(--light-yellow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Latest Content Section - Combined Story & News */
.latest-content-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.latest-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.latest-story-column,
.latest-news-column {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e5e7eb;
    background: #ffffff;
}

.column-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.view-all-link {
    color: #0a2463;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.view-all-link:hover {
    color: #1e3d72;
}

/* Latest Story Card - Compact */
.latest-story-card {
    display: flex;
    flex-direction: column;
}

.latest-story-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f3f4f6;
}

.latest-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-story-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.latest-story-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.latest-story-date,
.latest-story-author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.latest-story-date i,
.latest-story-author i {
    font-size: 0.8rem;
}

.latest-story-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.latest-story-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-story-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.latest-story-link:hover {
    gap: 0.75rem;
}

.latest-story-link i {
    font-size: 0.85rem;
}

/* Latest News List - Compact */
.latest-news-list {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.news-category-badge {
    background: #0a2463;
    color: #ffffff;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item-date {
    font-size: 0.75rem;
    color: #9ca3af;
}

.news-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-link {
    font-size: 0.875rem;
    color: #0a2463;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s;
}

.news-item-link:hover {
    gap: 0.5rem;
}

.news-item-link i {
    font-size: 0.75rem;
}

/* Featured Hotels Section - Minimalist */
.featured-hotels {
    background-color: #ffffff;
    padding: 4rem 0;
}

.featured-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.featured-hotel-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-hotel-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.featured-hotel-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f3f4f6;
}

.featured-hotel-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-hotel-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.featured-hotel-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.featured-hotel-location i {
    color: #9ca3af;
    font-size: 0.85rem;
}

.featured-hotel-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.featured-hotel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.featured-hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-hotel-rating i {
    font-size: 1rem;
}

.featured-hotel-rating i.fas {
    color: #fbbf24;
}

.featured-hotel-rating i.far {
    color: #d1d5db;
}

.featured-hotel-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.featured-hotel-link:hover {
    color: #111827;
}

.featured-hotel-link i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

/* Featured Restaurants */
.featured-restaurants {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.featured-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.featured-restaurant-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-restaurant-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.featured-restaurant-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f3f4f6;
}

.featured-restaurant-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-restaurant-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.featured-restaurant-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.featured-restaurant-location i {
    color: #9ca3af;
    font-size: 0.85rem;
}

.featured-restaurant-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.featured-restaurant-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.featured-restaurant-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-restaurant-rating i {
    font-size: 1rem;
}

.featured-restaurant-rating i.fas {
    color: #fbbf24;
}

.featured-restaurant-rating i.far {
    color: #d1d5db;
}

.featured-restaurant-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.featured-restaurant-link:hover {
    color: #111827;
}

.featured-restaurant-link i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

/* Where to Visit Section */
.where-to-visit {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.visit-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #e0e0e0;
}

.visit-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visit-tab i {
    font-size: 1rem;
}

.visit-tab:hover {
    color: var(--primary-blue);
    background: rgba(10, 36, 99, 0.05);
}

.visit-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    font-weight: 600;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.visit-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.visit-card:hover .visit-card-link {
    color: #0a2463;
    gap: 0.75rem;
}

.visit-card:hover .visit-card-link i {
    transform: translateX(3px);
}

.visit-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.visit-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.visit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.visit-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.visit-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0a2463;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.visit-card-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.visit-card-category {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

.visit-card-carousel {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.visit-carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.visit-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.visit-carousel-image.active {
    opacity: 1;
}

.visit-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.visit-carousel-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.visit-carousel-btn.prev {
    left: 10px;
}

.visit-carousel-btn.next {
    right: 10px;
}

.visit-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.visit-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.visit-carousel-dots .dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Responsive for latest story */
@media (max-width: 968px) {
    .latest-story-card {
        grid-template-columns: 1fr;
    }

    .latest-story-image-wrapper {
        height: 300px;
        min-height: 300px;
    }

    .latest-story-content {
        padding: 2rem;
    }

    .latest-story-title {
        font-size: 1.5rem;
    }

    .latest-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .latest-story-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .latest-story-section {
        padding: 3rem 0;
    }

    .latest-story-image-wrapper {
        height: 250px;
        min-height: 250px;
    }

    .latest-story-content {
        padding: 1.5rem;
    }

    .latest-story-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .latest-story-title {
        font-size: 1.25rem;
    }

    .latest-story-excerpt {
        font-size: 1rem;
    }

    .latest-content-section {
        padding: 3rem 0;
    }

    .column-header {
        padding: 1.25rem 1.5rem;
    }

    .column-header h3 {
        font-size: 1.1rem;
    }

    .latest-news-list {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .news-item {
        padding-bottom: 1.25rem;
    }
}
