/* ============================================================
   MEHI SUPPORT PAGE - ULTIMATE PREMIUM v1.0
   Dual Tone | Split Layout | Progress Bars | Chat Simulation
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
.mehi-support-ultimate {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #faf9f6;
    position: relative;
}

.mehi-support-ultimate * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   SECTION 1: HERO - DUAL TONE SPLIT DESIGN
============================================================ */
.support-hero {
    width: 100%;
    padding: 80px 0 70px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.support-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.support-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

.support-hero-gradient-left {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.08), transparent);
    transform: rotate(-15deg);
}

.support-hero-gradient-right {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.08), transparent);
    transform: rotate(15deg);
}

/* Floating Support Icons */
.support-float-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.support-float-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.08;
    animation: supportIconFloat 20s ease-in-out infinite;
}

.support-float-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 38px;
}

.support-float-2 {
    top: 20%;
    right: 5%;
    animation-delay: 3s;
    font-size: 42px;
}

.support-float-3 {
    bottom: 30%;
    left: 3%;
    animation-delay: 6s;
    font-size: 36px;
}

.support-float-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 9s;
    font-size: 40px;
}

.support-float-5 {
    top: 45%;
    left: 2%;
    animation-delay: 12s;
    font-size: 34px;
}

.support-float-6 {
    top: 55%;
    right: 3%;
    animation-delay: 15s;
    font-size: 44px;
}

@keyframes supportIconFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(25px, -30px) rotate(10deg) scale(1.1); }
    66% { transform: translate(-20px, 20px) rotate(-8deg) scale(0.9); }
}

.support-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.support-hero-content {
    color: #ffffff;
}

.support-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.15);
    font-size: 13px;
    font-weight: 600;
    color: #fcd34d;
    margin-bottom: 28px;
}

.support-heart {
    font-size: 16px;
}

.support-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.support-hero-text-block {
    display: block;
}

.support-hero-highlight {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #94a3b8;
    max-width: 480px;
    margin-bottom: 32px;
}

.support-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.support-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-hero-btn.primary {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    color: #0a0a0a;
}

.support-hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

.support-hero-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.support-hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.support-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.support-hero-btn:hover .support-btn-arrow {
    transform: translateX(6px);
}

/* Live Status */
.support-live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.support-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: supportDotPulse 2s ease-in-out infinite;
}

@keyframes supportDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.support-status-text {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

/* Hero Visual - Chat Simulation */
.support-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.support-visual-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.support-visual-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.support-visual-dots {
    display: flex;
    gap: 6px;
}

.support-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.support-dot-red { background: #ef4444; }
.support-dot-yellow { background: #f59e0b; }
.support-dot-green { background: #22c55e; }

.support-visual-title {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.support-visual-body {
    padding: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-visual-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: supportMsgIn 0.5s ease forwards;
    opacity: 0;
}

.support-msg-in {
    animation-delay: 0.3s;
}

.support-msg-out {
    animation-delay: 0.8s;
    flex-direction: row-reverse;
}

@keyframes supportMsgIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.support-msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.support-msg-in .support-msg-avatar {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    color: #0a0a0a;
}

.support-msg-out .support-msg-avatar {
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.support-msg-bubble {
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
}

.support-msg-in .support-msg-bubble {
    border-bottom-left-radius: 4px;
    background: rgba(251, 191, 36, 0.15);
}

.support-msg-out .support-msg-bubble {
    border-bottom-right-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.support-msg-bubble span {
    display: block;
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.5;
}

.support-msg-time {
    font-size: 10px !important;
    color: #64748b !important;
    margin-top: 4px;
}

/* Typing Indicator */
.support-visual-typing {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    animation: supportTypingPulse 1.5s ease-in-out infinite;
}

.support-typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
    display: inline-block;
    animation: supportTypingDot 1.5s ease-in-out infinite;
}

.support-typing-dot:nth-child(2) { animation-delay: 0.3s; }
.support-typing-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes supportTypingDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes supportTypingPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.support-typing-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Visual Footer */
.support-visual-footer {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.support-visual-input {
    font-size: 14px;
    color: #64748b;
}

.support-visual-send {
    font-size: 18px;
    color: #fbbf24;
    cursor: default;
}

/* ============================================================
   SECTION 2: SUPPORT CHANNELS
============================================================ */
.support-channels {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.support-channels-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.support-channels-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.support-channels-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 191, 36, 0.08);
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-channels-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 12px;
}

.support-channels-highlight {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-channels-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-channel-card {
    padding: 30px 26px;
    background: #faf9f6;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-channel-card:hover::before {
    opacity: 1;
}

.support-channel-card:hover {
    transform: translateY(-8px);
    border-color: #fbbf24;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.08);
}

.support-channel-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 14px;
}

.support-channel-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.support-channel-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.support-channel-status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    margin-bottom: 14px;
}

.support-channel-link {
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-channel-link:hover {
    color: #fb923c;
    transform: translateX(4px);
}

/* ============================================================
   SECTION 3: SUPPORT STATS - WITH PROGRESS BARS
============================================================ */
.support-stats {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}

.support-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.support-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.support-stat-box {
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s ease;
}

.support-stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.support-stat-number {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.support-stat-label {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.support-stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.support-stat-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    transition: width 1.5s ease;
}

/* ============================================================
   SECTION 4: SUPPORT TICKETING
============================================================ */
.support-ticketing {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.support-ticketing-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.support-ticketing-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-ticketing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 191, 36, 0.08);
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-ticketing-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.support-ticketing-highlight {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-ticketing-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.support-ticket-step {
    flex: 1;
    padding: 30px 20px;
    background: #faf9f6;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
}

.support-ticket-step:hover {
    transform: translateY(-6px);
    border-color: #fbbf24;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.06);
}

.support-ticket-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
}

.support-ticket-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.support-ticket-content h3 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.support-ticket-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 10px;
}

.support-ticket-time {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.08);
    color: #f59e0b;
}

.support-ticket-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    flex-shrink: 0;
    min-width: 50px;
}

.support-ticket-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #fb923c);
    position: relative;
}

.support-ticket-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fb923c;
}

.support-ticket-arrow {
    font-size: 20px;
    color: #fb923c;
    animation: supportArrowPulse 1.5s ease-in-out infinite;
}

@keyframes supportArrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 1; }
}

