/* ============================================
   LANOIRA CONTACT SUPPORT PAGE STYLES
   ============================================ */

/* Main Container */
.lanoira-support-page {
    background: linear-gradient(135deg, #f6e4e4 0%, #fdfbf7 100%);
    min-height: 80vh;
    padding: 60px 20px;
}

.lanoira-support-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

.support-hero {
    text-align: center;
    margin-bottom: 60px;
}

.support-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #2c2222;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.support-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.063rem, 1.9vw, 1.25rem);
    color: #3a2320;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.support-hero__note {
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: #4a0e0e;
    display: inline-flex;
    align-items: center;
    background: rgba(74, 14, 14, 0.08);
    padding: 12px 24px;
    border-radius: 50px;
}

.support-hero__note svg {
    flex-shrink: 0;
}

/* ============================================
   SECTION 2: QUICK LINKS
   ============================================ */

.support-quick-links {
    background: white;
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(44, 34, 34, 0.08);
    margin-bottom: 50px;
    border-left: 4px solid #4a0e0e;
}

.support-quick-links__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: #2c2222;
    margin: 0 0 25px 0;
}

.support-quick-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-quick-links__list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #3a2320;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.support-quick-links__list li:last-child {
    margin-bottom: 0;
}

.support-quick-links__list li svg {
    flex-shrink: 0;
    color: #4a0e0e;
    margin-top: 3px;
}

.support-quick-links__list a {
    color: #4a0e0e;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-quick-links__list a:hover {
    color: #3b1224;
}

/* ============================================
   SECTION 3: SUPPORT FORM
   ============================================ */

.support-form-section {
    background: white;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(44, 34, 34, 0.08);
    margin-bottom: 50px;
}

.support-form__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #2c2222;
    text-align: center;
    margin: 0 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(44, 34, 34, 0.1);
}

/* Form Styling */
.support-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2222;
    display: block;
    margin-bottom: 10px;
}

.form-group .required {
    color: #cc0000;
    font-weight: 700;
}

.form-group .optional {
    color: #3a2320;
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.875rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2c2222;
    background: #f6e4e4;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a0e0e;
    background: white;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232c2222' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input[type="file"] {
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: #2c2222;
    padding: 12px;
    background: #f6e4e4;
    border: 2px dashed rgba(74, 14, 14, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #4a0e0e;
    background: rgba(74, 14, 14, 0.05);
}

.form-group small {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #3a2320;
    opacity: 0.7;
    display: block;
    margin-top: 8px;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 18px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 1.063rem;
    font-weight: 600;
    color: #f6e4e4;
    background-color: #4a0e0e;
    border: 2px solid #4a0e0e;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 14, 14, 0.2);
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #3b1224;
    border-color: #3b1224;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 14, 14, 0.35);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
#support-messages {
    margin-top: 30px;
}

.support-message {
    padding: 20px 25px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.support-message svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.support-message.error {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    border-left: 4px solid #cc0000;
}

.support-message.success {
    background: rgba(74, 14, 14, 0.1);
    color: #4a0e0e;
    border-left: 4px solid #4a0e0e;
}

.support-message.loading {
    background: rgba(58, 35, 32, 0.1);
    color: #3a2320;
    border-left: 4px solid #3a2320;
}

/* ============================================
   SECTION 4: RESPONSE INFO
   ============================================ */

.support-response-info {
    margin-bottom: 50px;
}

.response-info-box {
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(44, 34, 34, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    border-left: 4px solid #4a0e0e;
}

.response-info-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(74, 14, 14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-info-icon svg {
    color: #4a0e0e;
}

.response-info-content {
    flex: 1;
}

.response-time {
    font-family: 'Inter', sans-serif;
    font-size: 1.063rem;
    color: #2c2222;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.response-time strong {
    font-weight: 700;
    color: #4a0e0e;
}

.support-hours {
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: #3a2320;
    margin: 0;
    opacity: 0.85;
}

/* ============================================
   SECTION 5: ALTERNATIVE CONTACT
   ============================================ */

.support-alternative {
    background: rgba(74, 14, 14, 0.05);
    padding: 30px 35px;
    border-radius: 10px;
    text-align: center;
}

.support-alternative__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2222;
    margin: 0 0 15px 0;
}

.support-alternative__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.063rem;
    color: #3a2320;
    margin: 0;
    line-height: 1.7;
}

.email-link {
    color: #4a0e0e;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.email-link:hover {
    border-bottom-color: #4a0e0e;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .support-quick-links,
    .support-form-section {
        padding: 35px 25px;
    }

    .response-info-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .response-info-icon {
        margin-bottom: 10px;
    }

    .support-quick-links__list li {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .support-hero__note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}