/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f6f8fc;
    color: #222;
    line-height: 1.6;
}

/* ================= GLOBAL ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3 {
    font-weight: 600;
}

section {
    padding: 80px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, #28a745, #5fd28b);
    color: #fff;
}

.btn-secondary {
    background: #111;
    color: #fff;
}

.btn-outline {
    border: 2px solid #28a745;
    color: #28a745;
    background: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
                url("../images/support-hero.jpg") center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 46px;
}

.hero p {
    margin: 15px 0 30px;
    font-size: 18px;
}

/* ================= SUPPORT CATEGORIES ================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-icon i {
    font-size: 36px;
    color: #28a745;
}

/* ================= TECH SUPPORT FORM ================= */
.technical-support {
    background: #eef6ff;
}

.support-form-container {
    max-width: 900px;
    margin: auto;
}

.support-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* ================= RESOURCES ================= */
.support-resources {
    background: #fff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
}

.resource-card {
    background: #f9fafc;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
}

.resource-card:hover {
    transform: translateY(-6px);
}

.resource-icon i {
    font-size: 34px;
    color: #28a745;
}

.resource-link {
    color: #28a745;
    font-weight: 600;
}

/* ================= CONTACT SUPPORT ================= */
.contact-support {
    background: #111;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.contact-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.contact-icon i {
    font-size: 34px;
    color: #5fd28b;
}

/* ================= EMERGENCY ================= */
.emergency-support {
    background: linear-gradient(45deg,#ff4d4d,#ff7b7b);
    color: #fff;
    text-align: center;
}

.emergency-contact {
    display: grid;
    gap: 20px;
}

.emergency-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

.emergency-note {
    max-width: 700px;
    margin: auto;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .hero h1 {
        font-size: 32px;
    }
    section {
        padding: 60px 0;
    }
}
