.stt-contact-wrapper {
    background: #f4f6f9;
    padding: 70px 0;
}

.stt-contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.stt-contact-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stt-contact-text {
    color: #777;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Contact Info */
.stt-contact-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stt-contact-icon {
    width: 48px;
    height: 48px;
    background: #f1f3f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stt-contact-icon i {
    color: #22c55e;
    font-size: 18px;
}

.stt-contact-box h6 {
    font-size: 14px;
    margin: 0;
    color: #555;
    font-weight: 600;
}

.stt-contact-box p {
    margin: 0;
    font-weight: 600;
}

/* Divider */
.stt-divider {
    height: 1px;
    background: #eee;
    margin: 18px 0;
}

/* Social */
.stt-social-icons i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 6px;
    font-size: 14px;
}

/* Individual Colors */
.stt-fb { background:#1877f2; }
.stt-x { background:#000; }
.stt-yt { background:#ff0000; }
.stt-ig { background:#e1306c; }
.stt-wa { background:#25d366; }

/* Form */
.stt-form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.stt-form-control:focus {
    outline: none;
    border-color: #4f6df5;
}

.stt-textarea {
    height: 140px;
    resize: none;
}

.stt-submit-btn {
    background: linear-gradient(45deg,#4f6df5,#6c7bff);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 10px;
}

.stt-submit-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width:768px){
    .stt-contact-card{
        padding: 25px;
    }
}

.stt-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.stt-float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    text-decoration: none;
}

/* WhatsApp */
.stt-whatsapp {
    background: #25D366;
}

/* Call */
.stt-call {
    background: #007bff;
}

.stt-float-btn:hover {
    transform: scale(1.1);
}

/* Mobile size */
@media(max-width:768px){
    .stt-float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
