/* Custom Styles for Features & Plans Section */

/* Enhanced Tab Styles */
.tm-tabs-links {
    justify-content: center;
    margin-bottom: 2rem;
    border: none;
}

.tm-tab-link-li {
    margin: 0 10px;
}

.tm-tab-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    text-decoration: none;
    color: #69c6ba;
    border: 2px solid #69c6ba;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 150px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tm-tab-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.tm-tab-link.active {
    background-color: #69c6ba;
    color: white;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.tm-tab-link i {
    margin-bottom: 10px;
    font-size: 2rem;
}

/* Enhanced Card Styles */
.feature-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-card .card-body {
    padding: 1.5rem;
}

.feature-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card .card-title i {
    color: #69c6ba;
}

.feature-card .card-text {
    color: #666;
    line-height: 1.6;
}

/* Premium Section Enhancements */
.premium-stats-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.premium-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.premium-stats-card .card-body {
    padding: 1.5rem;
}

.pricing-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: #69c6ba;
}

.pricing-card .card-body {
    padding: 1.5rem;
}

.pricing-card.popular {
    border-color: #c66995;
    position: relative;
}

.pricing-card.popular:before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #c66995;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Checkmark List */
.checkmark-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.checkmark-list li i {
    margin-right: 10px;
    margin-top: 4px;
}

/* Section Title Enhancements */
.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #69c6ba;
    border-radius: 3px;
}

/* About Page Enhancements */
.about-banner {
    background: linear-gradient(rgba(105, 198, 186, 0.8), rgba(105, 198, 186, 0.9)), url('../img/about-banner.jpg') center center no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.about-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.mission-section {
    background-color: #f8f9fa;
}

.how-it-works-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #69c6ba;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.media h5 {
    margin-bottom: 15px;
}

.media p {
    line-height: 1.6;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .tm-tab-link {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .tm-tab-link i {
        font-size: 1.5rem;
    }
    
    .pricing-card.popular:before {
        top: -10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .about-banner h1 {
        font-size: 2rem;
    }
    
    .about-banner p {
        font-size: 1rem;
    }
}
