/* ============================================================
   CONTACT SUPPORT PAGE - PREMIUM STYLES
   ============================================================ */

.sc-contact-hero {
    background: #f8f9fa;
    padding: 160px 20px 80px;
    text-align: center;
}

.sc-contact-hero .sc-subtitle {
    font-size: 16px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc-contact-hero h1 {
    font-size: 52px;
    color: #333333;
    font-weight: 700;
}

.sc-contact-hero h1 span {
    color: #007bff;
}

/* Grid Layout */
.sc-contact-content {
    padding: 60px 20px 100px;
}

.sc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
}

/* ============================================================
   LEFT COLUMN (Info, Cards, Buttons, Social)
   ============================================================ */
.sc-info-intro p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sc-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.sc-info-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eeeeee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.sc-info-card i {
    font-size: 28px;
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    height: max-content;
}

.sc-info-card h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 8px;
}

.sc-info-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.sc-highlight-card {
    background: #f8fbff;
    border-color: #cce5ff;
}

/* Direct Action Buttons */
.sc-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.sc-whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.sc-email-btn {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.sc-email-btn:hover {
    background: #007bff;
    color: white;
}

/* Support Areas List */
.sc-support-areas h3 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 20px;
}

.sc-support-areas ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sc-support-areas li {
    font-size: 16px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-support-areas li i {
    color: #10b981;
}

/* Social Media Connect Section */
.sc-social-connect {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.sc-social-connect h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

.sc-social-icons {
    display: flex;
    gap: 15px;
}

.sc-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #555555;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
}

.sc-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.sc-social-icon.sc-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.sc-social-icon.sc-instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.sc-social-icon.sc-telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.sc-social-icon.sc-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

/* ============================================================
   RIGHT COLUMN (Premium Form Box)
   ============================================================ */
.sc-form-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #eeeeee;
}

.sc-form-box h2 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 10px;
}

.sc-form-note {
    font-size: 15px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sc-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sc-input-group {
    margin-bottom: 20px;
    text-align: left;
}

.sc-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.sc-input-group input,
.sc-input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.sc-input-group input:focus,
.sc-input-group textarea:focus {
    outline: none;
    border-color: #007bff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.sc-submit-btn {
    width: 100%;
    background: #333333;
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.sc-submit-btn:hover {
    background: #007bff;
}

.sc-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================================
   TOAST NOTIFICATION (TOP-DROP FIX) 🔥
   ============================================================ */
.sc-toast {
    position: fixed;
    top: -100px;
    /* Hide completely off the top of the screen */
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    /* Success Green */
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    /* Highest priority to sit above headers/modals */
    width: max-content;
    max-width: 90%;
    text-align: center;
}

.sc-toast.sc-show {
    top: 40px;
    /* Drop down smoothly */
}

/* ============================================================
   RESPONSIVE (Mobile & Tablet)
   ============================================================ */
@media (max-width: 992px) {
    .sc-contact-grid {
        grid-template-columns: 1fr;
    }

    .sc-support-areas ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sc-contact-hero {
        padding: 120px 20px 60px;
    }

    .sc-contact-hero h1 {
        font-size: 40px;
    }

    .sc-form-box {
        padding: 30px 20px;
    }

    .sc-input-row {
        grid-template-columns: 1fr;
    }

    /* Toast Mobile Adjustment */
    .sc-toast {
        font-size: 14px;
        padding: 14px 20px;
        width: 90%;
        /* Prevent touching screen edges */
        justify-content: center;
    }

    .sc-toast.sc-show {
        top: 20px;
        /* Tighter spacing on mobile */
    }
}

/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */
body.sc-dark-theme .sc-contact-hero {
    background: #0f172a;
}

body.sc-dark-theme .sc-contact-hero h1 {
    color: #ffffff;
}

body.sc-dark-theme .sc-info-intro p,
body.sc-dark-theme .sc-support-areas li {
    color: #cbd5e1;
}

body.sc-dark-theme .sc-info-card,
body.sc-dark-theme .sc-form-box {
    background: #1e293b;
    border-color: #334155;
}

body.sc-dark-theme .sc-highlight-card {
    background: #0f172a;
    border-color: #007bff;
}

body.sc-dark-theme .sc-info-card h3,
body.sc-dark-theme .sc-support-areas h3,
body.sc-dark-theme .sc-form-box h2 {
    color: #ffffff;
}

body.sc-dark-theme .sc-form-note,
body.sc-dark-theme .sc-info-card p {
    color: #94a3b8;
}

body.sc-dark-theme .sc-input-group label {
    color: #cbd5e1;
}

body.sc-dark-theme .sc-input-group input,
body.sc-dark-theme .sc-input-group textarea {
    background: #0f172a;
    border-color: #334155;
    color: white;
}

body.sc-dark-theme .sc-social-connect {
    border-top-color: #334155;
}

body.sc-dark-theme .sc-social-connect h3 {
    color: #ffffff;
}

body.sc-dark-theme .sc-social-icon {
    background: #1e293b;
    color: #cbd5e1;
    border-color: #334155;
}

body.sc-dark-theme .sc-social-icon:hover {
    color: white;
}