/* ========================================
   SUPPORT PAGE STYLES
   Matching Lokacie.TV Design System
======================================== */

/* Design System Colors:
   Primary: #ff6b6b to #ee5a6f (red gradient)
   Text Primary: #1a1a2e
   Text Secondary: rgba(26, 26, 46, 0.75)
   Borders: rgba(0, 0, 0, 0.06 to 0.08)
   Font: Nunito
*/

/* Hero Section */
.support-hero {
    padding: 140px 20px 80px;
    text-align: center;
}

.support-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 107, 107, 0.85);
    font-weight: 600;
    background: rgba(255, 107, 107, 0.04);
    border: 1px solid rgba(255, 107, 107, 0.12);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.support-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 20px;
    color: #1a1a2e;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.support-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.1875rem);
    color: rgba(26, 26, 46, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* Response Time Cards */
.support-response {
    padding: 80px 20px;
}

.support-response-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.support-response-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-response-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.2);
}

.support-response-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50%;
    font-size: 28px;
    color: white;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.35);
}

.support-response-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a2e;
}

.support-response-card p {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.65);
    margin: 0 0 20px;
}

.support-response-time {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.time-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b6b;
}

.time-unit {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(26, 26, 46, 0.65);
}

/* Contact Section */
.support-contact {
    padding: 80px 20px;
    overflow: visible !important;
}

.support-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.support-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    overflow: visible;
}

.support-contact-info {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.support-contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 16px;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.support-info-header {
    margin-bottom: 32px;
}

.support-info-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 16px;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.support-info-header p {
    font-size: 1.0625rem;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.7;
    margin: 0;
}

.support-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.support-info-item {
    display: flex;
    gap: 18px;
    align-items: start;
    padding: 4px 0;
}

.support-info-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.1) 0%,
        rgba(255, 107, 107, 0.05) 100%
    );
    border-radius: 12px;
    font-size: 20px;
    color: #ff6b6b;
}

.support-info-item__content {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.support-info-item__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-info-item__value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.support-info-item__value:hover {
    color: #ee5a6f;
}

.support-info-item__text {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.6;
}

.support-info-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.02) 100%
    );
    margin: 24px 0;
}

.support-info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(16, 185, 129, 0.04) 100%
    );
    border-radius: 16px;
    border-left: 4px solid #10b981;
}

.support-info-badge i {
    font-size: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.support-info-badge span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
}

/* Contact Form */
.support-contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.support-contact-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
}

.support-contact-form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.support-contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.support-contact-form-header p {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.65);
    margin: 0;
}

.support-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

/* User Type Card Selector */
.user-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.user-type-card {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.user-type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.05) 0%,
        rgba(255, 107, 107, 0.01) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.user-type-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 107, 0.15);
}

.user-type-card:hover::before {
    opacity: 1;
}

.user-type-card--selected {
    border-color: #ff6b6b;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.12) 0%,
        rgba(255, 107, 107, 0.04) 100%
    );
    box-shadow:
        0 8px 20px rgba(255, 107, 107, 0.2),
        0 0 0 4px rgba(255, 107, 107, 0.12);
}

.user-type-card--selected::before {
    opacity: 1;
}

.user-type-card--selected .user-type-card__icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
    transform: scale(1.05);
}

.user-type-card--selected .user-type-card__icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.user-type-card--selected .user-type-card__label {
    color: #ff6b6b;
    font-weight: 700;
}

.user-type-card__icon {
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-type-card__icon i {
    font-size: 18px;
    color: #ff6b6b;
    transition: all 0.3s ease;
}

.user-type-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: #ff6b6b;
    transition: all 0.3s ease;
}

.user-type-card--selected .user-type-card__icon svg {
    stroke: #ffffff;
    transform: scale(1.1);
}

.user-type-card__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    font-size: 1rem;
    font-family: "Nunito", sans-serif;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a2e;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 26, 46, 0.4);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 0, 0, 0.12);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Custom Submit Button */
.support-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    color: white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.support-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.45);
}

.support-form-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.support-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.support-form-submit i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.support-form-submit:hover i {
    transform: translateX(4px);
}

/* Button Spinner */
.button-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-top: 8px;
}

.form-message--success {
    background: rgba(16, 185, 129, 0.05);
    color: #10b981;
    border-left: 4px solid #10b981;
}

.form-message--error {
    background: rgba(239, 68, 68, 0.05);
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

/* FAQ Quick Links */
.support-faq-quick {
    padding: 80px 20px;
}

.support-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-faq-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 12px;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.support-faq-header p {
    font-size: 1.125rem;
    color: rgba(26, 26, 46, 0.75);
    margin: 0;
}

.support-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.support-faq-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.2);
}

.support-faq-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 14px;
    font-size: 24px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.support-faq-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a2e;
}

.support-faq-card p {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.6;
    margin: 0 0 20px;
}

.support-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ff6b6b;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.support-faq-link:hover {
    gap: 12px;
    color: #ee5a6f;
}

.support-faq-link i {
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .support-hero {
        padding: 100px 20px 60px;
    }

    .support-response,
    .support-contact,
    .support-faq-quick {
        padding: 60px 20px;
    }

    .support-response-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-contact-info {
        position: static;
    }

    .support-contact-form-wrapper {
        padding: 36px 28px;
    }

    .support-contact-form-header {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .user-type-selector {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-info-card {
        padding: 28px 24px;
    }

    .support-info-item {
        gap: 16px;
    }

    .support-info-item__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .support-info-divider {
        margin: 20px 0;
    }

    .support-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-faq-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 90px 16px 50px;
    }

    .support-contact-form-wrapper {
        padding: 28px 20px;
    }

    .support-contact-form-header h3 {
        font-size: 1.375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9375rem;
    }

    .support-form-submit {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .support-info-card {
        padding: 24px 20px;
    }

    .support-info-item {
        gap: 14px;
    }

    .support-info-item__icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .support-info-divider {
        margin: 18px 0;
    }

    .support-info-badge {
        padding: 16px 18px;
        gap: 10px;
    }

    .support-info-badge i {
        font-size: 18px;
    }

    .support-faq-card {
        padding: 24px 20px;
    }
}
