/* ========== SS-CT HUB - FRESH CONTACT DESIGN ========== */
:root {
    --ss-ct-pri: #242120;
    --ss-ct-accent: #EB5D2A;
    --ss-ct-accent-2: #ff7b4a;
    --ss-ct-light: #FFF5F2;
    --ss-ct-white: #ffffff;
    --ss-ct-gray: #8A8A8A;
    --ss-ct-border: #E8E8E8;
    --ss-ct-shadow-card: 0 20px 60px rgba(36,33,32,0.08);
    --ss-ct-radius-1: 24px;
    --ss-ct-radius-2: 16px;
    --ss-ct-radius-3: 12px;
    --ss-ct-trans: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

/* Container */
.ss-ct-hub {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    background: var(--ss-ct-white);
    border-radius: var(--ss-ct-radius-1);
    overflow: hidden;
    box-shadow: var(--ss-ct-shadow-card);
    min-height: 500px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 10px;
}

/* Background Shapes */
.ss-ct-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.ss-ct-shape-1 {
    width: 350px; height: 350px;
    background: #ff7b4a;
    top: -100px; right: -100px;
}
.ss-ct-shape-2 {
    width: 250px; height: 250px;
    background: #ff7b4a;
    bottom: -80px; left: -80px;
}
.ss-ct-dots-pattern {
    position: absolute;
    width: 180px; height: 180px;
    background-image: #ff7b4a;
    background-size: 20px 20px;
    top: 60px; right: 60px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ========== LEFT VISUAL PANEL ========== */
.ss-ct-visual-panel {
    position: relative;
    background: var(--ss-ct-pri);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
     border-radius: 25px;
}
.ss-ct-visual-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 0;
   
}
.ss-ct-visual-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 420px;
}

.ss-ct-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}
.ss-ct-pulse-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: ssCtPulse 2s infinite;
}

.ss-ct-visual-heading {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
}
.ss-ct-highlight {
    color: var(--ss-ct-accent);
    background: rgba(255,255,255,0.15);
    padding: 0 8px;
    border-radius: 4px;
}

.ss-ct-visual-text {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Quick Pills */
.ss-ct-quick-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ss-ct-pill-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    padding: 14px 18px;
    border-radius: var(--ss-ct-radius-3);
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--ss-ct-trans);
}
.ss-ct-pill-item:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateX(6px);
}
.ss-ct-pill-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--ss-ct-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ss-ct-pill-info small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.ss-ct-pill-info strong {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== RIGHT ACTION PANEL ========== */
.ss-ct-action-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: var(--ss-ct-white);
}

/* Tab Bar */
.ss-ct-tab-bar {
    display: flex;
    border-bottom: 1px solid var(--ss-ct-border);
    padding: 0 30px;
    background: #fafafa;
}
.ss-ct-tab {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ss-ct-gray);
    cursor: pointer;
    transition: var(--ss-ct-trans);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}
.ss-ct-tab i { font-size: 0.9rem; }
.ss-ct-tab.active {
    color: var(--ss-ct-accent);
    border-bottom-color: var(--ss-ct-accent);
    background: #fff;
}
.ss-ct-tab:hover:not(.active) {
    color: var(--ss-ct-pri);
    background: rgba(0,0,0,0.02);
}

/* Tab Content */
.ss-ct-tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}
.ss-ct-tab-panel {
    display: none;
    animation: ssCtFadeIn 0.4s ease;
}
.ss-ct-tab-panel.active {
    display: block;
}

/* ========== FORM STYLES ========== */
.ss-ct-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.ss-ct-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.ss-ct-input-wrap > i {
    position: absolute;
    left: 16px;
    color: var(--ss-ct-gray);
    font-size: 0.9rem;
    z-index: 1;
    transition: var(--ss-ct-trans);
    pointer-events: none;
}
.ss-ct-input-wrap input,
.ss-ct-input-wrap select,
.ss-ct-input-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 42px;
    border: 2px solid var(--ss-ct-border);
    border-radius: var(--ss-ct-radius-3);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #fafbfc;
    transition: var(--ss-ct-trans);
    outline: none;
    color: var(--ss-ct-pri);
    resize: none;
}
.ss-ct-input-wrap select {
    appearance: none;
    cursor: pointer;
    color: var(--ss-ct-gray);
}
.ss-ct-input-wrap select option:not(:first-child) {
    color: var(--ss-ct-pri);
}
.ss-ct-textarea-wrap {
    margin-bottom: 16px;
}
.ss-ct-textarea-wrap i {
    top: 16px;
}
.ss-ct-textarea-wrap textarea {
    padding-top: 14px;
    min-height: 100px;
}
.ss-ct-input-wrap input:focus,
.ss-ct-input-wrap select:focus,
.ss-ct-input-wrap textarea:focus {
    border-color: var(--ss-ct-accent);
    background: #fff;
    box-shadow: 0 0 0 5px rgba(235,93,42,0.06);
}
.ss-ct-input-wrap input:focus + i,
.ss-ct-input-wrap textarea:focus + i,
.ss-ct-input-wrap:focus-within > i {
    color: var(--ss-ct-accent);
}
.ss-ct-input-wrap input::placeholder,
.ss-ct-input-wrap textarea::placeholder {
    color: #c0c5cc;
}