/* ============================================================
   SECTION 5: SUPPORT FAQ
============================================================ */
.support-faq {
    width: 100%;
    padding: 80px 0 90px;
    background: #faf9f6;
}

.support-faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.support-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.support-faq-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 191, 36, 0.08);
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-faq-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.support-faq-highlight {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-faq-item.active {
    border-color: #fbbf24;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.06);
}

.support-faq-btn {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.3s ease;
}

.support-faq-btn:hover {
    background: rgba(251, 191, 36, 0.02);
}

.support-faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
}

.support-faq-item.active .support-faq-question {
    color: #f59e0b;
}

.support-faq-arrow {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.support-faq-item.active .support-faq-arrow {
    transform: rotate(180deg);
    color: #f59e0b;
}

.support-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-faq-item.active .support-faq-answer {
    max-height: 600px;
}

.support-faq-content {
    padding: 0 24px 24px 24px;
    color: #475569;
    line-height: 1.8;
}

.support-faq-content p {
    font-size: 15px;
    margin-bottom: 12px;
}

.support-faq-content p:last-child {
    margin-bottom: 0;
}

.support-faq-content strong {
    color: #0f172a;
}

.support-faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.support-faq-list li {
    font-size: 14px;
    color: #475569;
    padding: 4px 0;
}

/* ============================================================
   SECTION 6: CONTACT - DUAL PANEL
============================================================ */
.support-contact {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.support-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.support-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.support-contact-left {
    padding: 40px 0;
}

.support-contact-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 191, 36, 0.08);
    color: #f59e0b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-contact-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 12px;
}

.support-contact-highlight {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-contact-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.support-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.support-contact-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.support-contact-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.support-contact-item p {
    font-size: 14px;
    color: #64748b;
}

.support-contact-item a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-contact-item a:hover {
    color: #fb923c;
}

/* Contact Form */
.support-contact-right {
    background: #faf9f6;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.support-contact-form {
    width: 100%;
}

.support-form-group {
    margin-bottom: 20px;
}

.support-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.support-form-group input,
.support-form-group select,
.support-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    color: #0f172a;
}

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
    border-color: #fbbf24;
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.support-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.support-form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 60px;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.support-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}

.support-submit-icon {
    font-size: 18px;
}

/* ============================================================
   SECTION 7: CTA BANNER
============================================================ */
.support-cta {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06), transparent);
    pointer-events: none;
}

.support-cta::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    left: -150px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.04), transparent);
    pointer-events: none;
}

.support-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.support-cta-icon {
    font-size: 60px;
    margin-bottom: 18px;
    display: block;
}

.support-cta-content h2 {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.support-cta-content p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 34px;
    line-height: 1.7;
}

.support-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.support-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-cta-btn.primary {
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    color: #0a0a0a;
    box-shadow: 0 8px 35px rgba(251, 191, 36, 0.2);
}

