.elementor-16531 .elementor-element.elementor-element-c9b7336{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16531 .elementor-element.elementor-element-635cb6d{--spacer-size:25px;}.elementor-16531 .elementor-element.elementor-element-f4a64d1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16531 .elementor-element.elementor-element-8372918{margin:-50px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-16531 .elementor-element.elementor-element-f4a64d1{--content-width:1240px;}}/* Start custom CSS for html, class: .elementor-element-8372918 */body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef2ff, #f8fbff);
}

/* HERO */
.hero {
    text-align: center;
    padding: 40px 15px 20px;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6ecff;
    color: #3b5bdb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: 30px;
    margin: 15px 0 10px;
    font-weight: 800;
    color: #111;
}

.hero p {
    max-width: 600px;
    margin: auto;
    color: #6b7280;
    font-size: 14px;
}

/* GRID */
.wrapper {
    max-width: 1100px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 15px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* PROFILE */
.profile {
    display: flex;
    gap: 15px;
    align-items: center;
}

.profile img {
    width: 60px;
    border-radius: 14px;
}

.sub-text {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* STATS */
.stats {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.stat {
    flex: 1;
    background: #f1f4fb;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

/* BUTTON */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.fb { background: #1877f2; }
.yt { background: #ff0000; }
.wa { background: #25D366; }

/* QUICK */
.quick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 14px;
    border-radius: 12px;
    margin-top: 10px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #edf2f7;
}

.quick:hover {
    background: #f1f5f9;
}

/* RIGHT */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.available {
    background: #2563eb;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.option:hover {
    transform: scale(1.02);
}

.green { background: linear-gradient(90deg, #22c55e, #16a34a); }
.blue { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }

.note {
    background: #f3f6fb;
    padding: 14px;
    border-radius: 12px;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* MOBILE */
@media(max-width:768px) {
    .wrapper {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 24px;
    }
}/* End custom CSS */