.support-main {
    padding-top: 2rem;
}

.section {
    padding: 4rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.section-title i {
    color: #06b6d4;
    font-size: 2.2rem;
}

.title-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

/* КАРТОЧКИ ПОДДЕРЖКИ */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #06b6d4;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
}

.support-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.support-info {
    color: #06b6d4;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

/* Кнопки в карточках */
.btn-call, .btn-email, .btn-chat, .btn-map {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-call {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.btn-email {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.btn-chat {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.btn-map {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-call:hover, .btn-email:hover, .btn-chat:hover, .btn-map:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ФОРМА ОБРАТНОЙ СВЯЗИ */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.contact-form h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form h3 i {
    color: #06b6d4;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #06b6d4;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-upload label {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.file-upload label:hover {
    background: rgba(124, 58, 237, 0.2);
}

.file-upload input {
    display: none;
}

#fileName {
    color: #94a3b8;
    font-size: 0.9rem;
}

.btn-submit {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* FAQ СТИЛИ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-category h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category h3 i {
    color: #06b6d4;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: #06b6d4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(10, 14, 35, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.limits-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.limits-table th,
.limits-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.limits-table th {
    background: rgba(124, 58, 237, 0.1);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.limits-table td {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.limits-table tr:last-child td {
    border-bottom: none;
}

/* СТАТУС СИСТЕМЫ */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.status-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.status-item.operational {
    border-left-color: #10b981;
}

.status-item.degraded {
    border-left-color: #f59e0b;
}

.status-item.disrupted {
    border-left-color: #ef4444;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.operational .status-indicator {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

.degraded .status-indicator {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.status-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.status-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-stats span {
    color: #cbd5e1;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-stats i {
    width: 16px;
    color: #06b6d4;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.incident-history {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.incident-history h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.incident-history h3 i {
    color: #06b6d4;
}

.incident-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.incident-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.2rem;
    border-left: 3px solid #f59e0b;
    transition: all 0.3s ease;
}

.incident-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.incident-date {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.incident-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.incident-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ЧАТ-БОТ */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.6);
}

.chatbot-toggle.active {
    transform: rotate(45deg);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: 90vw;
    background: rgba(10, 14, 35, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.chatbot.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.chatbot-title i {
    font-size: 1.3rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-window {
    height: 400px;
    padding: 1.5rem;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-window::-webkit-scrollbar {
    width: 6px;
}

.chat-window::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chat-window::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 3px;
}

.chat-message {
    display: flex;
    gap: 1rem;
    max-width: 85%;
    animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot .avatar {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white;
}

.user .avatar {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.message-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    color: white;
    line-height: 1.5;
    font-size: 0.95rem;
}

.bot .message-text {
    border-bottom-left-radius: 5px;
    background: rgba(124, 58, 237, 0.1);
}

.user .message-text {
    border-bottom-right-radius: 5px;
    background: rgba(6, 182, 212, 0.1);
}

.message-time {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 0 0.5rem;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-reply {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.chat-input {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-container input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-container input:focus {
    outline: none;
    border-color: #7c3aed;
    background: rgba(255, 255, 255, 0.08);
}

.input-container button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.chat-tips {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chat-tips span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.tip {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-1px);
}

/* МОДАЛЬНЫЕ ОКНА */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: rgba(10, 14, 35, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show {
    transform: scale(1);
    opacity: 1;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.modal-icon.success {
    color: #10b981;
}

.modal h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-modal {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* АНИМАЦИИ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Стили для статуса "hidden" */
.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

/* НОТИФИКАЦИИ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.success {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.notification.error {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.notification.warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.notification.info {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.notification button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.notification button:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ОШИБКИ В ФОРМЕ */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* ФУТЕР ТЕХПОДДЕРЖКИ */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-title i {
        font-size: 1.8rem;
    }

    .title-decoration {
        width: 80px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .file-upload {
        justify-content: space-between;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .chatbot {
        width: calc(100vw - 60px);
        right: 30px;
        left: 30px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }

    .support-card,
    .contact-form,
    .faq-category,
    .status-item,
    .incident-history {
        padding: 1.5rem;
    }

    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .chatbot {
        bottom: 80px;
        right: 20px;
        left: 20px;
        width: calc(100vw - 40px);
    }

    .modal {
        padding: 1.5rem;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .modal h3 {
        font-size: 1.5rem;
    }
}