.support-cta-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(251, 191, 36, 0.3);
}

.support-cta-arrow {
    transition: transform 0.3s ease;
}

.support-cta-btn.primary:hover .support-cta-arrow {
    transform: translateX(6px);
}

.support-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.support-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE - TABLET
============================================================ */
@media (max-width: 1024px) {
    .support-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .support-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .support-hero-actions {
        justify-content: center;
    }

    .support-hero-visual {
        justify-content: center;
    }

    .support-visual-card {
        max-width: 100%;
    }

    .support-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-ticketing-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .support-ticket-connector {
        flex-direction: row;
        padding: 4px 0;
        min-width: auto;
        min-height: 40px;
    }

    .support-ticket-line {
        width: 60px;
        height: 2px;
    }

    .support-ticket-arrow {
        transform: rotate(90deg);
    }

    .support-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-contact-left {
        padding: 0;
    }

    .support-contact-right {
        padding: 30px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE LARGE
============================================================ */
@media (max-width: 768px) {
    .support-hero {
        padding: 50px 0 40px;
    }

    .support-hero-title {
        font-size: 36px;
    }

    .support-hero-desc {
        font-size: 16px;
    }

    .support-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .support-hero-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .support-channels {
        padding: 60px 0 70px;
    }

    .support-channels-title {
        font-size: 32px;
    }

    .support-channels-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .support-stats {
        padding: 60px 0 70px;
    }

    .support-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .support-ticketing {
        padding: 60px 0 70px;
    }

    .support-ticketing-title {
        font-size: 32px;
    }

    .support-ticket-step {
        padding: 24px 20px;
    }

    .support-contact {
        padding: 60px 0 70px;
    }

    .support-contact-title {
        font-size: 32px;
    }

    .support-contact-right {
        padding: 24px 20px;
    }

    .support-faq {
        padding: 60px 0 70px;
    }

    .support-faq-title {
        font-size: 32px;
    }

    .support-faq-btn {
        padding: 16px 18px;
    }

    .support-faq-question {
        font-size: 15px;
    }

    .support-faq-content {
        padding: 0 18px 18px 18px;
    }

    .support-cta {
        padding: 50px 0;
    }

    .support-cta-content h2 {
        font-size: 28px;
    }

    .support-cta-content p {
        font-size: 15px;
        padding: 0 10px;
    }

    .support-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .support-cta-btn {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    .support-float-icon {
        display: none;
    }

    .support-visual-card {
        max-width: 100%;
    }

    .support-visual-body {
        min-height: 220px;
        padding: 14px;
    }

    .support-msg-bubble {
        max-width: 90%;
    }

    .support-status-text {
        font-size: 12px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE SMALL
============================================================ */
@media (max-width: 480px) {
    .support-hero-title {
        font-size: 28px;
    }

    .support-hero-desc {
        font-size: 14px;
    }

    .support-channels-title {
        font-size: 26px;
    }

    .support-ticketing-title {
        font-size: 26px;
    }

    .support-contact-title {
        font-size: 26px;
    }

    .support-faq-title {
        font-size: 26px;
    }

    .support-cta-content h2 {
        font-size: 24px;
    }

    .support-stat-number {
        font-size: 34px;
    }

    .support-channel-card {
        padding: 24px 18px;
    }

    .support-visual-card {
        border-radius: 16px;
    }

    .support-visual-header {
        padding: 12px 16px;
    }

    .support-visual-body {
        min-height: 180px;
        padding: 12px;
    }

    .support-msg-bubble span {
        font-size: 13px;
    }
}

/* ============================================================
   ANIMATIONS - FADE IN
============================================================ */
@keyframes supportFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-channel-card {
    animation: supportFadeUp 0.5s ease forwards;
    opacity: 0;
}

.support-channel-card:nth-child(1) { animation-delay: 0.05s; }
.support-channel-card:nth-child(2) { animation-delay: 0.10s; }
.support-channel-card:nth-child(3) { animation-delay: 0.15s; }
.support-channel-card:nth-child(4) { animation-delay: 0.20s; }
.support-channel-card:nth-child(5) { animation-delay: 0.25s; }
.support-channel-card:nth-child(6) { animation-delay: 0.30s; }

.support-stat-box {
    animation: supportFadeUp 0.5s ease forwards;
    opacity: 0;
}

.support-stat-box:nth-child(1) { animation-delay: 0.10s; }
.support-stat-box:nth-child(2) { animation-delay: 0.20s; }
.support-stat-box:nth-child(3) { animation-delay: 0.30s; }
.support-stat-box:nth-child(4) { animation-delay: 0.40s; }