.anti-social-icons {
    display: flex;
    gap: 0px;
    padding: 0;
    margin: 0px -5px;
    list-style: none;
}

.anti-social-icons .fa-stack {
    font-size: 1.6rem;
    width: 1.8em;
    height: 1.8em;
}

.anti-social-icons .fa-brands {
    color: #bfc3c7;
    z-index: 1;
}

.anti-social-icons .ban-icon {
    color: #ff6347;
    opacity: 0.5;
    transform: scale(1.5); /* 🔑 controlled size instead of fa-stack-2x */
}


/* =============================
   FULL-SCREEN CONTACT PANEL
============================= */
#contact-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* original style */
    z-index: 999998;
    overflow-y: auto;

    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(.23,1,.32,1);
}

/* OPEN STATE */
#contact-panel.open {
    transform: translateY(0);
}

/* INNER CONTENT */
#contact-panel-inner {
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* CLOSE BUTTON */
#contact-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #000;
    z-index: 2000;
}

#contact-close:hover {
    color: #ffaa17;
}

/* FORM */
#contact-panel label {
    margin-top: 12px;
    font-weight: 600;
}

#contact-panel input,
#contact-panel textarea,
#contact-panel select {
    margin-bottom: 10px;
    border-radius: 6px;
}

    /* =============================
   FULL-SCREEN GC PROJECT PANEL
============================= */
#gc-panel {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 999998;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(.23,1,.32,1);
}

#gc-panel.open {
    transform: translateY(0);
}

#gc-panel-inner {
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Close button */
#gc-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #000;
}

/* =============================
   FORM BASE
============================= */
#gc-panel form {
    display: block;
}

/* Visually hidden labels (accessibility) */
#gc-panel .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Inputs & textarea */
#gc-panel input,
#gc-panel textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 14px;
    padding-top:10px;
    padding-bottom:10px;
    font-size: 16px;
    font-family: Arial;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #111;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#gc-panel textarea {
    min-height: 120px;
    resize: vertical;
}

/* Placeholder */
#gc-panel ::placeholder {
    color: #9aa0a6;
    opacity: 1;
}

/* Focus */
#gc-panel input:focus,
#gc-panel textarea:focus {
    outline: none;
    border-color: #ffaa17;
    box-shadow: 0 0 0 2px rgba(255,170,23,0.15);
}

/* =============================
   GRID SYSTEM (ROWS + COLUMNS)
============================= */
#gc-panel .gc-form-row {
    display: flex;
    gap: 24px;
}

#gc-panel .gc-form-col {
    box-sizing: border-box;
}

/* 12-column widths */
#gc-panel .col-1  { flex: 0 0 8.333%; }
#gc-panel .col-2  { flex: 0 0 16.666%; }
#gc-panel .col-3  { flex: 0 0 25%; }
#gc-panel .col-4  { flex: 0 0 33.333%; }
#gc-panel .col-5  { flex: 0 0 41.666%; }
#gc-panel .col-6  { flex: 0 0 50%; }
#gc-panel .col-7  { flex: 0 0 58.333%; }
#gc-panel .col-8  { flex: 0 0 66.666%; }
#gc-panel .col-9  { flex: 0 0 75%; }
#gc-panel .col-10 { flex: 0 0 83.333%; }
#gc-panel .col-11 { flex: 0 0 91.666%; }
#gc-panel .col-12 { flex: 0 0 100%; }

/* Mobile */
@media (max-width: 600px) {
    #gc-panel .gc-form-row {
        flex-direction: column;
        gap: 0;
    }

    #gc-panel [class^="col-"] {
        flex: 0 0 100%;
    }

    #gc-panel-inner {
        padding: 24px 16px;
    }

    #gc-close {
        font-size: 36px;
        top: 10px;
        right: 12px;
    }
}

/* =============================
   FILE UPLOAD
============================= */
#gc-panel .gc-upload-wrapper {
    margin-top: 16px;
}

#gc-panel .gc-upload-label {
    font-weight: 600;
    margin-bottom: 8px;
}

#gc-panel .gc-upload-box {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

#gc-panel .gc-upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

#gc-panel .gc-upload-text {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
}

#gc-panel .gc-upload-text small {
    display: block;
    margin-top: 6px;
    color: #777;
}

#gc-panel .gc-upload-box:hover,
#gc-panel .gc-upload-box:focus-within {
    border-color: #ffaa17;
    background-color: #fffdf7;
    box-shadow: 0 0 0 3px rgba(255,170,23,0.2);
}

/* =============================
   SUBMIT BUTTON
============================= */
#gc-panel button[type="submit"] {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
}

/* =============================
   GC PANEL – FILE UPLOADED STATE
============================= */
#gc-panel .gc-upload-box.file-selected {
    border-style: solid;
    border-color: #ffaa17;
    background-color: #fff9ec;
}

#gc-panel .gc-upload-box.file-selected .gc-upload-text {
    color: #333;
    font-weight: 500;
}

#gc-panel button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

      /* DEMO PANEL */
#demo-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999998;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(.23,1,.32,1);
}

/* When opened */
#demo-panel.open {
    transform: translateY(0);
}

/* Inner content */
#demo-panel-inner {
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Close button */
#demo-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #000;
    z-index: 2000;
}

#demo-close:hover {
    color: #ffaa17;
}

#demo-panel label {
    margin-top: 12px;
    font-weight: 600;
}

#demo-panel input,
#demo-panel textarea {
    margin-bottom: 10px;
    border-radius: 6px;
}

        /* TESTIMONIAL PANEL */
#testimonial-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999998;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(.23,1,.32,1);
}

/* When opened */
#testimonial-panel.open {
    transform: translateY(0);
}

#testimonial-panel-inner {
    padding: 40px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

#testimonial-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #000;
    z-index: 2000;
}

#testimonial-close:hover {
    color: #ffaa17;
}

#testimonial-panel label {
    margin-top: 12px;
    font-weight: 600;
}

#testimonial-panel input,
#testimonial-panel textarea,
#testimonial-panel select {
    margin-bottom: 10px;
    border-radius: 6px;
}