/* Container */
.feat-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.feat-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 20px;
}

.feat-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), #1976d2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feat-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
    border-color: var(--primary);
}

.feat-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feat-card:hover .feat-icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(5deg);
}

.feat-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.feat-card-desc {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Detailed Sections */
.feat-detail-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.feat-detail-section.reverse {
    flex-direction: row-reverse;
}

.feat-detail-content {
    flex: 1;
}

.feat-detail-visual {
    flex: 1;
    background: #f1f5f9;
    border-radius: 20px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feat-detail-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    z-index: 1;
}

.feat-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.feat-detail-visual:hover img {
    transform: scale(1.05);
}

.feat-detail-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.feat-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feat-detail-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feat-list {
    list-style: none;
    padding: 0;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 500;
}

.feat-list li i {
    color: #4caf50;
    font-size: 1.1rem;
}

/* CTA Section */
.feat-cta {
    text-align: center;
    padding: 80px 20px;
    background: var(--dark);
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.feat-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--primary), transparent 60%);
    opacity: 0.2;
}

.feat-cta-content {
    position: relative;
    z-index: 1;
}

.feat-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feat-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feat-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
}

.feat-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.5);
    background: white;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .feat-detail-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feat-detail-section.reverse {
        flex-direction: column;
    }

    .feat-detail-visual {
        height: 350px;
    }

    .feat-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .feat-title {
        font-size: 2.2rem;
    }

    .feat-detail-title {
        font-size: 1.8rem;
    }

    .feat-detail-visual {
        height: 300px;
    }

    .feat-cta-title {
        font-size: 2rem;
    }
}