/* More Tools Section Styles */
.more-tools-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Additional Tools Section */
.additional-tools-section {
    margin-bottom: 40px;
}

.additional-tools-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.additional-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-tools-grid .tool-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.additional-tools-grid .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.additional-tools-grid .tool-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.additional-tools-grid .tool-card:hover i {
    color: #764ba2;
    transform: scale(1.1);
}

.additional-tools-grid .tool-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.additional-tools-grid .tool-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.tool-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    position: absolute;
    top: 12px;
    right: 12px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.coming-soon-section {
    margin-bottom: 40px;
}

.coming-soon-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.coming-soon-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.coming-soon-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.coming-soon-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.upcoming-tools {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.upcoming-tools h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.upcoming-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.upcoming-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.upcoming-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feedback-section {
    margin-top: 30px;
    text-align: center;
}

.feedback-section h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feedback-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.feedback-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-buttons .btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feedback-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Quick Links Section */
.quick-links-section {
    margin-bottom: 40px;
}

.quick-links-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #667eea;
    text-decoration: none;
}

.quick-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #667eea;
}

.quick-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Tips Section */
.tips-section {
    margin-bottom: 40px;
}

.tips-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #667eea;
}

.tip-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 5px;
    min-width: 24px;
}

.tip-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.tip-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .more-tools-container {
        padding: 15px;
    }
    
    .additional-tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .additional-tools-grid .tool-card {
        padding: 20px 15px;
        min-height: 180px;
    }
    
    .additional-tools-grid .tool-card i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .additional-tools-grid .tool-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .additional-tools-grid .tool-card p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .tool-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }
    
    .additional-tools-grid .tool-card h3 {
        font-size: 1.2rem;
    }
    
    .tool-badge {
        position: static;
        display: block;
        margin-top: 10px;
    }
    
    .coming-soon-card {
        padding: 25px 20px;
    }
    
    .coming-soon-card h3 {
        font-size: 1.4rem;
    }
    
    .upcoming-list {
        grid-template-columns: 1fr;
    }
    
    .feedback-buttons {
        flex-direction: column;
    }
    
    .feedback-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .quick-link {
        padding: 15px 10px;
    }
    
    .quick-link i {
        font-size: 1.5rem;
    }
    
    .quick-link span {
        font-size: 0.8rem;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-item i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .additional-tools-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .additional-tools-grid .tool-card {
        margin: 0 10px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Coming Soon Tool Cards */
.coming-soon-tool {
    opacity: 0.95;
    position: relative;
}

.coming-soon-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    pointer-events: none;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Coming Soon Modal Styles */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.coming-soon-modal.show {
    opacity: 1;
    visibility: visible;
}

.coming-soon-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.coming-soon-modal.show .coming-soon-content {
    transform: translateY(0);
}

.coming-soon-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

.coming-soon-header i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.coming-soon-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.coming-soon-body {
    padding: 30px;
    text-align: center;
}

.coming-soon-body h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.coming-soon-body p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.coming-soon-info {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4a5568;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

.coming-soon-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.coming-soon-footer .btn {
    min-width: 120px;
    padding: 12px 24px;
    font-weight: 600;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .coming-soon-content {
        width: 95%;
        margin: 20px;
    }
    
    .coming-soon-header {
        padding: 20px 25px;
    }
    
    .coming-soon-header h3 {
        font-size: 1.3rem;
    }
    
    .coming-soon-body {
        padding: 25px 20px;
    }
    
    .coming-soon-body h4 {
        font-size: 1.2rem;
    }
    
    .coming-soon-footer {
        padding: 15px 20px;
    }
}