/* Features Page Styles */
.features-main {
    margin-top: 80px;
}

.features-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://placeholder-image.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.features-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-header i {
    font-size: 2rem;
    color: #3498db;
}

.feature-header h3 {
    color: #2c3e50;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: '✓';
    color: #3498db;
    position: absolute;
    left: 0;
}

/* Premium Features */
.feature-card.premium {
    border: 2px solid #f1c40f;
}

.premium-tag {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #f1c40f;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.feature-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.feature-button:hover {
    background-color: #2980b9;
}

/* Customization Section */
.customization {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.customization-card {
    text-align: center;
    padding: 2rem;
}

.customization-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Support Features */
.support-features {
    padding: 4rem 1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.support-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Features CTA */
.features-cta {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.features-cta h2 {
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #fff;
}

/* Section Headers */
section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.current-features,
.optional-features {
    padding: 4rem 1rem;
}

.optional-features {
    background-color: #f9f9f9;
}

/* Plan Comparison Table */
.plan-comparison {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.plan-comparison h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #2c3e50;
    color: #fff;
    font-weight: bold;
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 10px;
}

.comparison-table th:last-child {
    border-top-right-radius: 10px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.comparison-table .fa-check {
    color: #27ae60;
}

.comparison-table .fa-times {
    color: #e74c3c;
}

.comparison-table tr:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-tag {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}
