:root {
    --srv1-primary: #2a62fe;
    --srv1-primary-dark: #1a4bd6;
    --srv1-dark: #03063a;
    --srv1-text: #616a72;
    --srv1-light: #f9fbfd;
    --srv1-border: #e6e8ec;
    --srv1-white: #ffffff;
}

.srv1-reseller-root-wrapper {
    font-family: "Firago", system-ui, -apple-system, sans-serif;
    color: var(--srv1-dark);
}

/* Hero Section */
.srv1-reseller-hero {
    background: var(--srv1-dark);
    padding: 100px 0;
    color: var(--srv1-white);
    overflow: hidden;
}

.srv1-reseller-breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.srv1-reseller-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.srv1-reseller-breadcrumb .active { color: var(--srv1-white); }

.srv1-hero-badge {
    display: inline-block;
    background: rgba(42, 98, 254, 0.1);
    border: 1px solid var(--srv1-primary);
    color: var(--srv1-white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.srv1-hero-title { font-size: 3rem; font-weight: 800; margin-bottom: 25px; line-height: 1.2; }
.srv1-hero-lead { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 550px; }

/* SVG Anim */
.srv1-hero-svg-wrapper { position: relative; }
.srv1-svg-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 300px;
    background: var(--srv1-primary);
    filter: blur(150px);
    opacity: 0.2;
    transform: translate(-50%, -50%);
}

/* Sections */
.srv1-reseller-section { padding: 80px 0; }
.srv1-reseller-bg-light { background: var(--srv1-light); }
.srv1-reseller-bg-dark { background: var(--srv1-dark); }
.srv1-section-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }

/* Contact Items */
.srv1-contact-detail-item { display: flex; gap: 20px; margin-bottom: 40px; }
.srv1-contact-detail-item .icon-wrap {
    width: 50px; height: 50px;
    background: var(--srv1-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--srv1-primary);
}
.srv1-contact-detail-item h5 { margin-bottom: 5px; font-weight: 700; font-size: 15px; }
.srv1-contact-detail-item p { color: var(--srv1-text); margin: 0; }
.srv1-contact-detail-item a { color: var(--srv1-primary); text-decoration: none; font-weight: 600; }

/* Form */
.srv1-form-container {
    background: var(--srv1-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--srv1-border);
}
.form-control {
    border: 1px solid var(--srv1-border);
    padding: 12px;
    border-radius: 8px;
    margin-top: 5px;
}

/* Support Cards */
.srv1-support-card {
    background: var(--srv1-white);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid var(--srv1-border);
    transition: transform 0.3s;
}
.text-white {color:white !important;}
.text-white-50 {color:white !important;}
.srv1-support-card:hover { transform: translateY(-10px); }
.card-icon { color: var(--srv1-primary); margin-bottom: 20px; }
.srv1-support-card h4 { font-size: 1.2rem; font-weight: 700; }
.srv1-support-card p { font-size: 0.9rem; color: var(--srv1-text); }
.srv1-support-card a { font-weight: 700; text-decoration: none; color: var(--srv1-primary); }

/* FAQ */
.srv1-faq-grid { max-width: 800px; margin: 0 auto; }
.srv1-faq-item { border-bottom: 1px solid var(--srv1-border); }
.srv1-faq-question {
    width: 100%; padding: 20px 0;
    background: none; border: none;
    display: flex; justify-content: space-between;
    font-weight: 700; font-size: 1.1rem; text-align: left;
}
.srv1-faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; }
.srv1-faq-item.active .srv1-faq-answer { max-height: 200px; padding-bottom: 20px; }

/* Buttons */
.srv1-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.srv1-btn-primary { background: var(--srv1-primary); color: white; }
.srv1-btn-outline { border: 2px solid var(--srv1-primary); color: var(--srv1-primary); }
.srv1-btn-outline:hover { background: var(--srv1-primary); color: white; }

@media (max-width: 991px) {
    .srv1-hero-title { font-size: 2.2rem; }
}