/**
 * Support Page Styles
 *
 * Styles for the Instant Popup Builder Support page
 *
 * @package    Instant_Popup_Builder
 * @subpackage Instant_Popup_Builder/admin/css
 */

.ipb-support-wrap {
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.ipb-support-container {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px;
}

.ipb-support-header {
    text-align: center;
    margin-bottom: 50px;
}

.ipb-support-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.ipb-support-subtitle {
    font-size: 1.2em;
    color: #7f8c8d;
    margin: 0;
}

.ipb-support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ipb-support-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ipb-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ipb-rate-card {
    border: 3px solid #e74c3c;
}

.ipb-support-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.ipb-support-card h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.ipb-support-card p {
    color: #7f8c8d;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.ipb-support-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.ipb-support-features li {
    padding: 5px 0;
    color: #34495e;
    font-size: 0.95em;
}

.ipb-support-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ipb-btn-chat {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.ipb-btn-docs {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.ipb-btn-forum {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.ipb-btn-rate {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 1.1em;
}

.ipb-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ipb-support-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ipb-support-contact,
.ipb-support-hours {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.ipb-support-contact h3,
.ipb-support-hours h3 {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 1.3em;
}

.ipb-support-contact p,
.ipb-support-hours p {
    color: #34495e;
    margin: 8px 0;
    line-height: 1.5;
}

.ipb-support-contact a {
    color: #3498db;
    text-decoration: none;
}

.ipb-support-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ipb-support-title {
        font-size: 2em;
    }

    .ipb-support-options {
        grid-template-columns: 1fr;
    }

    .ipb-support-info {
        grid-template-columns: 1fr;
    }
}

