/* Featured Circuits Header */
.featured-circuits-header {
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-bottom: 1rem;
}

.featured-circuits-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
    letter-spacing: -0.5px;
}

.featured-circuits-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Card Wrapper */
.featured-circuit-card-wrapper {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Card Container */
.featured-circuit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.featured-circuit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-circuit-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Section */
.featured-circuit-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.featured-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.3s ease;
}

.featured-circuit-card:hover .featured-circuit-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.featured-circuit-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #be7694 0%, #b71155 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
}

/* Content Section */
.featured-circuit-content {
    padding: 1rem;
}

.featured-circuit-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pricing Section */
.featured-circuit-pricing {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    text-align: center;
}

.featured-circuit-price-label {
    display: block;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.featured-circuit-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.featured-circuit-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0284c7;
}

.featured-circuit-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0284c7;
    line-height: 1;
}

.featured-circuit-price-note {
    display: block;
    font-size: 0.65rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Duration */
.featured-circuit-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.featured-circuit-duration i {
    color: #f59e0b;
}

/* Services Icons */
.featured-circuit-services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
}

.featured-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f0f9ff;
    border-radius: 50%;
    color: #0284c7;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.featured-service-icon:hover {
    background: #0284c7;
    color: #fff;
    transform: scale(1.1);
}

/* CTA Button */
.featured-circuit-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.featured-circuit-card:hover .featured-circuit-cta {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    transform: translateX(2px);
}

.featured-cta-text {
    flex: 1;
    text-align: center;
}

.featured-circuit-cta i {
    transition: transform 0.3s ease;
}

.featured-circuit-card:hover .featured-circuit-cta i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .featured-circuits-title {
        font-size: 1.5rem;
    }
    
    .featured-circuits-subtitle {
        font-size: 0.85rem;
    }
    
    .featured-circuit-image {
        height: 140px;
    }
    
    .featured-circuit-name {
        font-size: 0.9rem;
        min-height: 2.4rem;
    }
    
    .featured-circuit-amount {
        font-size: 1.3rem;
    }
}

        .seo-content-wrapper {
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
            border-radius: 16px;
            padding: 24px 16px;
            margin-bottom: 32px;
        }

        .seo-hero-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .seo-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
        }

        .seo-main-title {
            font-size: 26px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .seo-lead-text {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 24px;
            padding: 0 8px;
        }

        .seo-benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 20px;
        }

        .seo-benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 16px 8px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .seo-benefit-item i {
            font-size: 24px;
            color: #007bff;
        }

        .seo-benefit-item span {
            font-size: 12px;
            font-weight: 600;
            color: #333;
            text-align: center;
        }

        .seo-destinations-section {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .seo-destination-category {
            background: white;
            border-radius: 12px;
            padding: 20px 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .seo-category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .seo-category-header i {
            font-size: 24px;
            color: #007bff;
        }

        .seo-category-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .seo-category-description {
            font-size: 13px;
            color: #666;
            margin-bottom: 16px;
            padding-left: 36px;
        }

        .seo-destination-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .seo-destination-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 12px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .seo-destination-link:hover {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
            border-color: #007bff;
        }

        .seo-destination-link i:first-child {
            font-size: 18px;
            color: #007bff;
            transition: color 0.3s ease;
        }

        .seo-destination-link:hover i:first-child {
            color: white;
        }

        .seo-destination-link span {
            flex: 1;
        }

        .seo-destination-link i.fa-chevron-right {
            font-size: 12px;
            opacity: 0.6;
        }

        .seo-cta-footer {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            border-radius: 16px;
            padding: 24px 20px;
            margin-top: 40px;
            text-align: center;
            color: white;
            box-shadow: 0 8px 24px rgba(0, 123, 255, 0.3);
        }

        .seo-cta-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .seo-cta-text {
            font-size: 14px;
            opacity: 0.95;
            margin-bottom: 20px;
        }

        .seo-cta-badges {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .seo-trust-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 16px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .seo-trust-badge i {
            font-size: 20px;
        }

        .seo-trust-badge span {
            font-size: 13px;
            font-weight: 600;
        }