/* Captcha Row */
.ss-ct-captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.ss-ct-captcha-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ss-ct-light);
    border: 2px dashed var(--ss-ct-accent);
    padding: 10px 16px;
    border-radius: var(--ss-ct-radius-3);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ss-ct-pri);
    user-select: none;
    flex-shrink: 0;
}
.ss-ct-captcha-num { color: var(--ss-ct-accent); }
.ss-ct-captcha-op { color: var(--ss-ct-gray); }
.ss-ct-captcha-q {
    color: var(--ss-ct-accent);
    animation: ssCtPulse 1.5s infinite;
}
.ss-ct-captcha-input {
    flex: 1;
    min-width: 0;
}
.ss-ct-captcha-input input {
    padding-left: 40px !important;
    text-align: center;
    font-weight: 700;
    letter-spacing: 3px;
}
.ss-ct-captcha-reload {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid var(--ss-ct-border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ss-ct-trans);
    flex-shrink: 0;
    color: var(--ss-ct-pri);
}
.ss-ct-captcha-reload:hover {
    background: var(--ss-ct-accent);
    border-color: var(--ss-ct-accent);
    color: #fff;
    transform: rotate(180deg);
}

/* Submit Button */
.ss-ct-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--ss-ct-accent);
    color: #fff;
    border: none;
    border-radius: var(--ss-ct-radius-3);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--ss-ct-trans);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
}
.ss-ct-submit-btn:hover {
    background: #d45422;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(235,93,42,0.35);
}
.ss-ct-submit-btn:active {
    transform: scale(0.97);
}
.ss-ct-submit-btn i {
    transition: var(--ss-ct-trans);
}
.ss-ct-submit-btn:hover i {
    transform: translateX(4px);
}

/* ========== MAP STYLES ========== */
.ss-ct-map-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}
.ss-ct-map-card {
    flex: 1;
    border-radius: var(--ss-ct-radius-2);
    overflow: hidden;
    border: 1px solid var(--ss-ct-border);
    min-height: 300px;
}
.ss-ct-address-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--ss-ct-light);
    border-radius: var(--ss-ct-radius-3);
    margin-top: 14px;
    border: 1px solid rgba(235,93,42,0.1);
}
.ss-ct-address-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--ss-ct-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.ss-ct-address-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--ss-ct-pri);
    margin-bottom: 2px;
}
.ss-ct-address-text span {
    font-size: 0.8rem;
    color: var(--ss-ct-gray);
    line-height: 1.5;
}

/* ========== TOAST ========== */
.ss-ct-toast-new {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #fff;
    border-radius: var(--ss-ct-radius-2);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: var(--ss-ct-trans);
    border-left: 4px solid #10b981;
    min-width: 300px;
}
.ss-ct-toast-new.error {
    border-left-color: #e94560;
}
.ss-ct-toast-new.show {
    transform: translateY(0);
    opacity: 1;
}
.ss-ct-toast-icon {
    font-size: 1.6rem;
    color: #10b981;
    flex-shrink: 0;
}
.ss-ct-toast-new.error .ss-ct-toast-icon {
    color: #e94560;
}
.ss-ct-toast-body strong {
    display: block;
    font-size: 0.85rem;
    color: var(--ss-ct-pri);
}
.ss-ct-toast-body span {
    font-size: 0.8rem;
    color: var(--ss-ct-gray);
}
.ss-ct-toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--ss-ct-gray);
    padding: 0 4px;
    transition: var(--ss-ct-trans);
}
.ss-ct-toast-close:hover {
    color: var(--ss-ct-pri);
}

/* ========== ANIMATIONS ========== */
@keyframes ssCtFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ssCtPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .ss-ct-hub {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .ss-ct-visual-panel {
        padding: 40px 30px;
    }
    .ss-ct-action-panel {
        min-height: auto;
    }
    .ss-ct-tab-bar {
        padding: 0 20px;
    }
    .ss-ct-tab-content {
        padding: 20px;
    }
    .ss-ct-input-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ss-ct-captcha-row {
        flex-wrap: wrap;
    }
}
@media (max-width: 576px) {
    .ss-ct-visual-panel {
        padding: 30px 20px;
    }
    .ss-ct-tab-content {
        padding: 16px;
    }
    .ss-ct-toast-new {
        left: 16px; right: 16px; bottom: 16px;
        min-width: auto;

    }
      .ss-ct-hub {
   
    margin-top: 10px;
  }
}


.ss-ct-input-r{
    
    display: grid;
    grid-template-columns:  1fr;
    
    margin-bottom: 16px;
}






