/* === Support Page === */

.support-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 5rem;
}

.support-intro {
    margin-bottom: 4rem;
}

.support-desc {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #b5b5b5;
    font-size: 16px;
    line-height: 1.7;
}

/* Support Numbers Grid */
.support-contacts-section {
    margin-bottom: 5rem;
}

.support-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 2rem;
}

.support-number-card {
    background: #242424;
    border: 1px solid #393939;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-number-card:hover {
    border-color: #b79573;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 149, 115, 0.15);
}

.support-number-card .phone-icon {
    font-size: 18px;
}

.support-number-card a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-number-card:hover a {
    color: #b79573;
}

/* Support Calls Info */
.support-calls-info {
    margin-bottom: 5rem;
}

.support-info-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 35px 40px;
    border-left: 4px solid #b79573;
}

.support-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.support-info-box p {
    color: #b5b5b5;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.support-notice {
    background: rgba(183, 149, 115, 0.1);
    border: 1px solid rgba(183, 149, 115, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
}

.support-notice strong {
    color: #e8c896;
    font-size: 15px;
}

/* How Can We Help - Services Grid */
.support-help-section {
    margin-bottom: 5rem;
}

.support-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 2rem;
}

.support-service-card {
    background: #2b2b2b;
    background: linear-gradient(148deg, rgba(43, 43, 43, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid #5e5e5e;
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.support-service-card:hover {
    border-color: #b79573;
    transform: translateY(-2px);
}

.support-service-card .service-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 149, 115, 0.1);
    border: 1px solid rgba(183, 149, 115, 0.3);
    border-radius: 10px;
}

.support-service-card span:last-child {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
}

/* Why Contact Section */
.support-why-section {
    margin-bottom: 5rem;
}

.support-why-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 35px 40px;
    margin-top: 2rem;
}

.support-why-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #b79573;
}

.support-help-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-help-list li {
    position: relative;
    padding: 10px 0 10px 35px;
    color: #ccc;
    font-size: 16px;
    border-bottom: 1px solid #2a2a2a;
}

.support-help-list li:last-child {
    border-bottom: none;
}

.support-help-list li::before {
    content: '→';
    position: absolute;
    left: 5px;
    top: 10px;
    color: #b79573;
    font-weight: 700;
    font-size: 16px;
}

/* We Help With - Modern Grid */
.support-helpwith-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2.5rem;
}

.helpwith-card {
    position: relative;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.helpwith-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #b79573, #e8c896);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.helpwith-card:hover {
    border-color: #b79573;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 149, 115, 0.1);
}

.helpwith-card:hover::before {
    opacity: 1;
}

.helpwith-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(183, 149, 115, 0.15), rgba(183, 149, 115, 0.05));
    border: 1px solid rgba(183, 149, 115, 0.25);
    border-radius: 12px;
    margin-bottom: 18px;
    color: #b79573;
    transition: all 0.3s ease;
}

.helpwith-card:hover .helpwith-icon {
    background: linear-gradient(135deg, rgba(183, 149, 115, 0.25), rgba(183, 149, 115, 0.1));
    border-color: #b79573;
    transform: scale(1.05);
}

.helpwith-content h4 {
    font-size: 17px;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 600;
}

.helpwith-content p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

.helpwith-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(183, 149, 115, 0.08);
    font-family: var(--heading-font);
    line-height: 1;
}

@media (max-width: 992px) {
    .support-helpwith-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .support-helpwith-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .helpwith-card {
        padding: 22px 20px;
    }
}

/* About Section */
.support-about-section {
    margin-bottom: 5rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.support-about-section .sub-title,
.support-about-section .section-title {
    margin-bottom: 1rem;
}

.support-about-section .support-desc {
    margin-bottom: 0;
}

/* FAQ Section */
.support-faq-section {
    margin-bottom: 3rem;
}

.support-faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-faq-item:hover {
    border-color: #555;
}

.support-faq-item.active {
    border-color: #b79573;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(183, 149, 115, 0.05);
}

.faq-question h3 {
    font-size: 17px;
    margin: 0;
    color: #e0e0e0;
    font-weight: 500;
}

.faq-toggle {
    font-size: 24px;
    color: #b79573;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #b79573;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.support-faq-item.active .faq-toggle {
    background: #b79573;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.support-faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .support-numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .support-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-page {
        padding: 0 15px 3rem;
    }
    
    .support-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .support-number-card {
        padding: 16px 12px;
    }
    
    .support-number-card a {
        font-size: 14px;
    }
    
    .support-services-grid {
        grid-template-columns: 1fr;
    }
    
    .support-info-box,
    .support-why-box,
    .support-about-section {
        padding: 25px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .support-numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .support-number-card {
        padding: 14px 10px;
        flex-direction: column;
        gap: 5px;
    }
}
