/* support.css - Support/Contact Page Styles */

/* ==========================================================================
   Reset and Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111111;
    background: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Support Page Container
   ========================================================================== */
.support-page {
    position: relative;
    min-height: 100vh;
}

/* Background */
.support-page__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.support-page__gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.support-page__pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        #E91E63,
        #E91E63 10px,
        transparent 10px,
        transparent 20px
    );
}

/* Header */
.support-page__header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.support-page__header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-page__back {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.support-page__back:hover {
    background: #e8e8e8;
    transform: translateX(-5px);
}

.support-page__logo img {
    height: 40px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.support-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #f8f8f8 100%);
}

.support-hero__badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.support-hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.support-hero__title-line {
    display: block;
    color: #111111;
}

.support-hero__title-line--accent {
    color: #E91E63;
    font-size: 4rem;
}

.support-hero__subtitle {
    font-size: 1.3rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Quick Actions
   ========================================================================== */
.quick-actions {
    padding: 60px 0;
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-action {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #111111;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(233, 30, 99, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #E91E63;
}

.quick-action:hover::before {
    opacity: 1;
}

.quick-action__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.quick-action__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.quick-action__desc {
    color: #666666;
    font-size: 0.95rem;
}

.quick-action--urgent {
    background: #E91E63;
    color: white;
}

.quick-action--urgent .quick-action__desc {
    color: rgba(255, 255, 255, 0.9);
}

.quick-action--urgent:hover {
    background: #C2185B;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-form {
    padding: 80px 0;
}

.contact-form__wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form__title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #111111;
}

.contact-form__desc {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
}

/* Form Styles */
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111111;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form__textarea {
    resize: vertical;
    font-family: inherit;
}

.form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form__checkbox {
    width: 20px;
    height: 20px;
    accent-color: #E91E63;
}

.form__submit {
    background: #E91E63;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form__submit:hover {
    background: #C2185B;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.form__submit-loading {
    display: none;
}

.form__submit.loading .form__submit-text {
    display: none;
}

.form__submit.loading .form__submit-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

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

/* Success Message */
.form__success {
    display: none;
    text-align: center;
    padding: 40px;
    background: #4CAF50;
    border-radius: 20px;
    color: white;
}

.form__success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.form__success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.form__success-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Contact Info */
.contact-info__card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-info__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111111;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info__icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.contact-info__details {
   flex: 1;
}

.contact-info__label {
   display: block;
   font-size: 0.9rem;
   color: #666666;
   margin-bottom: 5px;
}

.contact-info__value {
   display: block;
   font-weight: 600;
   color: #111111;
   text-decoration: none;
   transition: color 0.3s ease;
}

.contact-info__value:hover {
   color: #E91E63;
}

/* Live Chat Button */
.live-chat {
   width: 100%;
   padding: 20px;
   background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
   color: white;
   border: none;
   border-radius: 15px;
   font-size: 1.1rem;
   font-weight: 700;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   transition: all 0.3s ease;
   position: relative;
   margin-bottom: 30px;
}

.live-chat:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
}

.live-chat__status {
   width: 10px;
   height: 10px;
   background: #4CAF50;
   border-radius: 50%;
   position: absolute;
   top: 15px;
   right: 15px;
   animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
   0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
   50% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

.live-chat__icon {
   font-size: 1.5rem;
}

/* Social Links */
.social-links {
   text-align: center;
}

.social-links__title {
   display: block;
   font-weight: 600;
   margin-bottom: 15px;
   color: #666666;
}

.social-links__list {
   display: flex;
   justify-content: center;
   gap: 15px;
}

.social-links__item {
   width: 45px;
   height: 45px;
   background: #f5f5f5;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

.social-links__item:hover {
   background: #E91E63;
   transform: translateY(-3px);
}

.social-links__item:hover svg {
   fill: white;
}

/* ==========================================================================
  FAQ Section
  ========================================================================== */
.faq {
   padding: 80px 0;
   background: white;
}

.faq__title {
   font-size: 2.5rem;
   font-weight: 900;
   text-align: center;
   margin-bottom: 50px;
   color: #111111;
}

.faq__grid {
   max-width: 800px;
   margin: 0 auto;
}

.faq__item {
   margin-bottom: 20px;
   background: #f8f8f8;
   border-radius: 15px;
   overflow: hidden;
   transition: all 0.3s ease;
}

.faq__item.active {
   background: white;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq__question {
   width: 100%;
   padding: 25px 30px;
   background: none;
   border: none;
   font-size: 1.1rem;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #111111;
}

.faq__icon {
   transition: transform 0.3s ease;
   flex-shrink: 0;
}

.faq__item.active .faq__icon {
   transform: rotate(180deg);
}

.faq__answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
   max-height: 300px;
}

.faq__answer p {
   padding: 0 30px 25px;
   color: #666666;
   line-height: 1.8;
}

/* ==========================================================================
  Emergency Banner
  ========================================================================== */
.emergency-banner {
   background: linear-gradient(135deg, #FF6B35 0%, #E91E63 100%);
   padding: 60px 0;
   color: white;
}

.emergency-banner__content {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 40px;
}

.emergency-banner__icon {
   font-size: 4rem;
   animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
   0%, 100% { transform: rotate(0deg); }
   25% { transform: rotate(-10deg); }
   75% { transform: rotate(10deg); }
}

.emergency-banner__text {
   flex: 1;
}

.emergency-banner__title {
   font-size: 2rem;
   font-weight: 900;
   margin-bottom: 10px;
}

.emergency-banner__desc {
   font-size: 1.1rem;
   opacity: 0.9;
}

.emergency-banner__cta {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 18px 40px;
   background: white;
   color: #E91E63;
   text-decoration: none;
   border-radius: 50px;
   font-weight: 700;
   font-size: 1.1rem;
   transition: all 0.3s ease;
}

.emergency-banner__cta:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
  Mobile Responsive
  ========================================================================== */
@media (max-width: 1024px) {
   .contact-form__wrapper {
       grid-template-columns: 1fr;
       gap: 40px;
   }
   
   .contact-info {
       max-width: 600px;
       margin: 0 auto;
   }
}

@media (max-width: 768px) {
   /* Header */
   .support-page__header .container {
       flex-direction: column;
       gap: 20px;
   }
   
   /* Hero */
   .support-hero {
       padding: 60px 0;
   }
   
   .support-hero__title {
       font-size: 2.5rem;
   }
   
   .support-hero__title-line--accent {
       font-size: 3rem;
   }
   
   .support-hero__subtitle {
       font-size: 1.1rem;
   }
   
   /* Quick Actions */
   .quick-actions__grid {
       grid-template-columns: 1fr;
       gap: 20px;
   }
   
   .quick-action {
       padding: 30px 20px;
   }
   
   /* Form */
   .form__row {
       grid-template-columns: 1fr;
   }
   
   .contact-form__title {
       font-size: 2rem;
   }
   
   /* Emergency Banner */
   .emergency-banner__content {
       flex-direction: column;
       text-align: center;
       gap: 30px;
   }
   
   .emergency-banner__title {
       font-size: 1.5rem;
   }
}

@media (max-width: 480px) {
   /* General padding adjustments */
   .support-hero,
   .quick-actions,
   .contact-form,
   .faq {
       padding: 40px 0;
   }
   
   /* Hero adjustments */
   .support-hero__title {
       font-size: 2rem;
   }
   
   .support-hero__title-line--accent {
       font-size: 2.5rem;
   }
   
   /* Back button */
   .support-page__back span {
       display: none;
   }
   
   /* Form adjustments */
   .form__input,
   .form__select,
   .form__textarea {
       padding: 12px 15px;
   }
   
   .form__submit {
       width: 100%;
       padding: 16px;
   }
   
   /* Contact info */
   .contact-info__card {
       padding: 30px 20px;
   }
   
   /* FAQ */
   .faq__question {
       padding: 20px;
       font-size: 1rem;
   }
   
   .faq__answer p {
       padding: 0 20px 20px;
   }
   
   /* Emergency banner */
   .emergency-banner {
       padding: 40px 0;
   }
   
   .emergency-banner__icon {
       font-size: 3rem;
   }
   
   .emergency-banner__cta {
       width: 100%;
       justify-content: center;
   }
}